/*
    Reset
*/

*,
*:before,
*:after {
    box-sizing: border-box;
}
body {
    margin: 0;
    background: #f8fafb;
    font-family: "NotoSansJP", sans-serif;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.5px;
    color: #222222;
}
input {
    border: none;
    margin: 0;
    font-family: inherit;
}
input:focus {
    outline: none;
}
input[type=checkbox] {
    width: 14px;
    height: 14px;
    margin-right: 5px;
}
hr {
    margin-top: 16px;
    margin-bottom: 16px;
    border: 0;
    border-top: 1px solid rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
}



/*
    Buttons
*/

.btn {
    border: none;
    height: 48px;
    border-radius: 3px;
    background-color: #f39800;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 48px;
    letter-spacing: 0.6px;
    text-align: center;
    color: #ffffff;
}
.btn.primary {
    background-color: #ee6723;
}

.btn.primary.large {
    width: 100%;
}

.btn.secondary {
    background-color: #666666;
}

.btn.basic {
    background-color: #1c9e3b;
}

a.btn {
    display: block;
    text-decoration: none;
}

button.btn[type="button"],
input.btn[type="reset"]
{
    height: 35px;
    padding-left: 10px;
    padding-right: 10px;
    text-decoration: none;
    font-size: 14px;
}


/*
    Icons
*/

.icn {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 3px;
    border: solid 1px #d6dbdf;
    background-color: #ffffff;
}
.icn img {
    width: 30px;
    height: 30px;
    margin: 10px;
}

@media (max-width: 768px) {
    .icn {
        width: 30px;
        height: 30px;
    }
    .icn img {
        width: 18px;
        height: 18px;
        margin: 6px;
    }
}

.header .logo.openroom {
    width: 100px;
}

.header .logo {
    display: block;
    margin: auto;
}

@media (max-width: 768px) {
    .header .logo {
        width: 180px;
    }
}


/*
    Semantic headings
*/
h1.semantic {
    font-weight: normal;
}
