@charset "utf-8";

.message {
	display: flex;
	flex-direction: column;
	padding: 20px 0;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (min-width: 1280px) {
	.message {
		flex-direction: row;
		justify-content: space-between;
	}
}

/* ------------------------------------------------------ */

.message__header {
	display: flex;
	justify-content: center;
}

.message__copy {
	position: relative;
	padding: 2em;
	margin-bottom: 3em;
	font-size: 150%;
	text-align: center;
}

.message__copy:before,
.message__copy:after {
	position: absolute;
	display: block;
	content: "";
	pointer-events: none;
	width: 100px;
	height: 40%;
}

.message__copy:before {
	left: 0;
	top: 0;
	border-radius: 5px 0 0 0;
	border-top: 1px solid rgba(0,0,0,0.6);
	border-left: 1px solid rgba(0,0,0,0.6);
}

.message__copy:after {
	right: 0;
	bottom: 0;
	border-radius: 0 0 5px 0;
	border-bottom: 1px solid rgba(0,0,0,0.6);
	border-right: 1px solid rgba(0,0,0,0.6);
}

/* ------------------------------------------------------ */

.message__footer {
	order: 2;
	margin-bottom: 20px;
	text-align: center;
}

.message__footer-author {
	
}

.message__footer-author .author-t {
	letter-spacing: 0.15em;
	display: block;
	font-size: 80%;
}

.message__footer-author .author-n {
	display: block;
	font-size: 120%;
}

.message__footer-app {
	margin-bottom: 20px;
}

.message__footer-app img {
	display: block;
	width: 100%;
	max-width: 160px;
	border-radius: 5px;
	margin: auto;
}


@media screen and (min-width: 1280px) {
	
	.message__footer {
		width: 280px;
	}
	
	.message__footer-app {
		
	}
	
	.message__footer-app img {
		max-width: none;
		max-width: initial;
		margin: 0;
	}
}

/* ------------------------------------------------------ */

.message__txt {
	
}

.message__txt > * {
	margin-top: 0;
}

.message__txt .ttl {
	font-size: 130%;
	padding-left: 1.5em;
}

.message__txt .txt {
}


@media screen and (min-width: 1280px) {
	.message__txt {
		width: calc(100% - 340px);
	}
}
