/* 
  250717
  작성자: 장한원
  용도: 컬러 변수, 자주 쓰일 스타일 등을 정의함
*/
@charset "utf-8";

:root {
    --color-black: #343434;
    --color-bg: #F7F0E6;
    --color-beige100: #E8E0D4;
    --color-darkgray: #363535;
}

@font-face {
    font-family: "lineSeed-rg";
    src: url('./fonts/LINESeedJP_OTF_Rg.woff') format("woff");
}

@font-face {
    font-family: "lineSeed-bd";
    src: url('./fonts/LINESeedJP_OTF_Bd.woff') format("woff");
}

@font-face {
    font-family: "UDPMincho regular";
    src: url('./fonts/BIZUDPMincho-Regular.ttf');
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "UDPMincho bold";
    src: url('./fonts/BIZUDPMincho-Bold.ttf');
    font-style: normal;
    font-weight: 700;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'UDPMincho regular';
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    margin: 0;
}

p {
    margin: 0;
    font-family: "UDPMincho regular";
}

p,
h1,
h2,
h3,
h4,
h5,
span,
li {
    color: var(--color-black);
}

button {
    font-family: "UDPMincho regular";
    border: none;
    background: none;
}

a {
    color: #343434; 
    display: block;
    text-decoration: none;
}

ul,li {
    list-style: none;
    margin: 0;
    padding: 0;
}

input:focus,
textarea:focus {
    border: 2px solid var(--color-beige100);
}

#wrap {
    width: 100%;
    background-color: var(--color-bg);
    overflow-x: hidden;
}

.spacing1 {
    letter-spacing: -1px;
}

.el-flex {
    display: flex;
}

.ali-center {
    align-items: center;
}

.flex-bt {
    display: flex;
    justify-content: space-between;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dir-column {
    flex-direction: column;
}

.po-relative {
    position: relative;
}

.img-container img {
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.wh-100 {
    width: 100%;
    height: 100%;
}