@charset "utf-8";
@import url('https://fonts.googleapis.com/earlyaccess/notosansjapanese.css');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:600');





/* ---------- reset ---------- */

* {
	border: 0;
	font-size: 1em;
	font-style: normal;
	font-weight: normal;
    line-height: 1;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

ul, ol {
    list-style: none;
}





/* ---------- base ---------- */

body {
    background: #FF9900;
	font-family: "Noto Sans Japanese";
}

img {
	height: auto;
	max-width: 100%;
	vertical-align:top;
}

@media screen and (min-width:641px) {

	a[href^="tel:"] {
		pointer-events:none;
	}

}





/* ---------- section ---------- */

section {
    background: #FFAD33;
    border: #FFBD5B 1px solid;
    border-radius: 5px;
    box-sizing: border-box;
    color: #fff;
    margin: 100px auto 0;
    max-width: 400px;
    padding: 50px;
    text-align: center;
}

section h1 {
    font-family: "Open Sans";
    font-size: 2.5em;
}

section h2 {
    font-size: 0.92em;
    line-height: 1.4;
    padding: 15px 0 45px;
}

section li {
    padding: 0 0 20px;
}

section li input {
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
    box-shadow: 2px 2px 3px 0 #DD962C;
	font-family: "Noto Sans Japanese";
    font-size: 1.4em;
    outline: 0;
    padding: 10px 15px;
    width: 100%;
}

section li input::placeholder {
    color: #ccc;
}

section p {
    padding: 10px 0 0;
    text-align: right;
}

section p.error {
    color: rgba(255,0,4,1.00);
    padding: 0 0 20px;
    text-align: left;
}

section p button {
    background: #B25900;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
    color: #fff;
    display: inline-block;
	font-family: "Noto Sans Japanese";
    font-size: 1.1em;
    outline: 0;
    padding: 7px 20px;
}

@media screen and (max-width:640px) {

    section {
        margin: 40px 30px;
        padding: 20px;
    }

    section h1 {
        font-family: "Open Sans";
        font-size: 2.5em;
    }

    section h2 {
        padding: 15px 0 25px;
        text-align: left;
    }

    section h2 br {
        display: none;
    }

    section li input {
        font-size: 1.2em;
        padding: 5px 10px;
    }

}





/* ---------- footer ---------- */

#footer {
    background: #FF9226;
    color: #fff;
    padding: 40px 50px;
    position: relative;
}

#footer dt {
    font-size: 1.2em;
    font-weight: 500;
    line-height: 1.6;
}

#footer dd {
    font-size: 0.92em;
    line-height: 1.6;
    padding: 10px 0 0;
}

#footer a {
    color: #fff;
    text-decoration: none;
}

#footer p {
    font-size: 0.8em;
    line-height: 1.6;
    bottom: 40px;
    padding: 0;
    position: absolute;
    right: 50px;
}

@media screen and (max-width:640px) {

    #footer {
        border-top: #fff 1px solid;
        padding: 0;
        position: relative;
    }

    #footer dl {
        padding: 20px;
    }

    #footer p {
        border-top: #fff 1px solid;
        padding: 15px 0;
        position: static;
        text-align: center;
    }

}