@charset "utf-8";

@font-face {
    font-family: 'GmarketSansMedium';
    src: url('//cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
  font-family: 'GmarketSans';
  src: url('//cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff') format('woff');
  font-weight: 300;
  font-style: 300;
}
@font-face {
  font-family: 'GmarketSans';
  src: url('//cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
  font-weight: 500;
  font-style: 500;
}
@font-face {
  font-family: 'GmarketSans';
  src: url('//cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
  font-weight: 700;
  font-style: 700;
}


/** http://cssreset.com */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del,
dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt,
var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas,
details, embed, figure, figcaption, footer, header, hgroup, menu, nav,
output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline
}

/* css global variable */
:root{
  --font_color:#000;
  --border_color: #032E84; /*라인컬러*/
  --placeholder_color: #D0D0D0;
  --disabled_bg_color: #C6C6C6; 
  --point_color: #530B72; /* 기본 폰트컬러 */
  --point_color2: #FFD227; /* 글자 라인 컬러*/
  --input_height: 10.748vw;
  --input_height_pc: 6rem;
  --input_height_m: 14.019vw;
}

html {
  font-size: 10px;
  color: var(--font_color);
  overflow-y: scroll;  
  -webkit-overflow-scrolling: touch;
}

body, button {    
    font-family: 'GmarketSans', sans-serif;
}

body {
    -webkit-text-size-adjust: none;
    line-height: normal;
    letter-spacing: -1px;
}

input, textarea, option, select {
    font-family: 'GmarketSans', sans-serif;
    font-size: 1em;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    vertical-align: middle;
}

textarea {
  resize: none;
  width: 100%; border:1px solid var(--border_color); font-size: 1em; padding:1em; box-sizing: border-box; color: var(--font_color); -webkit-appearance: none; border-radius:0;
}

*{-webkit-font-smoothing: antialiased;}


article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

img {
  vertical-align: middle;
  -ms-interpolation-mode: bicubic !important;
}

ul, li, ol, li, dl, dd, dt {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  visibility: hidden;
  z-index: -1;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0;
}

legend, hr {
  visibility: hidden;
  position: absolute;
  left: -9999px;
  z-index: -1;
  width: 0;
  height: 0;
  font-size: 0;
}

/* Button */
button {
  overflow: visible;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  vertical-align: middle;
  cursor: pointer;
  font-size: 1em;
  line-height: 1;
  border-radius: 0;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input[type="text"], input[type="password"], input[type="tel"], input[type="email"], input[type="file"], input[type="number"] {
  -webkit-appearance: none;
  border-radius: 0.8rem;
  border:0.3rem solid var(--border_color);
  height: var(--input_height_pc);
  /* padding:0 1em; */
  box-sizing: border-box;
  color: var(--font_color);
}

input[type="number"], input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  border-radius: 0;
}

input[type="date"], input[type="date"]::-webkit-inner-spin-button, input[type="date"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="button"], input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: none;
  border-radius: 0;
}

select{
  -webkit-appearance: none;
  border-radius: 0.8rem; 
  border:0.3rem solid var(--border_color);
  height: var(--input_height_pc);  
  box-sizing: border-box;
  color: var(--font_color);
  background-color: #fff;
}

/* a tag */
a {
  color: inherit;
  text-decoration: none;
}

::placeholder {
  color: var(--placeholder_color);
  font-weight: 700;
  opacity: 1;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--placeholder_color);
  font-weight: 700;
}

a:focus, button:focus, select:focus, input:focus, input:focus+label, textarea:focus, label:focus {
  outline: none;
}

input[type="text"]:read-only, input[type="password"]:read-only, input[type="tel"]:read-only, input[type="email"]:read-only, input[type="file"]:read-only{border-color: var(--disabled_bg_color); background-color: var(--disabled_bg_color);}

