:root {
  /* font */
  --font14: .875rem;
  --font15: .9375rem;
  --font20: 1.25rem;
  --font25: 1.5625rem;
  --font28: 1.75rem;
}

/* header */
.header {
  width: 100%;
  height: 90px;
  position: fixed;
  top: 20px;
  left: 0;
  -webkit-transition: height 300ms, top 290ms, box-shadow 400ms;
  transition: height 300ms, top 290ms, box-shadow 400ms;
  z-index: 9999;
}

.header .inner {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding-left: 90px;
  padding-right: 90px;
  height: 100%;
}

.header .inner:before {
  content: '';
  display: block;
  position: absolute;
  left: 90px;
  right: 90px;
  bottom: 0;
  top: 0;
  background: #fff;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

/* sticky */
.header.sticky {
  height: 75px;
  top: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .12);
}

.header.sticky .inner:before {
  left: 0;
  right: 0;
}

.header .inner .hBox {
  position: relative;
  top: 0;
  left: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 45px;
}

.header .logo {
  display: block;
}

.header .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9992;
}

.header .menu a {
  display: flex;
  padding: 10px 20px;
}

.header .menu a:hover {
  color: var(--pointcolor);
  transition: .3s all ease;
}

.header .info {
  display: flex;
  align-items: center;
}

.header .info > b {
  position: relative;
  top: 0;
  left: 0;
  padding-left: 10px;
  margin-left: 10px;
  display: block;
}

