@charset "utf-8";

/* ---------------------------------------------------------------
   2026-08-19 수정 (메디인사이드)
   [사유] SSL 적용 후 아래 두 폰트가 http 로 호출되어
          브라우저의 혼합콘텐츠(Mixed Content) 정책에 의해 차단됨
          → 콘솔 오류 발생 및 웹폰트 미적용 상태였음
   [조치] 1. 나눔고딕 : 개인 블로그 스킨 CDN(ts.daumcdn.net) 이며
             https 미지원 + 아래 body 폰트스택에서 sans-serif 뒤에 위치해
             실제로는 적용되지 않는 상태였으므로 제거
          2. 본고딕(Noto Sans KR) : 실제 사용 중이므로 https 로 변경
   [기존] @import url(http://ts.daumcdn.net/custom/blog/0/606/skin/images/nanumgothic.css);
          @import url(http://fonts.googleapis.com/earlyaccess/notosanskr.css);
   --------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/earlyaccess/notosanskr.css');
@import url('https://fonts.googleapis.com/css?family=Roboto');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* http://blog.naver.com/mvcweb */
/* CSS RESET */
* {
	margin: 0;
	padding: 0;
}

html,
body {
	width: 100%;
	height: 100%
}

html,
body,
div,
span,
object,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
em,
img,
ins,
q,
strong,
sub,
sup,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
a,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	-webkit-text-size-adjust: none;
	/*세로모드에서 가로모드로 전환할때 텍스트가 약간 커지는 현상 방지*/
}

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

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

blockquote,
q {
	quotes: none
}

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

a,
a:link,
a:hover,
a:active,
a[href^=tel] {text-decoration:inherit;color: inherit;}


em,
i,
address {
	font-style: normal;
	font-weight: normal
}

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

img,
fieldset {
	image-rendering: auto;
	image-rendering: -webkit-optimize-contrast;
	border: 0;
	vertical-align: middle;
}

legend {
	display: none
}

textarea {
	resize: none;
	outline: none;
}

textarea,
input {
	-webkit-border-radius: 1px;
	/*-webkit-appearance:none */
	/*form요소의 기본 스타일을 없앰*/
}
input,
textarea,
select,
button {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	vertical-align: middle;
}

label,
button,
input[type:"submit"],
input[type:"reset"] {
	cursor: pointer
}
button {
	overflow: visible;
	border: none;
	background-color: transparent;
	cursor: pointer;
	-webkit-appearance: none;
	text-decoration: none;
	outline: none;
}

iframe {
	border: 1px solid #ddd;
	box-sizing: border-box;
}

a:link {
	color: #fff;
	text-decoration: none
}

a:visited {
	color: #fff;
	text-decoration: none
}

a:hover {
	color: #fff;
	text-decoration: none
}

a:active {
	color: #fff;
	text-decoration: none
}

/* select{
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
} */
select::-ms-expand {
	border: none;
	background-color: inherit;
}

html {
	font-size: 10px;
}

body {
	overflow-y: scroll;
	color: #333;
	font-size: 1.6rem;
	/* 2026-08-19 수정 (메디인사이드)
	   [사유] 폰트스택에서 generic family(sans-serif)가 중간에 있어
	          그 뒤의 대체 폰트들이 무시되던 문제
	   [조치] 구체적 폰트 → generic family 순으로 정렬
	   [기존] font-family: 'Noto Sans KR', sans-serif, 'Nanum Gothic', 돋움, dotum, 굴림, gulim, Helvetica, AppleGothic; */
	font-family: 'Noto Sans KR', 'Malgun Gothic', '맑은 고딕', AppleGothic, Helvetica, sans-serif;
	line-height: 28px;
}