#wrap{width: 100%; margin: 0 auto;}
.inner{max-width: 1364px; margin: 0 auto; box-sizing: border-box;}
.mobie_ver{display: none;}
.text_br{display: none;}
.m_br{display: none;}
header{border-bottom: 2px solid var(--point_color); background-color: #fff; z-index: 10;}
header > .inner{display: flex; justify-content: space-between; align-items: center; width: 100%; height: 8rem;}
header .util{width: 32rem;}
header .util.tel{text-align: right;}
header .util a{color: var(--point_color); font-size: 3rem; font-weight: 700; display: block;}
header .logo{}
header .logo a{/*pointer-events: none;*/ display: block;}
header .logo a img{width: 15.5rem;}
main{}
main > section{position: relative;}

main.main > section:after{background-color: #fff; position: absolute; left: 0; top: 0;}
main > section .comm-subtitle{font-size: 3rem; font-weight: 400; line-height: 3.6rem;}
main > section .comm-title{font-size: 5rem; font-weight: 700; line-height: 6rem; margin-top: 1rem; word-break: keep-all;}
main > section .comm-title span{position: relative; z-index: 0;}
main > section .comm-title span:before{content: ""; display: block; width: 100%; height: 2rem; background-color: var(--point_color2); position: absolute; left: 0; bottom: 0; z-index: -1;}
main > section .comm-description-wrap{display: flex; margin-top: 5rem;}
main > section .comm-description-wrap .text{width: 50%; box-sizing: border-box; padding-right: 10%;}
main > section .comm-description-wrap .text .comm-button{margin-top: 5rem;}
main > section .comm-description-wrap .image{width: 50%; box-sizing: border-box;}
main > section .comm-description-wrap .image img{max-width: 100%; border-radius: 0.8rem; box-shadow: 0 0.3rem 0.6rem rgba(0,0,0,0.16);}
main > section .comm-description{}
main > section .comm-description > ul{}
main > section .comm-description > ul > li{margin-top: 5rem;}
main > section .comm-description > ul > li:first-child{margin-top: 0;}
main > section .comm-description > ul > li > .title{font-size: 3rem; font-weight: 700; color: #484A4F; line-height: 3.6rem;}
main > section .comm-description > ul > li > .desc{font-size: 5rem; font-weight: 700; color: var(--point_color); line-height: 6rem; margin-top: 1rem; word-break: keep-all;}
main > section .comm-button{}
main > section .comm-button .title{font-size: 3rem; font-weight: 500; line-height: 3.6rem;}
main > section .comm-button > a{font-size: 2.5rem; font-weight: 700; text-align: center; color: #fff; background-color: #530B72; border-radius: 5rem; display: block; width: 100%; padding: 1.2rem 0; box-shadow: 0 0.3rem 0.6rem rgba(0,0,0,0.16); margin-top: 2rem;}
main > section .comm-title-2{font-size: 5rem; font-weight: 700; line-height: 6rem; word-break: keep-all;}
main > section .comm-title-2 span{color: var(--point_color);}
main > section .comm-desc{font-size: 3rem; line-height: 5rem; color: #3E3E3E; padding-top: 5rem; padding-bottom: 5rem; word-break: keep-all;}
main > section .comm-image{padding-top: 5rem; padding-bottom: 8rem;}
main > section .comm-image img{max-width: 100%; border-radius: 0.8rem; box-shadow: 0 0.3rem 0.6rem rgba(0,0,0,0.16);}
main > section.sec-subs .comm-button{padding-top:10rem;}
main > section.sec-subs .comm-button > a{width: 54rem; padding: 3.2rem 0; margin-left: auto; margin-right: auto; background-color: var(--point_color);}
main > section.sec-subs .subs-description{padding-bottom: 5rem;}
main > section.sec-subs .subs-description > ul{}
main > section.sec-subs .subs-description > ul > li{font-size: 3rem; line-height: 5rem; font-weight: 700; margin-top: 5rem;}
main > section.sec-subs .subs-description > ul > li:first-child{margin-top: 0;}
main > section.sec-subs .subs-description > ul > li span{color: var(--point_color);}
main .sec-checklist > .inner, main .sec-check-01 > .inner, main .sec-check-02 > .inner, main .sec-check-03 > .inner, main .sec-check-04 > .inner, main .sec-benefit > .inner, main .sec-photo > .inner, main .sec-subs > .inner, main .sec-form > .inner{padding: 10rem 0 15rem 0;}

main .sec-event{background-image: url(/resources/image/clinic/sungmun/new/bg_section_pattern.png); background-position: center;}
main.main .sec-event:before, main.main .sec-event:after{display: none;}
main .sec-event > .inner{height: 80rem;}
main .sec-event .event-wrap{display: flex; justify-content: center; align-items: center; height: 100%; position: relative;}
main .sec-event .event-wrap .left{width: 50%; text-align: center;}
main .sec-event .event-wrap .left .image{}
main .sec-event .event-wrap .left .image img{width: 9rem;}
main .sec-event .event-wrap .left .title{font-size: 6rem; color: #000000; margin-top: 4rem; word-break: keep-all;}
main .sec-event .event-wrap .left .title b{}
main .sec-event .event-wrap .left .title b span{color: var(--point_color2);}
main .sec-event .event-wrap .left .date{font-size: 3rem; color: #000000; font-weight: 500; margin-top: 2rem;}
main .sec-event .event-wrap .left .button{margin-top: 4.8rem;}
main .sec-event .event-wrap .left .button > a{font-size: 3.6rem; color: var(--point_color); font-weight: 700; background-color: #fff; display: block; width: 45rem; padding: 1.8rem 0; border-radius: 5rem; margin: 0 auto;}
/*
main .sec-event .event-wrap .right{width: 50%; height: 50rem; color:white; background-color: #000000; border-radius: 0.8rem; position: relative; background-image: url(/resources/image/clinic/sungmun/new/bg_top1.png); background-position: right bottom; background-repeat: no-repeat; background-size: 39.8rem;}
*/
main .sec-event .event-wrap .right{width: 50%; height: 50rem; color:white; background-color: #000000; border-radius: 0.8rem; position: relative; background-position: right bottom; background-repeat: no-repeat; background-size: 39.8rem;}
main .sec-event .event-wrap .right .upper-part {}
main .sec-event .event-wrap .right .lower-part {}
/*
main .sec-event .event-wrap .right .image{position: absolute; top: 2rem; right: 2rem;}
main .sec-event .event-wrap .right .image img{width: 14.7rem;}
*/
main .sec-event .event-wrap .right .text{display: flex; flex-direction: column; height: 100%; justify-content: center; align-items: flex-start; padding-left: 7.6rem; box-sizing: border-box;}
main .sec-event .event-wrap .right .title{font-size: 2rem; font-weight: 500;}
main .sec-event .event-wrap .right .name{font-size: 4rem; font-weight: 700;}
main .sec-event .event-wrap .right .stand{font-size: 2rem; font-weight: 500; color: #d6d6d6;}
main .sec-event .event-wrap .right .price{display: flex; align-items: baseline; position: relative; margin-top: 1rem;}
main .sec-event .event-wrap .right .price:before{content: ""; display: block; position: absolute; left: 0; bottom: 0; background-color: var(--point_color2); width: 100%; height: 1.3rem;}
main .sec-event .event-wrap .right .price .num{font-size: 10rem; font-weight: 700; line-height: 1em; position: relative;}
main .sec-event .event-wrap .right .price .unit{font-size: 5rem; font-weight: 400;position: relative;}
main .sec-event .event-wrap .right .desc{font-size: 2rem; color: #747474; margin-top: 2rem;}

/*
main .sec-event .event-wrap .right .image{position: absolute; top: 2rem; right: 2rem;}
main .sec-event .event-wrap .right .image img{width: 14.7rem;}
main .sec-event .event-wrap .right .text{display: flex; flex-direction: column; height: 100%; justify-content: center; align-items: flex-start; padding-left: 7.6rem; box-sizing: border-box;}
main .sec-event .event-wrap .right .title{font-size: 3rem; font-weight: 500;}
main .sec-event .event-wrap .right .name{font-size: 5rem; font-weight: 700;}
main .sec-event .event-wrap .right .stand{font-size: 3rem; font-weight: 500; color: #646464;}
main .sec-event .event-wrap .right .price{display: flex; align-items: baseline; position: relative; margin-top: 1rem;}
main .sec-event .event-wrap .right .price:before{content: ""; display: block; position: absolute; left: 0; bottom: 0; background-color: var(--point_color2); width: 100%; height: 2rem;}
main .sec-event .event-wrap .right .price .num{font-size: 15rem; font-weight: 700; line-height: 1em; position: relative;}
main .sec-event .event-wrap .right .price .unit{font-size: 5rem; font-weight: 400;position: relative;}
main .sec-event .event-wrap .right .desc{font-size: 2rem; color: #747474; margin-top: 2rem;}
*/

main .sec-checklist{}
main .sec-checklist .checklist-wrap{margin-top: 5rem;}
main .sec-checklist .checklist-wrap > ul{display: flex; margin-left: -1.6rem; margin-top: -1.6rem;}
main .sec-checklist .checklist-wrap > ul > li{width: 20%;}
main .sec-checklist .checklist-wrap > ul > li > div{margin-left: 1.6rem; margin-top: 1.6rem;}
main .sec-checklist .checklist-wrap > ul > li > div > a{display: flex; text-align: center; position: relative; border-radius: 0.8rem; overflow: hidden; height: 30rem; justify-content: center; align-items: center; background-repeat: no-repeat; background-position: center; background-size: cover;}
main .sec-checklist .checklist-wrap > ul > li:nth-child(1) > div > a{background-image: url(/resources/image/clinic/sungmun/new/bg_checklist_01.png);}
main .sec-checklist .checklist-wrap > ul > li:nth-child(2) > div > a{background-image: url(/resources/image/clinic/sungmun/new/bg_checklist_02.png);}
main .sec-checklist .checklist-wrap > ul > li:nth-child(3) > div > a{background-image: url(/resources/image/clinic/sungmun/new/bg_checklist_03.png);}
main .sec-checklist .checklist-wrap > ul > li:nth-child(4) > div > a{background-image: url(/resources/image/clinic/sungmun/new/bg_checklist_04.png);}
main .sec-checklist .checklist-wrap > ul > li:nth-child(5) > div > a{background-image: url(/resources/image/clinic/sungmun/new/bg_checklist_05.png);}
main .sec-checklist .checklist-wrap > ul > li > div > a:before{content: ""; display: block; width: 100%; height: 100%; position: absolute; left: 0; top: 0; background-color: rgba(190,148,229, 0.75); transition: all .3s ease-out;}
main .sec-checklist .checklist-wrap > ul > li > div > a:hover:before{background-color: rgba(224,194,239, 0.9);}
/*
main .sec-checklist .checklist-wrap > ul > li > div > a:hover:before{background-color: rgba(94,116,211, 0.9);}
*/
main .sec-checklist .checklist-wrap > ul > li > div > a > p{color: #fff; font-size: 5rem; line-height: 7.2rem; font-weight: 700; position: relative;}
main .sec-checklist .checklist-wrap > ul > li > div > a > p > span{display: block; font-size: 2rem; line-height: normal; font-weight: 500; margin-top: 2rem;}
main .sec-check-01, main .sec-check-03, main .sec-benefit{background-image: url(/resources/image/clinic/sungmun/new/bg_basic_4.png); background-repeat: no-repeat; background-position: center;}
main .sec-check-02, main .sec-check-04{background-color: #F9F3FC;}
main .sec-check-04 .comm-button > a{background-color: var(--point_color); color: #fff;}
main .sec-photo{background-image: url(/resources/image/clinic/sungmun/new/bg_photo.png); background-position: center; background-repeat: no-repeat;}
main .sec-photo .photo-wrap{}
main .sec-photo .photo-wrap > ul{display: flex; flex-wrap: wrap; margin-left: -1.6rem; margin-top: -1.6rem;}
main .sec-photo .photo-wrap > ul > li{width: 50%; display: flex; align-items: center;}
main .sec-photo .photo-wrap li.hidden{visibility: hidden;}
main .sec-photo .photo-wrap > ul > li > div{margin-left: 1.6rem; margin-top: 1.6rem; width: 100%;}
main .sec-photo .photo-wrap > ul > li > div .text{text-align: center;}
main .sec-photo .photo-wrap > ul > li > div .text .logo{}
main .sec-photo .photo-wrap > ul > li > div .text .logo img{width: 6rem;}
main .sec-photo .photo-wrap > ul > li > div .text .title{font-size: 5rem; line-height: 7rem; font-weight: 300;}
main .sec-photo .photo-wrap > ul > li > div .text .title b{font-weight: 700; color: var(--point_color);}
main .sec-photo .photo-wrap > ul > li > div .image{}
main .sec-photo .photo-wrap > ul > li > div .image img{max-width: 100%; width: 100%; border-radius: 0.8rem; overflow: hidden; box-shadow: 0 0.3rem 0.6rem rgba(0,0,0,0.16);}
main .sec-photo .photo-wrap .image > ul{display: flex; justify-content: space-between; margin-left: -1.6rem;}
main .sec-photo .photo-wrap .image > ul > li{width: 50%;}
main .sec-photo .photo-wrap .image > ul > li > div{margin-left: 1.6rem;}
main .sec-photo .photo-wrap .image-half{}
main .sec-photo .photo-wrap .image-half > ul{display: flex; flex-direction: column; margin-top: -2rem;}
main .sec-photo .photo-wrap .image-half > ul > li{}
main .sec-photo .photo-wrap .image-half > ul > li > div{margin-top: 2rem;}
main .sec-photo .photo-wrap .image-quart{}
main .sec-photo .photo-wrap .image-quart > ul{}
main .sec-photo .photo-wrap .image-quart > ul > li{}
main .sec-photo .photo-wrap .image-quart > ul > li > div{}
main .sec-subs{text-align: center;}
/* footer BG */
footer{padding-bottom: 8rem; background-color: rgb(224,194,239,0.2);}

footer > .inner{padding: 4rem 0 10rem 0; background-image: url(/resources/image/clinic/sungmun/new/ico_footer_logo.png); background-repeat: no-repeat; background-position: right bottom; background-size: 34.5rem;}
footer .footer-wrap{}
footer .footer-wrap > ul{}
footer .footer-wrap > ul > li{margin-top: 4rem;}
footer .footer-wrap > ul > li:first-child{margin-top: 0;}
footer .footer-wrap > ul > li > div{display: flex;}
footer .footer-wrap > ul > li .image img{width: 2.8rem;}
footer .footer-wrap > ul > li .text{font-size: 2rem; line-height: 2.8rem; color: #000000; font-weight: 500; margin-left: 2rem;}
footer .footer-wrap > ul > li .text span{font-size: 1.5rem; display: block;}
nav{background-color: var(--point_color); position: fixed; bottom: 0; left: 0; width: 100%; z-index: 10;}
nav > .inner{display: flex; justify-content: space-between; align-items: center; height: 8rem;}
nav .util{width: 32rem;}
nav .util.tel{}
nav .util.tel a{color: #FBEC23; font-size: 3rem; font-weight: 700; display: block;}
nav .util.button{}
nav .util.button button{color:#530B72; font-size: 3rem; font-weight: 700; height: 6rem; background-color: #FFD227; text-align: center; box-shadow: 0 0.3rem 0.6rem rgba(0,0,0,0.16); border-radius: 1.2rem; width: 100%;}
nav .util.button button img{width: 2.7rem; margin-left: 1rem; vertical-align: sub;}
nav .logo{}
nav .logo a{display: block;}
nav .logo a img{width: 15.5rem;}

/* 오늘 하루 보지 않음 팝업 START*/
.today_popup{/* visibility:hidden; */ display:none;}
.today_popup button{border:0; cursor:pointer;}
.today_popup .bg{width:100%; height:100%; position:fixed; background-color:rgba(0,0,0,0.6); top:0; left:0; z-index:14;}
.today_popup .cont{position:fixed; box-sizing:border-box; z-index:14; top:50%; left:50%; transform:translateX(-50%); margin-top:-300px; width:500px;}
.today_popup .cont .inner_box{position:relative; box-shadow:0 3px 6px rgba(0,0,0,0.16); background-color:#fff; border-radius:8px; overflow:hidden;}
.today_popup .cont .inner_box .util{display:flex; justify-content:flex-end; align-items:center; position:absolute; top:0; left:0; width:100%; z-index:1;}
.today_popup .cont .inner_box .util .btn_close{width:40px; height:40px; background-image:url(/resources/img/notice/ico_popup_close_x.png); background-repeat:no-repeat; background-position:center; background-color: transparent; display:none;}
.today_popup .cont .inner_box .detail{position:relative;}
.today_popup .cont .inner_box .detail .img{}
.today_popup .cont .inner_box .detail .img img{width:100%; display:block;}
/* .today_popup .cont .inner_box .detail .link{position:absolute; bottom:38px; left:30px;} */
.today_popup .cont .inner_box .detail .link{position:absolute; top:0; left:0; width:100%; height:100%;}
.today_popup .cont .inner_box .detail .link a{display:block; width:100%; height:100%;}
.today_popup .cont .inner_box .btn{display:flex; justify-content:space-between; align-items:center;}
.today_popup .cont .inner_box .btn button{font-size:16px; color:#3C3C3C; font-weight:500; text-align:center; background-color:#fff; width:50%; height:50px; border-left:1px solid #707070; box-sizing:border-box;}
.today_popup .cont .inner_box .btn button:first-child{border-left:0;}
/* 오늘 하루 보지 않음 팝업 END*/

@media all and (max-width: 1024px){
    .desktop_ver{display: none;}
    html{font-size: 8px;}
    main .inner, footer .inner, nav .inner{padding-left: 3rem !important; padding-right: 3rem !important;}
    header .inner{padding-left: 40% !important;}
    header > .inner{display: flex; justify-content: space-between; align-items: center; width: 100%; height: 8rem;}
    header .util{width: auto;}
    main .sec-event .event-wrap .right .text{padding-left: 4rem;}
    nav .util.tel a{width: 6.4rem; height: 6rem; border-radius: 1.4rem; background-color: var(--border_color); background-image: url(/resources/image/clinic/hanbeon/sample/ico_tel.png); background-repeat: no-repeat; background-position: center; background-size: 2.8rem; box-shadow: 0 0.3rem 0.6rem rgba(0,0,0,0.16);}
    nav .util.tel{width: auto;}
    nav .util.button{width: calc(100% - 10rem);}
}

@media all and (max-width: 768px){
    .pc_br{display: none;}
    .text_br{display: block;}
    main .sec-event > .inner{height: auto; padding-top: 10rem; padding-bottom: 15rem;}
    main .sec-event .event-wrap{flex-direction: column;}
    main .sec-event .event-wrap .left{width: 100%;}
    main .sec-event .event-wrap .right{margin-top: 5rem; width: 100%;}
    main .sec-checklist .checklist-wrap > ul{flex-wrap: wrap;}
    main .sec-checklist .checklist-wrap > ul > li{width: 50%;}
    main > section .comm-subtitle{text-align: center;}
    main > section .comm-title{text-align: center;}
    main > section .comm-description-wrap{flex-direction: column-reverse; text-align: center;}
    main > section .comm-description-wrap .text{padding-right: 0; width: 100%; margin-top: 5rem;}
    main > section .comm-description-wrap .image{width: 100%;}
    main .sec-photo .photo-wrap > ul > li{width: 100%;}
    main .sec-photo .photo-wrap > ul > li.hide{display: none;}
    main .sec-photo .photo-wrap > ul > li > div .text .title{margin-bottom: 3rem;}
    main .sec-photo .photo-wrap li.hidden{visibility: visible;}
    main > section.sec-subs .comm-button > a{width: 100%;}
}

@media all and (max-width: 640px){
	/* 오늘 하루 보지 않음 팝업 START*/
	.today_popup .cont{transform:translateX(-50%) translateY(-50%); margin-top:0; width:78.125vw;}
	.today_popup .cont .inner_box{box-shadow:0 0.469vw 0.938vw rgba(0,0,0,0.16); border-radius:1.250vw;}
	.today_popup .cont .inner_box .util .btn_close{width:6.250vw; height:6.250vw; background-size:2.813vw;}
	.today_popup .cont .inner_box .btn button{font-size:2.500vw; height:7.813vw;}
	/* 오늘 하루 보지 않음 팝업 END*/
}

@media all and (max-width: 428px){
    .mobie_ver{display: block;}
    .m_br{display: block;}   
    header .inner,main .inner, footer .inner, nav .inner{padding-left: 8.645vw !important; padding-right: 8.645vw !important;}
    header{position: fixed; top:0; left: 0; width: 100%;}
    header > .inner{height: 11.215vw; text-align: center;}
    header .util a{font-size: 4.673vw;}
    header .logo a img{width: 24.299vw;align-content: center;}
    main{padding-top: 11.215vw;}
    main.main > section:before, main.main > section:after{height: 7.009vw;}
    main.main > section:before{background-size: auto 1.869vw;}
    main > section .comm-subtitle{font-size: 4.673vw; line-height: 5.607vw; text-align: left; font-weight: 500;}
    main > section .comm-title{font-size: 9.346vw; line-height: 14.019vw; margin-top: 0; text-align: left;}
    main > section .comm-title span:before{height: 2.804vw;}
    main > section .comm-description-wrap{margin-top: 6.542vw;}
    main > section .comm-description-wrap .text{margin-top: 17.290vw;}
    main > section .comm-description-wrap .text .comm-button{margin-top: 12.617vw;}
    main > section .comm-description-wrap .image img{border-radius: 1.869vw; box-shadow: 0 0.701vw 1.402vw rgba(0,0,0,0.16);}
    main > section .comm-description > ul > li{margin-top: 12.150vw;}
    main > section .comm-description > ul > li:first-child{margin-top: 0;}
    main > section .comm-description > ul > li > .title{font-size: 4.673vw; line-height: 5.607vw;}
    main > section .comm-description > ul > li > .desc{font-size: 11.682vw; line-height: 14.019vw; margin-top: 1.869vw;}
    main > section .comm-button .title{font-size: 7.009vw; line-height: 8.411vw; text-align: center;}
    main > section .comm-button > a{font-size: 5.841vw; border-radius: 11.682vw; padding: 2.804vw 0; box-shadow: 0 0.701vw 1.402vw rgba(0,0,0,0.16); margin-top: 4.673vw; max-width: 71.028vw; margin-left: auto; margin-right: auto;}
    main > section .comm-title-2{font-size: 7.009vw; line-height: 8.178vw;}
    main > section .comm-desc{font-size: 4.673vw; line-height: 7.009vw; padding-top: 4.673vw; padding-bottom: 10.748vw; word-break: break-all;}
    main > section .comm-image{padding-top: 7.009vw; padding-bottom: 10.748vw;}
    main > section .comm-image img{border-radius: 1.869vw; box-shadow: 0 0.701vw 1.402vw rgba(0,0,0,0.16);}
    main > section.sec-subs .comm-button{padding-top: 7.009vw;}
    main > section.sec-subs .comm-button > a{width: 71.028vw; padding: 2.804vw 0;}
    main > section.sec-subs .subs-description{padding-bottom: 10.748vw;}
    main > section.sec-subs .subs-description > ul > li{font-size: 4.673vw; line-height: 7.009vw; margin-top: 9.346vw;}
	
	main .sec-checklist > .inner, main .sec-check-01 > .inner, main .sec-check-02 > .inner, main .sec-check-03 > .inner, main .sec-check-04 > .inner, main .sec-benefit > .inner, main .sec-photo > .inner, main .sec-subs > .inner{padding: 16.355vw 8.645vw;}
    main .sec-event .event-wrap{padding-bottom: 22.196vw;}
    
    main .sec-event .event-wrap .left .image img{width: 8.411vw;}
    main .sec-event .event-wrap .left .title{font-size: 7.009vw; line-height: 9.346vw; margin-top: 2.336vw;}
    main .sec-event .event-wrap .left .date{font-size: 4.673vw; margin-top: 3.505vw;}
    main .sec-event .event-wrap .left .button{margin-top: 0; position: absolute; bottom: 0; left: 0; width: 100%;}
    main .sec-event .event-wrap .left .button > a{font-size: 5.841vw; max-width: 71.028vw; padding: 2.804vw 0; border-radius: 14.019vw;}
    main .sec-event .event-wrap .right{height: 99.533vw; border-radius: 1.869vw; background-size: auto 48.131vw; margin-top: 5.607vw;}    
    main .sec-event .event-wrap .right .image{top: 4.673vw; right: 4.673vw;}
    main .sec-event .event-wrap .right .image img{width: 18.458vw;}
    main .sec-event .event-wrap .right .text{padding-left: 7.009vw; justify-content: flex-start; padding-top: 8.748vw;}
    main .sec-event .event-wrap .right .title{font-size: 3.673vw;}
    main .sec-event .event-wrap .right .name{font-size: 6.009vw; margin-top: -0.701vw;}
    main .sec-event .event-wrap .right .stand{font-size: 2.505vw; color: #d6d6d6;}
    main .sec-event .event-wrap .right .price{margin-top: 0;}
    main .sec-event .event-wrap .right .price:before{height: 3.738vw;}
    main .sec-event .event-wrap .right .price .num{font-size: 20.364vw;}
    main .sec-event .event-wrap .right .price .unit{font-size: 7.009vw;}
    main .sec-event .event-wrap .right .desc{font-size: 2.505vw; margin-top: 1.869vw;}
    main .sec-checklist{}
    main .sec-checklist .checklist-wrap{margin-top: 8.879vw;}
    main .sec-checklist .checklist-wrap > ul{display: flex; margin-left: -2.336vw; margin-top: -2.336vw;}    
    main .sec-checklist .checklist-wrap > ul > li > div{margin-left: 2.336vw; margin-top: 2.336vw;}
    main .sec-checklist .checklist-wrap > ul > li > div > a{border-radius: 1.869vw; height: 46.729vw;}  
    main .sec-checklist .checklist-wrap > ul > li > div > a > p{font-size: 7.009vw; line-height: 9.346vw;}
    main .sec-checklist .checklist-wrap > ul > li > div > a > p > span{font-size: 4.673vw; margin-top: 4.673vw;}  
    main .sec-check-01, main .sec-check-03, main .sec-benefit{background-image: url(/resources/image/clinic/sungmun/new/bg_basic_2_mobile.png); background-repeat-y: repeat; background-position: top center; background-size: 134.813vw;}
    main .sec-photo{background-size: 350.467vw; background-position: top left -21.028vw;}
    main .sec-photo .photo-wrap > ul{margin-left: -2.336vw; margin-top: -4.673vw;}
    main .sec-photo .photo-wrap > ul > li > div{margin-left: 2.336vw; margin-top: 4.673vw;}
    main .sec-photo .photo-wrap > ul > li > div .text .logo img{width: 14.019vw;}
    main .sec-photo .photo-wrap > ul > li > div .text .title{font-size: 7.009vw; line-height: 9.346vw; margin-top: 4.673vw; margin-bottom: 1.869vw;}
    main .sec-photo .photo-wrap > ul > li > div .image img{border-radius: 1.869vw; box-shadow: 0 0.701vw 1.402vw rgba(0,0,0,0.16);}
    main .sec-photo .photo-wrap .image > ul{margin-left: -2.336vw;}
    main .sec-photo .photo-wrap .image > ul > li > div{margin-left: 2.336vw;}
    main .sec-photo .photo-wrap .image-half > ul{margin-top: -2.336vw;}
    main .sec-photo .photo-wrap .image-half > ul > li > div{margin-top: 2.336vw;}
    main .sec-subs{text-align: left;}
    footer{padding-bottom: 0;}
    footer:before{height: 7.009vw; background-size: auto 1.869vw;}
    footer > .inner{padding: 9.346vw 8.645vw 39.720vw 8.645vw; background-position: center right -9.346vw; background-size: 52.804vw;}
    footer .footer-wrap > ul > li{margin-top: 9.346vw;}
    footer .footer-wrap > ul > li .image img{width: 6.542vw;}
    footer .footer-wrap > ul > li .text{font-size: 4.673vw; line-height: 6.542vw; margin-left: 2.804vw;}
    footer .footer-wrap > ul > li .text span{font-size: 3.505vw;}
    nav{background-color: var(--point_color); position: fixed; bottom: 0; left: 0; width: 100%; z-index: 10;height: 18.019vw; }
    /*
    nav > .inner{padding-left: 4.673vw !important; padding-right: 4.673vw !important; height: auto;}
    nav .util.tel a{width: 14.486vw; height: 14.019vw; background-size: 6.542vw;}
    */
    nav .util.button{width: auto;}
    nav .util.button button{font-size: 7.009vw; width: 80vw; height: 14.019vw; box-shadow: 0 0.701vw 1.402vw rgba(0,0,0,0.16); border-radius: 2.804vw;}
    /*
    nav .util.button button img{width: 6.308vw; margin-left: 2.336vw;}
    */
}
	/*frm input */
	main .sec-form{background-image: url(/resources/image/clinic/sungmun/new/bg_basic_4.png); background-repeat: no-repeat; background-position: center;}
	main .sec-form > .inner{height: 80rem;}
	main .sec-form .container {
	    max-width: 600px;
	    margin: 0 auto;
	    background-color: #fff;
	    padding: 20px;
	    border-radius: 8px;
	    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	    font-size: 2rem;
  	}
	main .sec-form h1 {
    	text-align: center;
    	color: #333;
    	font-size: 30px;
  	}
  	main .sec-form .form-group {
    	margin-bottom: 15px;
  	}
  	main .sec-form .form-group label {
    	display: block;
    	margin-bottom: 5px;
  	}
  	main .sec-form .form-group input[type="text"],
  	main .sec-form .form-group input[type="tel"],  	
  	main .sec-form .form-group textarea {
    	width: 100%;
	    padding: 10px;
	    border: 1px solid #ddd;
	    border-radius: 4px;
  	}
  	main .sec-form .form-group textarea {
    	height: 100px;
    	resize: vertical;
  	}
  	/* 체크박스 스타일 */
	main .sec-form .form-group input[type="checkbox"] {
	    display: inline-block; /* 인라인 블록 요소로 변경 */
	    width: auto; /* 너비를 자동으로 설정 */
	    margin-right: 10px; /* 라벨과의 여백 설정 */
	    vertical-align: middle; /* 수직 정렬 */
	}
	/* 라벨 및 링크 스타일 */
	main .sec-form .form-group label, .form-group a {
	    display: inline; /* 인라인 요소로 변경 */
	    margin: 0; /* 여백 제거 */
	    vertical-align: middle; /* 수직 정렬 */
	}
	main .sec-form .form-group .terms {
	    /*text-align: left;*/ /* 왼쪽 정렬 */
	    /*white-space: nowrap;*/ /* 내용이 줄바뀌지 않도록 설정 */
	    display: flex; /* flexbox를 활성화 */
  		justify-content: center; /* 수평 가운데 정렬 */
  		align-items: center; /* 수직 가운데 정렬 */
  		text-align: center; /* 텍스트를 가운데 정렬 */
	}
  	main .sec-form .button {
    	width: 100%;    	
    	height: 6rem; 
    	font-size:3rem;
    	font-weight:700;
    	padding: 10px;
    	background-color: #530B72;
    	border: none;
    	border-radius: 4px;
    	color: white;
    	cursor: pointer;
  	}
  	main .sec-form .button:hover {
    	background-color: #FFD227;
    	color: #530B72;
  	}
  	
  /* 레이어 팝업 스타일 */
  .layer-popup {
    display: none; /* 기본적으로 팝업은 숨겨져 있음 */
    position: fixed; /* 화면에 고정 */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 반투명 배경 */
    justify-content: center;
    align-items: center;
    z-index: 10;
  }

  .popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    max-width: 90%; /* 모바일 화면을 위한 최대 너비 설정 */
    max-height: 90%; /* 모바일 화면을 위한 최대 높이 설정 */
    overflow-y: auto; /* 내용이 많을 경우 스크롤 */
    font-size: 1.5rem;
  }

  @media (min-width: 768px) {
    .popup-content {
      max-width: 600px; /* 태블릿 및 데스크탑을 위한 너비 */
      max-height: 80%; /* 태블릿 및 데스크탑을 위한 높이 */
    }
  }

  .close-btn {
    display: block;
    text-align: right;
    margin-bottom: 10px;
  }