.header .info > b:before {
  display: block;
  content: "";
  clear: both;
  width: 2px;
  height: 15px;
  background-color: var(--pointcolor);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.header .menu-btn {
  display: none;
}

.header .menu-btn {
  display: none;
  width: 25px;
  height: 10px;
  top: 0;
  bottom: auto;
  margin: auto 0 auto auto;
  right: 0;
  position: relative;
  z-index: 10000;
  cursor: pointer;
  -webkit-transition: top 300ms;
  transition: top 300ms;
}

.header .menu-btn span {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  right: 0;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background-color: #333;
  position: absolute;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .1s ease-in-out;
  transition: .1s ease-in-out;
}

.header .menu-btn .btn_line01 {
  top: 0;
}

.header .menu-btn .btn_line02 {
  top: 7px;
  display: none;
}

.header .menu-btn .btn_line03 {
  bottom: 0;
  width: 60%;
}

.header .menu-btn.on span {
  background-color: #333;
}

.header .menu-btn.on span:nth-child(1) {
  top: 9px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.header .menu-btn.on span:nth-child(2) {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  right: -60px;
}

.header .menu-btn.on span:nth-child(3) {
  width: 100%;
  top: 9px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.bg_bk {
  width: 100%;
  height: 100%;
  z-index: 9990;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
}

.bg_bk.open {
  display: block;
}


/* common */
.section .tit {
  line-height: 1.4;
}

.bg_gr {
  background-color: #f8f8f8;
}

.secTop {
  width: 100%;
  height: 400px;
  overflow: hidden;
  background-image: url(../img/secTop.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
  top: 0;
  left: 0;
}

.secTop .container {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.secTop .txt {
  padding-bottom: 3.125rem;
  line-height: 1.4;
}

.temp_tit {
  padding-top: 80px;
  text-align: center;
  font-size: var(--font28);
  font-weight: bold;
  color: #333333;

  &::after {
    content: "리스트에 없는 곡 제작 가능합니다. 전화 문의 주세요!";
  }
}

/* main - tab */
.tab-menu {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: stretch;
}

.tab-menu li {
  transition: .3s all ease;
  cursor: pointer;
  height: auto;
  padding: 1.25rem;
  width: 180px;
  background-color: var(--pointcolor);
  color: #fff;
  border-right: 1px solid #aa7954;
}

.tab-menu li > b {
  display: block;
  font-size: var(--font25);
  line-height: 1;
  position: relative;
  top: 0;
  left: 0;
  padding-right: 10px;
}

.tab-menu li > b:After {
  display: block;
  content: "";
  clear: both;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 3px solid #fff;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}

.tab-menu li > span {
  font-size: var(--font14);
}

.tab-menu li:last-child {
  border: none;
}

.tab-menu li.active, .tab-menu li:hover {
  background-color: #fff;
  color: var(--pointcolor);
}

.tab-menu li.active > b:After, .tab-menu li:hover > b:After {
  border-top-color: var(--pointcolor)
}

.tab-content .contentBox {
  display: none;
}

.tab-content .contentBox.active {
  display: block;
}


/* table */
.table_wrap .table_tit {
  padding-left: 45px;
  font-size: var(--font28);
  position: relative;
  top: 0;
  left: 0;
}

.table_wrap .table_tit .info_desc {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: var(--font14);
  font-weight: 600;
}

.table_wrap .table_tit::after {
  display: block;
  content: "";
  clear: both;
  width: 30px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: 30px auto;
  background-position: center;
  background-repeat: no-repeat;
}

.table_wrap.recommend .table_tit::after {
  background-image: url(../img/tit_recommend.png);
}

.table_wrap.newList .table_tit::after {
  background-image: url(../img/tit_newList.png);
}

.table_wrap.medley .table_tit::after {
  background-image: url(../img/tit_medley.png);
}

.table_wrap.campaign .table_tit::after {
  background-image: url(../img/tit_campaign.png);
}

.table_wrap .table_tit span {
  font-family: var(--pointfont), serif;
  font-weight: 500;
  color: #909090;
  font-size: var(--font14);
  padding-left: 10px;
  position: relative;
  top: 0;
  left: 0;
  margin-left: 10px;
}

.table_wrap .table_tit span:after {
  display: block;
  content: "";
  clear: both;
  width: 1px;
  background-color: #909090;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.table_wrap .table_content {
  font-size: var(--font15);
}


.table_wrap table {
  width: 100%;
  border-spacing: 0;
}

.table_wrap table th, .table_wrap table td {
  padding: 10px;
  text-align: center;
}

.table_wrap table th {
  font-weight: 600;
  background-color: #f8f8f8;
}

.table_wrap table.tb1 {
  border-top: 2px solid #262626;
}

.table_wrap table.tb1 th {
  border-top: 1px solid #dddddd;
  width: 200px
}

.table_wrap table {
  border-bottom: 1px solid #dddddd;
}

.table_wrap table.tb2 th {
  border-top: 2px solid #262626;
}

.table_wrap table.tb3 {
  border-bottom: 2px solid #262626;
}

.table_wrap table td {
  border-top: 1px solid #dddddd;
  background-color: #fff;
}

.table_wrap table td.tb_tit {
  text-align: left;
  padding-left: 30px;
}

.table_wrap table td .icon {
  width: 25px;
  height: 11px;
  display: inline-block;
  margin-left: 10px;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.table_wrap table td .icon.best {
  background-image: url(../img/icon_best.gif);
}

.table_wrap table td .icon.hit {
  background-image: url(../img/icon_hit.gif);
}

.table_wrap table td .icon.hot {
  background-image: url(../img/icon_hot.gif);
}

.table_wrap table td .icon.new {
  background-image: url(../img/icon_new.gif);
}

.table_wrap table td.tb_total b {
  color: var(--pointcolor);
}

.table_wrap table td.tb_all_total {
  color: #7c6352;
  font-weight: 900;
}

.main .table_wrap table.tb2 tr:hover td {
  background-color: #f8f8f8;
}

.table_wrap table .tb_total, .table_wrap table .tb_price1, .table_wrap table .tb_price2, .table_wrap table .tb_price3 {
  width: 110px;
}

.table_wrap table .tb_type {
  width: 150px;
}

.table_wrap table .tb_check {
  width: 80px;
}

.table_wrap table .tb_lyrics, .table_wrap table .tb_play {
  width: 60px;
}

.table_wrap table input[type="checkbox"] {
  accent-color: var(--pointcolor);
}

/* video_wrap */
.video_wrap .video {
  aspect-ratio: 16/9;
  width: 100%;
  background-color: #ddd;
}

.video_wrap .video iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.video_wrap .txt1 {
  font-size: var(--font20);
  margin-top: .9375rem;
}

.video_wrap table {
  border-spacing: 0;
  width: 100%;
  text-align: left;
  border-top: 1px solid #dddddd;
  margin-top: .9375rem;
  padding-top: .9375rem;
}

.video_wrap table th, .video_wrap table td {
  padding: 3px 10px 3px 0;
}

.video_wrap table th {
  width: 30%;
}

.video_wrap table td {
  width: 70%;
}

.video_wrap input[type="checkbox"] {
  accent-color: var(--pointcolor);
}

.video_wrap .plus_btn {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background-color: #cecece;
  color: #fff;
  margin-left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video_wrap .td_total > div {
  display: flex;
  align-items: center;
}

/* progress_wrap */
.progress_wrap .box {
  display: flex;
  align-items: center;
  padding: 3.125rem;
  border-right: 1px solid #dddddd;
}

.progress_wrap .box .img {
  width: 102px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress_wrap .box .txt {
  width: calc(100% - 102px);
  padding-right: .9375rem;
}

.progress_wrap .step {
  font-size: var(--font14);
  font-family: var(--pointfont), serif;
  font-weight: 600;
  color: var(--pointcolor);
}

.progress_wrap .txt1 {
  font-size: var(--font25);
}

.progress_wrap .txt2 {
  font-size: var(--font15);
  line-height: 1.3;
  color: #909090;
}


/* footer */
.footer {
  background-color: #4a4a4a;
  padding: 5.625rem 0;
}

.footer .flex {
  align-items: flex-end;
}

.footer .f_info {
  color: #909090;
  font-size: var(--font14);
  width: 1110px;
}

.footer .f_info .bar {
  margin: .9375rem 0;
  background-color: #909090;
  width: 100%;
  height: 1px;
}

.footer .f_info > b {
  color: #fff;
}

.footer .f_logo {
  padding-left: 5rem;
  width: calc(100% - 1110px);
}


/* modal */
#modal {
  display: none;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

#modal #modal-content {
  width: 600px;
  padding: 45px;
  background-color: #fff;
  border: 3px solid var(--pointcolor);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#modal .play audio {
  width: 100%;
}

#modal .lyrics_tit {
  font-size: var(--font25);
  font-weight: 600;
  color: var(--pointcolor);
}

#modal .lyrics_cont {
  padding: .9375rem 1.875rem;
  background-color: #f8f8f8;
  height: 430px;
  overflow-y: scroll;
}

.modal .closed_wrap {
  text-align: right;
}

.modal .closed {
  display: flex;
  align-items: center;
  color: var(--pointcolor);
  font-weight: 600;
  font-size: var(--font14);
  margin-left: auto;
  margin-right: 0;
}

.modal .closed img {
  margin-left: 10px;
}

.modal-button {
  display: block;
  margin: auto;
}


.side_right {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 9989;
  transition: .3s all ease;
  padding: 20px 30px 20px 20px;
  width: 220px;
  background-color: var(--pointcolor);
  color: #fff;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 7px auto;
  background-image: url(../img/side_arrow.png);
}

.side_right img {
  margin: 0;
}

.side_right span {
  margin-left: 15px;
  line-height: 1;
}

.side_right:hover {
  background-color: #7c6352;
}

.side_left {
  position: fixed;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  z-index: 9990;
}

.side_left > div {
  padding: 15px;
  width: 140px;
  background-color: #fff;
  box-shadow: 0 0 8px 3px rgba(0, 0, 0, .1);
  animation: ani 1s infinite alternate;
}

.side_left .bar {
  width: 18px;
  height: 1px;
  background-color: var(--pointcolor);
  margin: 10px 0;
}

.side_left b {
  line-height: 1.2;
}

.side_left > div.logo_box {
  margin-top: 20px;
}

.side_left > div.logo_box img:nth-child(-n+3) {
  margin-bottom: 10px;
}

.side_left .txt1 {
  color: var(--pointcolor);
}

.side_left .txt2, .side_left .txt2 a {
  color: #7c6352;
}

.side_left .box {
  background-color: #7c6352;
  color: #fff;
  padding: 10px;
  font-size: .8125rem;
  line-height: 1.5;
}

@keyframes ani {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(0, 10px);
  }
}

/* about */
.subTit {
  text-align: center;
}

.sub.about .countBox .box {
  padding: 0 4.0625rem;
  display: flex;
  align-items: center;
  font-size: var(--font20);
  position: relative;
  top: 0;
  left: 0;
}

.sub.about .countBox .box::after {
  display: block;
  content: "";
  clear: both;
  width: 1px;
  height: 50%;
  background-color: #909090;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.sub.about .countBox .box:last-child::after {
  display: none;
}

.sub.about .countBox .box .img {
  width: 28%
}

.sub.about .countBox .box .txt {
  width: 72%;
  padding-left: 3.125rem;
}

.sub.about .countBox .box .txt .count {
  font-family: var(--pointfont), serif;
  font-weight: 800;
  line-height: 1.3;
  font-size: 3.75rem;
  font-style: italic;
}

.sub.about .countBox .box:nth-child(1) {
  padding-left: 0;
}

.sub.about .countBox .box:nth-child(3) {
  padding-right: 0;
}

.sub.about .aboutBox .img {
  padding-right: 10%;
}

.sub.about .aboutBox .txt1 {
  font-size: var(--font28);
  color: #262626;
}

.sub.about .aboutBox .txt2 {
  font-size: var(--font15);
  color: #262626;
}

.sub.about .electionBox .txt {
  font-weight: 600;
}

.sub.about .electionBox .txt1 {
  font-size: var(--font20);
  font-family: var(--pointfont), serif;
  color: var(--pointcolor);
}

.sub.about .electionBox .txt2 {
  font-size: var(--font28);
  line-height: 1.4;
}

.colorBtnBox a {
  display: block;
  padding: 1.25rem 5rem 1.25rem 1.875rem;
  color: #fff;
  font-size: var(--font25);
  line-height: 1.4;
  background-repeat: no-repeat;
  background-size: 44px auto;
  background-position: center right 1.875rem;
  background-image: url(../img/btn_arrow.png);
}

.colorBtnBox a.btn1 {
  background-color: var(--pointcolor);
}

.colorBtnBox a.btn2 {
  background-color: var(--pointcolor2);
}

/* estimate */
.estimate .colorBtnBox {
  max-width: 650px;
  margin-right: auto;
  margin-left: auto;
}

.estimate .estimate_tit {
  font-size: var(--font28);
  font-weight: 600;
}

.estimate div.box {
  margin-top: 2.1875rem;
}

.estimate div.box:first-child {
  margin-top: 0;
}

.estimate .estimate_desc {
  font-size: var(--font14);
  color: #909090;
}

.estimate .estimate_desc li {
  margin-top: .3125rem;
}

.estimate .estimate_desc li:first-child {
  margin-top: 0;
}

.estimate.table_wrap table td.tb_tit {
  text-align: center;
  padding-left: 10px;
}

.estimate.table_wrap table .tab_name,
.estimate.table_wrap table .price {
  width: 150px;
}


.mblock {
  display: none;
}

@media (min-width: 990px) {
  .progress_wrap .box:nth-child(-n+3) {
    border-bottom: 1px solid #dddddd;
  }

  .progress_wrap .box:nth-child(3n) {
    border-right: 0;
  }
}

@media (min-width: 550px) and (max-width: 990px) {
  .progress_wrap .box:nth-child(-n+4) {
    border-bottom: 1px solid #dddddd;
  }

  .progress_wrap .box:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 1700px) {
  .side_left {
    display: none;
  }
}

@media (max-width: 1500px) {
  .header .inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header .inner:before {
    left: 20px;
    right: 20px;
  }

  .header .menu a {
    padding: 10px 15px;
  }

  .secTop .txt {
    padding-bottom: 5.625rem;
  }

  .tab-menu li {
    width: 150px;
  }

  .table_wrap table .tb_total, .table_wrap table .tb_price1, .table_wrap table .tb_price2, .table_wrap table .tb_price3 {
    width: 75px;
  }

  .table_wrap table .tb_lyrics, .table_wrap table .tb_play {
    width: 40px;
  }

  .table_wrap table .tb_type {
    width: 90px;
  }

  .table_wrap table .tb_check {
    width: 40px;
  }

  .table_wrap table td.tb_tit {
    padding-left: 20px;
  }

  .progress_wrap .box {
    padding: .9375rem 1.875rem;
  }

  .progress_wrap .box .img {
    width: 90px;
  }

  .progress_wrap .box .txt {
    width: calc(100% - 90px);
  }

  .footer .f_info {
    width: 80%;
  }

  .footer .f_logo {
    width: 20%;
  }

  .table_wrap table.tb1 th {
    width: 150px;
  }

}

@media (max-width: 1340px) {
  .sub.about .countBox .box .img {
    width: 20%;
  }

  .sub.about .countBox .box .txt {
    width: 80%;
  }

  .sub.about .countBox .box {
    padding: 0 2.8125rem;
  }

}

@media (max-width: 1024px) {
  .header .menu-btn {
    display: block;
  }

  .header .info {
    display: none;
  }

  .header .menu {
    position: fixed;
    top: 0;
    right: -320px;
    height: 100%;
    width: 320px;
    background: #fff;
    display: block;
    padding-top: 60px;
  }

  .header {
    height: auto;
    top: 0;
    -webkit-transition: background 300ms, box-shadow 400ms;
    transition: background 290ms, box-shadow 400ms;
  }

  .header.sticky {
    height: auto;
    background-color: #fff;
  }

  .header .inner .hBox {
    padding: 20px;
  }

  .header .inner {
    padding-left: 0;
    padding-right: 0;
  }

  .header .inner:before {
    display: none;
  }

  .tab-menu {
    position: relative;
    width: 100%;
  }

  .tab-menu li {
    width: 25%;
  }

  .table_wrap table .tb_total, .table_wrap table .tb_price1, .table_wrap table .tb_price2, .table_wrap table .tb_price3 {
    width: 65px;
  }

  .estimate.table_wrap table .tab_name,
  .estimate.table_wrap table .price {
    width: 100px;
  }

  .footer .f_info {
    width: 60%;
  }

  .footer .f_logo {
    width: 40%;
  }

}

@media (max-width: 990px) {
  :root {
    /* font */
    --font14: 1.0625rem;
    --font15: 1.125rem;
  }

  .font-40 {
    font-size: 2.3rem;
  }

  #modal .lyrics_cont {
    height: 350px;
  }

  #modal #modal-content {
    padding: 30px;
  }

  .footer .flex {
    flex-wrap: wrap;
  }

  .footer .f_info {
    width: 100%;
    order: 2;
  }

  .footer .f_logo {
    width: 100%;
    order: 1;
    padding-left: 0;
    text-align: left;
    margin-bottom: 30px;
  }

  .footer .f_logo img {
    margin: 0;
    width: 200px;
  }

  .sub.about .countBox .box {
    flex-wrap: wrap;
  }

  .sub.about .countBox .box .img {
    width: 50%;
    margin: auto;
    padding-bottom: 1.5rem;
  }

  .sub.about .countBox .box .txt {
    width: 100%;
    text-align: center;
    padding-left: 0;
  }

  .sub.about .countBox .box .txt .count {
    font-size: 3.125rem;
  }

  .table_wrap table .tb_check {
    width: 20px;
  }

  .table_wrap table.tb1 th {
    width: 90px;
  }
}


@media (max-width: 768px) {
  .header .logo {
    width: 160px;
  }

  /* .table_content{overflow-x: scroll;}
  .table_content table{min-width: 685px;}
  .table_content::-webkit-scrollbar{height: 6px;} */
  .table_wrap table .tb_type {
    width: auto;
  }

  .main .table_wrap table.tb2 th.th5, .main .table_wrap table.tb2 th.th6, .main .table_wrap table.tb2 th.th7, .main .table_wrap table.tb2 th.th8 {
    display: none;
  }

  .main .table_wrap table .tb_total, .main .table_wrap table .tb_price1, .table_wrap table .tb_price2, .table_wrap table .tb_price3 {
    display: none;
  }

  .progress_wrap .box .img {
    width: 50px;
  }

  .progress_wrap .box .txt {
    width: calc(100% - 50px);
  }

  .table_wrap .table_tit .info_desc {
    position: relative;
  }

  .table_wrap .table_tit::after {
    background-position: top 5px center;
  }

  .table_wrap table td .icon {
    margin-left: 5px
  }

  /* 견적서 모바일  */
  .table_wrap table.tb1 tbody, .table_wrap table.tb1 th, .table_wrap table.tb1 td, .table_wrap table.tb1 tr {
    display: block;
  }

  .table_wrap table.tb1 th {
    width: 40%;
  }

  .table_wrap table.tb1 td {
    width: 60%
  }

  .table_wrap table.tb1 tr {
    display: flex;
    flex-wrap: wrap;
  }


  .secTop {
    height: auto;
    background-image: none;
  }

  .secTop .container {
    position: relative;
    left: 0;
    transform: translateX(0);
    width: 100%;
  }

  .secTop .txt {
    width: 100%;
    line-height: 1.4;
    height: auto;
    background-image: url(../img/secTop.jpg);
    background-position: center;
    background-size: cover;
    padding: 150px 5% 50px 5%;
  }

  #modal #modal-content {
    width: 80%;
    padding: 15px;
  }

  #modal .closed img {
    width: 30px;
  }

  .side_right {
    padding: 15px 20px;
  }

  .footer {
    padding-bottom: 6.875rem;
  }

  .sub.about .aboutBox .img {
    padding-bottom: 3.125rem;
    padding-right: 0;
  }

  .colorBtnBox {
    margin-top: 3.125rem;
  }

  .estimate_desc {
    --y-gap: 5px;
  }
}

@media (max-width: 550px) {
  .font-40 {
    font-size: 2.1rem;
  }

  .tab-menu {
    flex-wrap: wrap;
  }

  .tab-menu li {
    width: 50%;
  }

  .progress_wrap .box:nth-child(-n+5) {
    border-bottom: 1px solid #dddddd;
  }

  .progress_wrap .box {
    border-right: 0;
    padding: 20px 0;
  }

  #modal #modal-content {
    width: 90%;
  }

  .mblock {
    display: inline-block;
  }


  body:not(:has(.side_right)) {
    .side_left {
      width: 100%;
    }
  }

  .side_right {
    width: 50%;
    background-image: none;
    align-items: center;
    justify-content: center;
    padding: 15px;
  }

  .side_right img {
    width: 28px;
  }

  .side_left {
    display: block;
    width: 50%;
    top: auto;
    bottom: 0;
    transform: translate(0, 0);
    left: 0;
  }

  .side_left > div {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    animation: none;
    box-shadow: none;
    width: auto;
    padding: 15px 10px;
    background: var(--pointcolor2);
    color: #fff;
  }

  .side_left > div.logo_box {
    display: none;
  }

  .side_left .txt1, .side_left .bar, .side_left .box {
    display: none;
  }

  .side_left .txt2, .side_left .txt2 a {
    color: #fff;
    letter-spacing: -1px;
  }

  .side_left .txt2 .mblock {
    font-size: var(--font14);
  }

  .side_left .txt2 br {
    display: none;
  }

  .footer {
    padding-bottom: 8.125rem;
  }

  .sub.about .countBox .box .img {
    width: 40%;
  }

  .sub.about .countBox .box {
    padding: 30px 0;
    border-bottom: 1px solid #909090;
  }

  .sub.about .countBox .box:last-child {
    border-bottom: 0;
  }

  .sub.about .countBox .box::after {
    display: none;
  }

  .estimate.table_wrap table .th1,
  .estimate.table_wrap table .tab_name {
    display: none;

    @media print {
      width: auto;
      display: revert;
    }
  }

  .estimate.table_wrap table .price {
    width: auto;
  }

  .temp_tit {
    padding-top: 55px;
    line-height: 1.4;

    &::after {
      content: "리스트에 없는 곡 제작 가능합니다.\A전화 문의 주세요!";
      white-space: pre-line;
    }
  }

}