@charset "utf-8";

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;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    text-decoration: none;
    list-style: none;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

html,
body {
    line-height: 1;
    color: #000;
    font-family: 'Pretendard', sans-serif;
    font-size: 10px;
    letter-spacing: -0.05rem;
    width: 100%;
    height: 100%;
}


ol,
ul {
    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;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    user-select: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: .3s;
    
    cursor: pointer;
}

a:hover {
}

a:focus {
    outline: none;
}



button {
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
}

input {
    line-height: 50px;
    padding: 0 15px;
    font-size: 14px;
    height: 50px;
    background: #fff;
    border: 1px solid #333;
    -webkit-user-select: auto;
    -webkit-appearance: none;
    appearance: none;
}
input::placeholder,
input::-webkit-input-placeholder,
input::-moz-placeholder {
    color: #cbcbcb;
    font-weight: normal;
}
input:focus {
    outline: none;
}


select {
    border: 1px solid #333;
    padding: 0 15px;
    color: #333;
    font-size: 14px;
    background-color: #fff;
    outline: none;
    width: 100%;
    height: 40px;
    border-radius: 5px;
    /*background: url(../image/bg/bg-arrow-down.svg) right 13px center / 8px auto no-repeat;*/
    appearance: none;
    -webkit-appearance: none;
}

select::-ms-expand {
    display: none;
}

select.on {
    /*background: url(../image/bg/bg-arrow-up.svg) right 13px center / 8px auto no-repeat;*/
}

.select-script {
    position: relative;
    width: 200px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #fff;
    border-radius: 4px;
    text-transform: uppercase;
    background: #323537;
}

.select-script label {
    position: absolute;
    width: 100%;
    font-size: .86em;
    color: #fff;
    top: 0;
    left: 0;
    padding: 0 5%;
}

.select-script label:after {
    content: '▼';
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    right: 0;
    font-size: .76em;
    color: #fff;
    text-align: center;
}

.select-script select {
    width: 100%;
    height: 40px;
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: alpha(opacity=0)
        /* IE 8 */
    ;
}


textarea {
    width: 100%;
    resize: none;
    outline: none;
    -webkit-user-select: auto;
    padding: 12px 15px;
    border: 1px solid #333;
    border-radius: 5px;
    min-height: 200px;
}

placeholder::-ms-input-placeholder {color: #cbcbcb;}
placeholder::-webkit-input-placeholder {color: #cbcbcb;} 
placeholder::-moz-placeholder {color: #cbcbcb;}


/*text style*/
.al {
    text-align: left;
}

.ac {
    text-align: center;
}

.ar {
    text-align: right;
}

.cursor {
    cursor: pointer;
}


/* button style */
.btn {
    width: 150px;
    height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    border-radius: 50px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    background-color: var(--brand);
    transition: .3s;
}

.m_none {
    display: none;
}

@media all and (min-width: 1280px) {
    .btn {
        width: 210px;
        height: 80px;
        font-size: 25px;
    }

    .m_none {
        display: block;
    }

    .pc_none {
        display: none;
    }
}


/* font */
@font-face {
    font-family: 'Pretendard';
    src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}


/* codenumber4 style guide */
* {
    word-break: keep-all;
}


@media screen and (min-width: 1280px) {

}


:root {
    --brand: #FF6C0E;
}


/* header */
header {
    width: 100%;
    height: 60px;
    position: fixed;
    left: 0;
    top: 0;
    background-color: white;
}

header .inner {
    max-width: 1280px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 18px;
}

.logo {
    display: block;
    width: 120px;
    height: 100%;
    background: url(../image/logo.svg) center left / contain no-repeat;
}

@media all and (min-width: 1280px) {
    header {
        height: 88px;
    }

    .logo {
        width: 170px;
    }
}

@media all and (min-width: 1300px) {
    header .inner,
    footer .inner {
        padding: 0;
    }
}

/* visual */
.visual {
    padding-top: 60px;
    background: url(../image/bg_visual.jpg) center / cover no-repeat;
    height: 680px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.visual .tit_area {
    color: white;
}

.visual .tit_area .tit {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.3;
}

.visual .tit_area .txt {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
    margin: 30px 0 25px;
}

@media all and (min-width: 1280px) {
    .visual {
        height: 988px;
        padding-top: 88px;
    }

    .visual .tit_area .tit {
        font-size: 70px;
        line-height: 1.1;
    }
    
    .visual .tit_area .txt {
        font-size: 32px;
        line-height: 1.4;
        margin: 57px 0 50px;
    }
}

/* section */
.section_01 {
    background-color: #FFEFE5;
}

section img {
    width: 100%;
    height: auto;
}

section .pc_img {
    display: none;
}

.section_02 {
    padding: 0 30px;
}


@media all and (min-width: 1280px) {
    .section_01 {
        padding: 130px 0;
    }

    .section_02 {
        padding: 150px 0 200px;
    }

    section .pc_img {
        display: block;
    }

    section .m_img {
        display: none;
    }

    section img {
        max-width: 1280px;
        margin: 0 auto;
    }
}

/* cta */
.cta {
    background-color: var(--brand);
    color: white;
    padding: 50px 0;
}

.cta .txt {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
}

.cta .btn {
    background-color: white;
    color: var(--brand);
    margin-top: 28px;
}

@media all and (min-width: 1280px) {
    .cta {
        padding: 85px 0;
    }

    .cta .txt {
        font-size: 30px;
    }

    .cta .btn {
        margin-top: 35px;
    }
}

/* footer */
footer {
    background-color: #F9F9F9;
}

footer .inner {
    padding: 45px 36px;
    max-width: 1280px;
    margin: 0 auto;
}

footer .logo {
    width: 172px;
    height: 42px;
}

footer .ft_info_area {
    margin: 24px 0 20px;
}

footer .ft_info {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

footer .ft_info span {
    display: block;
    position: relative;
    top: 1px;
    width: 2px;
    height: 14px;
    margin: 0 7px;
    background-color: black;
}

footer .copyright {
    color: #c8c8c8;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
}

@media all and (min-width: 1280px) {
    footer {
        padding: 95px 0;
    }

    footer .logo {
        width: 232px;
        height: 56px;
    }

    footer .ft_info_area {
        display: flex;
        justify-content: space-between;
        margin-top: 54px;
    }

    footer .ft_info {
        font-size: 18px;
    }

    footer .ft_info:last-child {
        color: #b7b7b7;
    }

    footer .ft_info:last-child span {
        background-color: #b7b7b7;
    }

    footer .copyright {
        font-size: 16px;
    }
    
}