
.mycover {
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	width: 90%;
	max-width: 500px;
	margin: 50px auto;
}
.mycover .myicon {
	display: block;
	width: 50vw;
	height: 50vw;
	max-width: 400px;
	max-height: 400px;
	border-radius: 100%;
	object-position: center;
	object-fit: cover;
	border: 1px solid var(--color-lightgray);
	aspect-ratio: 1/1;
}
.mycover .settinglink {
	width: 50px;
	height: 50px;
}
.mycover .settinglink a {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	background: #FBFBFB;
	border-radius: 10px;
	border: 1px solid #d7d7d7;
}
.mycover .settinglink a img {
	display: block;
	width: 60%;
	margin: auto;
}


.join {
	text-align: center;
	font-size: 0.9em;
	width: 90%;
	margin: auto;
}
.join-table {
	margin-bottom: 10px;
    border-collapse: collapse;
    border-spacing: 0;
	max-width: 350px;
	width: 90%;
	margin: auto;
}
.join-table tr {}
.join-table tr th,
.join-table tr td {
	font-size: 0.8em;
	padding: 10px;
}
.join-table tr th {
	border: 1px solid #F6F6F6;
	background: #F6F6F6;
}
.join-table tr td {
	border: 1px solid #F6F6F6;
	background: #FFF;
}
.dark_on .join {
	color: #FFF;
}
.dark_on .join-table tr th {
	background: #000;
	color: #FFF;
	border: 1px solid #727272;
}
.dark_on .join-table tr td {
	background: #a3a3a3;
	border: 1px solid #727272;
}

#card {
	max-width: 350px;
	width: 90%;
	height: 200px;
	box-shadow: 0 20px 60px 0 rgb(0 0 0 / 20%);
	background-image: linear-gradient(45deg, rgba(61, 200, 194, 1), rgba(61, 156, 194, 1) 50%, rgba(197, 125, 233, 1));
	border-radius: 20px;
	margin: 30px auto;
	overflow: hidden;
}
#card:before {
	content: '';
	position: absolute;
	top: 32px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	background-image: url(/common/img/shuttle.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	transform: rotate(-45deg);
	opacity: 0.1;
}
#card p {
	font-size: 0.7em;
	color: #FFF;
}
#card .card-number {
	position: absolute;
	top: 20px;
	left: 20px;
}
#card .card-number.official {
	padding-left: 22px;
}
#card .card-number.official:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 20px;
	height: 20px;
	background-image: url(/common/img/icon-official.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
#card .card-gender {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 30px;
	height: 30px;
}
#card .card-name {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	text-align: center;
	padding: 0 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	font-size: 1.2em;
}
#card .card-name span {
	font-size: 1em;
	color: #FFF;
}
#card .card-name span span {
	color: #FFF;
	font-size: 0.6em;
	padding: 5px 0 0;
	margin: 5px 0 0;
	display: block;
	border-top: 1px solid #FFF;
}
#card .card-register {
	position: absolute;
	bottom: 20px;
	right: 20px;
	text-align: right;
}

.mydata {
	list-style: none;
	max-width: 800px;
	width: 90%;
	margin: 50px auto;
}
.mydata li {
	background: #ffffff;
	padding: 10px 20px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin: 20px auto;
	border-radius: 10px;
	border: 1px solid #000;
}
.mydata li .mydata-ttl,
.mydata li .mydata-detail {
	font-size: 0.8em;
}
.mydata li .mydata-ttl {
	width: 40%;
}
.mydata li .mydata-detail {
	width: 60%;
}
.dark_on .mydata li {
	background: #a3a3a3;
}
.form {
	margin: auto;
}
.form:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 2;
	background: rgb(255 255 255 / 0%);
}
.label-block {
	padding-bottom: 0;
	border-bottom: 0;
	margin-bottom: 0;
}
.label-block label {
	font-size: 0.7em;
}
.label-block select {
	font-size: 0.7em;
	border-bottom: 0;
	text-align: right;
}
.dark_on .label-block select {
	background: #a3a3a3;
}

.linklist {
	margin: 50px auto;
}
.linklist a {}

/*===========================
=============================
SP ~750
=============================
===========================*/
@media screen and (min-width:750px) {
}