/* Form Session */
#form {
	padding-top: 20px;
	background-color: var(--white);
}

#form .intro {
	margin-bottom: 60px;
}

#form .intro ul {
	margin-top: 20px;
	padding-left: 20px;
	font-size: 1em;
	list-style-type: none;
}
#form .intro ul li::before {
	display: inline-block;
	margin-right: 4px;
	content: "※";
}

#form p {
	font-size: 1.2em;
}
@media screen and (max-width: 700px) {
	#form p {
		font-size: 1.0em;
	}
}

#form .subtitle {
	font-size: 1.4em;
}
@media screen and (max-width: 700px) {
	#form .subtitle {
		font-size: 1.2em;
	}
}

#form .form {
	margin-bottom: 20px;
}

#form .form .title {
	margin-top: 4px;
	margin-bottom: 4px;
	font-size: 1.2em;
	font-weight: bold;
}
#form .form .title a {
	margin-left: 10px;
	font-size: 1em;
	font-weight: normal;
}

#form .form .desc {
	margin-top: 4px;
	margin-bottom: 8px;
}

#form .form .alert {
	margin-bottom: 4px;
	font-size: 0.8em;
	color: var(--red);
}

#form .form input,
#form .form textarea {
	padding: 0.2em 0.4em;
	border-radius: 4px;
	font-size: 1.2em;
	pointer-events: auto;
}
#form .form input {
	width: 50%;
}
#form .form textarea {
	width: 90%;
	height: 4em;
}
@media screen and (max-width: 700px) {
	#form .form input {
		width: 70%;
	}
	#form .form textarea {
		width: 90%;
		height: 7em;
	}
}

#form .submit_btn {
	display: block;
	margin: 30px auto;
	width: 50%;
	max-width: 200px;
}

/* Tips Session */
#tips {
	background-color: var(--light-yellow);
}

#tips .section_border .border {
	top: -35px;
}

#tips h2 {
	font-size: 2em;
	text-align: left;
}

#tips .tip {
	position: relative;
}

#tips .tip img {
	width: 100%;
}

#tips .tip p {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin-top: -1em;
	width: calc(100% - 40px * 2);
	font-family: 'yasashisa';
	color: var(--white);
	font-size: 1.4em;
	font-weight: bold;
}
@media screen and (max-width: 1000px) {
	#tips .tip p {
		width: calc(100% - 30px * 2);
	}
}
@media screen and (max-width: 700px) {
	#tips .tip p {
		width: calc(100% - 20px * 2);
	}
}

#tips .tip1 img,
#tips .tip3 img {
	transform: scaleX(-1);
}

#tips .tip1 {
	margin-left: 50%;
	margin-right: 10%;
	width: 40%;
}
#tips .tip2 {
	margin-left: 10%;
	width: 50%;
}
#tips .tip3 {
	margin-left: 60%;
	margin-right: 10%;
	width: 30%;
}
#tips .tip4 {
	margin-left: 10%;
	width: 60%;
}
@media screen and (max-width: 1000px) {
	#tips .tip1 {
		margin-left: 45%;
		margin-right: 5%;
		width: 50%;
	}
	#tips .tip2 {
		margin-left: 5%;
		width: 60%;
	}
	#tips .tip3 {
		margin-left: 55%;
		margin-right: 5%;
		width: 40%;
	}
	#tips .tip4 {
		margin-left: 5%;
		width: 70%;
	}
}
@media screen and (max-width: 700px) {
	#tips .tip1 {
		margin-left: 30%;
		width: 70%;
	}
	#tips .tip2 {
		width: 75%;
	}
	#tips .tip3 {
		margin-left: 45%;
		width: 55%;
	}
	#tips .tip4 {
		width: 80%;
	}
}

#tips .tip1 p,
#tips .tip4 p {
	font-size: 1.6em;
}
#tips .tip2 p,
#tips .tip3 p {
	font-size: 1.4em;
}
@media screen and (max-width: 1000px) {
	#tips .tip1 p,
	#tips .tip4 p {
		font-size: 2.8vw;
	}
	#tips .tip2 p,
	#tips .tip3 p {
		font-size: 2.4vw;
	}
}
@media screen and (max-width: 700px) {
	#tips .tip1 p,
	#tips .tip4 p {
		font-size: 3.6vw;
	}
	#tips .tip2 p,
	#tips .tip3 p {
		font-size: 3.2vw;
	}
}