@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

/* reset */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
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;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
body {
    line-height:1;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}
ul {
    list-style:none;
}
blockquote, q {
    quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
del {
    text-decoration: line-through;
}
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
input, select {
    vertical-align:middle;
}

/* common */

body {
    color: #555;
    font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0 auto;
}
a {
    color: #333;
    text-decoration: none;
    transition: .3s;
}
a:hover {
    color: #666;
}
img {
    max-width: 100%;
}

header {
    margin: 40px 0;
    text-align: center;
}
header img {
    width: 400px;
}

.text {
    font-size: 24px;
    font-weight: 500;
    line-height: 2;
    text-align: center;
}
br.sp {
    display: none;
}

.title {
    margin: 45px auto;
    text-align: center;
}
.title span {
    display: inline-block;
    padding: 5px 20px;
    background: #FFA91F;
    color: #fff;
    line-height: 1.2;
    font-size: 24px;
}

.form_area {
    max-width: 800px;
    margin: 0 auto 100px;
    padding: 0 20px;
}
.form_area input[type="text"] {
    width: 95%;
    padding: 15px;
    border: 1px solid #aaa;
    background: #f9f9f9;
    font-size: 18px;
}
.form_area .name input[type="text"] {
    width: 40%;
    margin-right: 2%;
}
.form_area .npro_itemname {
    margin: 30px 0 10px;
    font-size: 24px;
    font-weight: 700;
}
.form_area .npro_itemname span {
    display: inline-block;
    margin-left: 15px;
    padding: 5px 10px;
    background: #FFA91F;
    color: #fff;
    line-height: 1.2;
    font-size: 14px;
}
.form_area input[type="submit"] {
    display: block;
    margin: 40px auto 80px;
    padding: 20px 80px;
    background: #FFA91F;
    border: 3px solid #FFA91F;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: .3s;
}
.form_area input[type="submit"]:hover {
    background: #fff;
    color: #FFA91F;
}

@media screen and (max-width: 840px){

    header {
        margin: 5vw 0;
    }
    header img {
        width: 50vw;
    }
    .text {
        font-size: 3vw;
    }
    .title {
        margin: 5vw auto;
    }
    .title span {
        padding: 1vw 3vw;
        font-size: 3vw;
    }

    .form_area {
        margin: 0 auto 12vw;
    }
    .form_area input[type="text"] {
        padding: 2vw;
        font-size: 2.4vw;
    }
    .form_area .npro_itemname {
        margin: 4vw 0 1.5vw;
        font-size: 3vw;
    }
    .form_area .npro_itemname span {
        margin-left: 2vw;
        padding: .5vw 1vw;
        font-size: 1.75vw;
    }
    .form_area input[type="submit"] {
        margin: 6vw auto;
        padding: 2vw 8vw;
        font-size: 3vw;
    }

}
@media screen and (max-width: 479px){
	
    br.sp {
        display: inline-block;
    }

    header {
        margin: 7vw 0;
    }
    header img {
        width: 80%;
    }
    .text {
        font-size: 4vw;
    }
    .title {
        margin: 10vw auto;
    }
    .title span {
        padding: 2vw 4vw;
        font-size: 4.5vw;
    }

    .form_area {
        margin: 0 auto 20vw;
    }
    .form_area input[type="text"] {
        width: 92.5%;
        padding: 3vw;
        font-size: 4vw;
    }
    .form_area .npro_itemname {
        margin: 6vw 0 2vw;
        font-size: 4.25vw;
    }
    .form_area .npro_itemname span {
        margin-left: 4vw;
        padding: 1vw 2vw;
        font-size: 2.75vw;
    }
    .form_area input[type="submit"] {
        margin: 8vw auto;
        padding: 3vw 9vw;
        font-size: 5vw;
    }

}