html, body {
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
}
h1 {
    font-size: 6vw;
}
hr {
    width: 1000px;
    height: 2px;
    background-color: #CFCECE;
    margin: 0px auto;
    border: 0px;
    border-radius: 2px;
    box-shadow: 0px 4px 20px;
}
ul {
    display: inline-block;
    margin: 0px;
}
a {
    text-decoration: unset;
    color: unset;
}
:root {
    --margin: 60px
}
.page-width {
    width: 1200px;
    margin: 0px auto;
    position: relative;
}
.header {
    width: 100%;
    height: 171px;
    overflow: hidden;
}
.header .logo {
    width: 200px;
    height: 200px;
}
.header .logo-outter {
    position: absolute;
    top: 0px;
    height: 0px;
}
.header .menu {
    position: absolute;
    top: 99px;
    right: 60px;
    font-family: "Open Sans";
    color: #A3A2A2;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    width: 462px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}
.header .menu .active {
    font-weight: bold;
    color: #363535;
}
.header-text {
    width: 100%;
    height: 207px;
    position: relative;
}
.header-text .text {
    font-family: "Poiret One";
    font-size: 64px;
    position: absolute;
}

.header-text .left-text {
    left: var(--margin);
}
.header-text .right-text {
    right: var(--margin);
    text-align: right;
}
.main-img {
    width: 1200px;
    height: 473px;
    background-color: #A3A2A2;
    display: flex;
    align-content: center;
    justify-content: center;
    overflow: hidden;
}
.footer {
    width: 100%;
    height: 349px;
    position: relative;
    font-family: "Open Sans";
    font-size: 12px;
    color: #989898;
}

.footer .logo-outter {
    position: absolute;
    top: 0px;
    left: 16px;
}
.footer .logo {
    width: 150px;
    height: 150px;
}
.footer .left-text {
    top: 134px;
    position: absolute;
    left: var(--margin);
}
.footer .right-text {
    top: 134px;
    position: absolute;
    right: var(--margin);
    text-align: right;
}
.footer .semi-bold {
    font-weight: 600;
}
.footer .bold {
    font-weight: bold;
}
.footer .ex-bold {

}
.footer .ex-bold img {
    width: 30px;
    margin-top: 15px;
}
.footer a {
    color: #989898;
    font-weight: bolder;
    text-decoration: unset;
}
.not-found {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.not-found h1 {
    font-family: 'Open Sans';
    font-size: 60px;
    margin: 0px;
}
.sns-icons img {
    width: 75px;
    height: 75px;
    filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.25));
    margin: calc(23px / 2);
    margin-bottom: 0px;
    transition: all 200ms;
}
.sns-icons img:hover {
    filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.5));
}
.contact-bt {
    margin-top: 26px;
    font-family: "Open Sans";
    font-size: 24px;
    font-weight: 600;
    width: 300px;
    height: 50px;
    border-radius: 20px;
    background-color: #F2F2F2;
    cursor: pointer;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms;
}
.contact-bt:hover {
    
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
}