
body{min-width: 365px;}

div.top{width: 100%; min-width: 365px; background-image: url("./img/top-back.webp"); background-size:100%; text-align: center;}
img.top{width: 55%;}
div.background {
	width: 100%;
	min-width: 365px;
	max-width: 1980px;
	background-image: url("./img/image.webp");
	background-repeat: repeat-y;
	margin: auto; padding: 10px;
	text-align: center;
}
.flex{
	max-width: 1480px;
    min-width: 345px;
	display: -webkit-flex;
	display: flex;
	flex-wrap:wrap;
	justify-content: center;
	list-style:none;
    margin: auto;
}
div.logo{width: 17%; min-width: 315px; text-align: center;}

div.me1{width: 55%; max-width: 600px; min-width: 345px; padding: 10px;
	 background: rgba(206, 199, 199, 0.9); text-align: left;}
a {
  text-decoration: none;
}
div.penguin{width: 17%; max-width: 772px; min-width: 365px;text-align: center;}
span.btn{display: block; width: 300px; margin: auto; margin-top: 10px; margin-bottom: 10px;
	 background-color: rgb(209, 118, 57); color:rgb(8, 8, 8); text-align: center; padding: 5px;
	border-radius: 5px;}

	span.pc{display: block;
		width: 300px;
		margin: auto;
		margin-top: 10px;
		margin-bottom: 10px;
	text-align: center;}

img.me-photo{width: 90%;}

div.xyz{margin-top: 20px;}

div.me2{width: 85%;
	max-width: 1200px;
	min-width: 345px;
	padding: 10px;
	background: rgba(206, 199, 199, 0.9);
	text-align: left; margin: 15px auto;}

div.me3{width: 85%;
	max-width: 980px;
	min-width: 345px;
	padding: 10px;
	background: rgba(206, 199, 199, 0.9);
	text-align: left; margin: 15px auto;}

div.me2box{width: 48%; min-width: 335px; padding: 10px;}

h3{padding-top: 25px;}
img.me2{width: 250px;}

div.white{width: 100%; text-align: center;}

img.white{width: 90%; min-width: 335px;}
img.logoz {width: 50%; min-width: 335px}
div.sp{text-align: center; gap: 10px 10px;}

img.sample{display: block;margin-bottom: 15px;}

p.pc{text-align: center;}

div.main {
	background: rgba(206, 199, 199, 0.9);
	width: 50%; min-width: 345px; margin: auto; padding: 10px;
}

p.xyz {
	padding-top: 20px;
}

input.area {
	border-style: inset;
}

textarea.area {
	border-style: inset;
}

button.button {
	appearance: none;
	border: 0;
	border-radius: 5px;
	background: #3660b4;
	color: rgb(255, 255, 255);
	padding: 7px 15px;
	font-size: 15px;
}

div.sendover {
	display: none;
	background: rgba(206, 199, 199, 0.9);
}

p.sendoverp {
	padding-top: 100px;
	padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
	div.logo {
		display: none;
	}

	div.background {
		background-image: url("./img/m-back.webp");
	}

	img.top {
		width: 90%;
	}

	div.top {
		padding: 0%;
	}

	div.background {
		padding: 10px;
	}
}
/*========= アニメーションCSS ===============*/
div.smooth {
		animation-name: smoothAnime;
		animation-duration: 2s;
		animation-fill-mode: forwards;
		transform-origin: left;
		opacity: 0;
	}

@keyframes smoothAnime {
	from {
		transform: translate3d(0, 100%, 0) skewY(12deg);
		opacity: 0;
	}

	to {
		transform: translate3d(0, 0, 0) skewY(0);
		opacity: 1
