@charset "utf-8";

@keyframes loading {
 from {
	 opacity: 0;  }
	 
 to {
	 opacity: 1;  }
}




html, body, body * {
	scroll-padding-top: 10px; /* アンカーリンク位置の調整 */
}

body {
}

header h1 {
	opacity:0;
	animation-name:loading;
	animation-delay:0s;
	animation-duration:1s;
	animation-fill-mode: forwards;
}

#menubar nav {
	opacity:0;
	animation-name:loading;
	animation-delay:0s;
	animation-duration:1s;
	animation-fill-mode: forwards;
}

.profile td {
	padding: 10px;
	text-align: center;
	vertical-align: top;
}
.profavatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 1rem;
}
.proflink-button {
	display: block;
	width: 90%;
	max-width: 300px;
	margin: 0.7rem auto;
	padding: 0.7rem;
	border-radius: 12px;
	background-color: #D1E8EB;
	text-decoration: none;
	color: #333;
	font-weight: bold;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	transition: background 0.2s ease;
	text-align: center;
}
.proflink-button:hover {
	background-color: #89B9C9;
	text-decoration: none;
}

.link-icon {
      width: 2em;
      height: 2em;
      border-radius: 5px;
      object-fit: cover;
	  padding:5px;
	  margin-right:0.5em;
  	  vertical-align:-40%;

}
  .icon_x {
	  background:rgba(0,0,0,1);
}
  .icon_pixiv {
	background-color: rgba(0,150,250,1);
}
  .icon_bsky {
	background-color: rgba(255,255,255,1);
}
  .icon_da {
	background-color: rgba(0,0,0,1);
}
  .icon_spacer {
	background-color: rgba(0,0,0,0);
	width:1px;
    margin:0;
	padding-left:0;
	padding-right:0;
}


div.link-column {
	  display:grid;
  	  align-items: center;
}




#section1{
	display: flex;
	align-items: center;

	}
	
.topcontainer {
	display: flex;
	flex-wrap: nowrap;
	overflow-x: visible;
	justify-content: center;
	gap: 0;
	align-items: center;
	margin: auto;
	padding: auto;

	
}
.topimage-column {
	display: flex;
	gap: 0;
	flex-wrap: nowrap;
	justify-content: center;
	
}



.topimg-box {
	width: 170px;
	height: 400px;
	background-color: #ccc;
	background-size: cover;
	background-position: center;
	border-radius: 10px;
	opacity: 0;
	transform: translateY(100px);
	animation: fadeUp 1s ease-out forwards;
	margin:3px 0;

}

.topimg-box.down {
	transform: translateY(-100px);
	animation-name: fadeDown;
}



    /* アニメーション */
@keyframes fadeUp {
   to {
   opacity: 1;
   transform: translateY(0);
  }
}

@keyframes fadeDown {
   to {
   opacity: 1;
   transform: translateY(0);
  }
}

/* delay個別 */
.topdelay-1 {
	animation-delay: 1.3s;
}
.topdelay-2 {
	animation-delay: 1.3s;
}
.topdelay-3 {
	animation-delay: 1.8s;
}
.topdelay-4 {
	animation-delay: 1.8s;
}


.ns {
	font-size: 0.7em;
}
.proftd {
	vertical-align:	top;
	white-space:nowrap;
}


