#google_form {
    margin: 0 auto;
    width:640px;
    height: 800px;
    display: block;
}

header h1 {
    margin:0;
    border-bottom:0;
}

header.scroll h1{
    border-bottom:0;	
}

#form h2 {
    color: #58a765;
    font-size: 20px;
    font-weight: bold;
    padding: 13px 20px;
    /* background-image: url(../images/attention.png); */
    background-repeat: no-repeat;
    position: relative;
}

#form h2::after {
    content: '';
    width: 100%; 
    height: 5px;
    background-image: repeating-linear-gradient(135deg, transparent, transparent 4px, #e2f0cf 4px, #e2f0cf 8px );
    position: absolute;
    bottom: 0;
    left: 0;
}

.form-contents{
    box-sizing: border-box;
    border-style: solid;
    border-width: 0;
    padding:20px;
}

/******* 日報フォームここから *******/
#form{
	width: 80%;
	margin: 1rem auto 2rem;
	padding: 1rem;
	border: 1px solid #333;
	border-radius: 10px;
}
#form h2{
	/* width: 100%; */
	font-size: 1.5rem;
	text-align: center;
	padding-bottom: 0.5rem;
}
#form p.caution{
	color: red;
	padding-bottom: 1rem;
}
#form p.error{
	color: red;
	padding: 1rem 0;
	font-size: 1.25rem;
}
#form dl dt{
	padding-bottom: 0.25rem;
    font-weight:bold;
    font-size:initial;
}
#form dl dd{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 1.5rem;
	margin-right:40px;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid #333;
}
#form dl dd input[type="text"]{
	width: calc(100% - 1rem);
	padding: 4px;
	font-size: 1rem;
}
#form dl dd input[name="name"]{
	width: 10rem;
}
#form dl dd input[type="email"]{
	width: 20rem;
	padding: 4px;
	font-size: 1rem;
}
#form dl dd input[type="number"]{
	width: 10rem;
	padding: 4px;
	font-size: 1rem;
}
#form dl dd input[type="checkbox"]{
	margin-right: 0.25rem;
}
#form dl dd textarea{
	width: calc(100% - 1rem);
	height: 5rem;
	padding: 4px;
	font-size: 1rem;
}
#form dl dd select{
	padding: 4px;
	font-size: 1rem;
}
#form dl dd label{
	display: flex;
	align-items: center;
	margin-left: 1rem;
}
#form dl dd label#opinion_skip, #health_skip{
	margin-left: 0;
}
#form dl dd span{
	width: 100%;
	font-size: 0.8rem;
	color: red;
}
#form p.submit{
	display: flex;
	justify-content: center;
	align-items: center;
}
#form p input[type="submit"]{
	width: 5rem;
	padding: 4px;
	font-size: 1.1rem;
	color: #fff;
	border: none;
	border-radius: 5px;
	background-color: #53bf49;
}
.submit :hover{
	opacity:0.8;
        cursor:pointer;
}
#form p input[type="button"]{
	width: 5rem;
	padding: 4px;
	margin-right: 1rem;
	font-size: 1.1rem;
	border: none;
	border-radius: 5px;
	background-color: #efefef;
}
/******* 日報フォームここまで *******/
