@charset "utf-8";
/* CSS Document */

/*GoogleFonts*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');

body{ font-family: 'Noto Sans JP', sans-serif; }
img { width: 100%; vertical-align: bottom; }
section { position: relative;}

/* PROFILE */
html,body,.profile { height: 100%; }
.profile {
	font-size: 0.9em;
	line-height: 1.3em;
	letter-spacing: 0.05em;
	min-height: 100%;
	background: #F6F6F6;
	}

body > .profile { height: auto; }
.profileBox,
.profileBox-under {
	width: 100%;
	max-width: 640px;
	margin: 0 auto 12px;
	background: #FFF;
	border-radius: 0 0 18px 18px ;
	box-shadow: 0 0 10px #CCC;
	}

.profileBox-under {
	padding: 18px;
	border-radius: 18px 18px 0 0;
	}

.profileHeader {
	padding: 18px;
	box-sizing: border-box;
	}

.profileHeader .name {
	margin-bottom: 12px;
	font-size: 1.4em;
	line-height: 1.4em;
	font-weight: bold;
	}

.profileHeader .name span {
	font-size: 0.8em;
	margin-left: 0.5em;
	}

.notification {
	position: relative;
	padding: 18px 12px 12px;
	color: #00B900;
	font-size: 0.9em;
	border: solid 2px #00B900;
	border-radius: 0.5em;
	}

.notification p.message {
	position: absolute;
	top: -12px;
	right: 12px;
	padding: 3px 24px 3px 12px;
	background: #00B900;
	color: #FFF;
	border-radius: 6px;
	}

.notification p.message span {
	position: absolute;
	top: 2px;
	right: -6px;
	display: inline-block;
	background: #F00;
	padding: 3px 7px 6px;
	font-size: 1em;
	line-height: 1em;
	font-weight: bold;
	border-radius: 50%;
	animation: flash 1.5s linear infinite;
	}

@keyframes flash {
	45%,65% { opacity: 1; }
	50% { opacity: 0; }
	}

.lineBtn {
	width: 90%;
	max-width: 640px;
	display: block;
	margin: 18px auto ;
	padding: 12px 0;
	background: #00b900;
	text-align: center;
	border-radius: 12px;
	color: #FFF;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 1px;
	box-shadow: 0 0 10px #CCC,0 0 5px #CCC;
	box-sizing: border-box;
	}

.lineBtn span {
	display: inline-block;
	margin-right: 6px;
	width: 18px;
	}

.profileBox-under ul li {
	display: flex;
	padding: 6px 0;
	justify-content: space-between;
	border-bottom: dotted 1px #CCC;
	}

.profileBox-under ul li:last-child { border:none; }
.profileLeft { font-weight: bold; }
