@charset "UTF-8";

/* リセットと全体設定 */
body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100dvh;
  overflow: hidden; /* 画面外のスクロールを防ぐ */
  background-color: #f8f8f8; /* 背景色（お好みで変更） */
  font-family: sans-serif;
}

/* カードを画面中央にまとめるコンテナ */
.card-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-ctt_ttl {
  width: 100%;
  height: 10%;
  margin-bottom: 5%;
  font-size: 50px;
  font-weight: 400;
}

.card-ctt_box {
  width: 100%;
  height: 87%;
  display: flex;
}

.ttl_box {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.ttl {
  font-size: 65px;
  font-weight: 400;
}

.name {
  font-size: 50px;
  font-weight: 200;
}

/* カードの基本骨格 */
.card {
  position: absolute;
  /* width: 300px; 
  height: 450px; */
  height: 90dvh;
  aspect-ratio: 2/3;
  cursor: grab;
  user-select: none; /* ドラッグ中のテキスト選択を防ぐ */
  touch-action: none;

  /* デザイン適用エリア（ここをご自身で変更してください） */
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

  /* アニメーション（重なり順が変わった時などにフワッとさせる場合はここにtransitionを追加） */
  transition: box-shadow 0.2s ease;
}

.card:active {
  cursor: grabbing;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* カード内部のコンテンツ配置用 */
.card-content {
  padding: 20px;
  height: 100%;
  box-sizing: border-box;
  /* 内部のレイアウトはお好みでFlexやGridを使用してください */
}

.pfl-ctt{
  margin-top: 65%;
}

.lrg-name{
  font-size: 30px;
  font-weight: 500;
}

.sml-name{
  font-size: 15px;
  font-weight: 250;
}

.birth{
  line-height: 50px;
  font-size: 20px;
  font-weight: 400;
}

.pdt-ctt {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}

/* .pdt-ttl {
  width: 100%;
  height: 5%;
} */

.pdt-box {
  width: 100%;
  height: 100%;
}

.website {
  width: 100%;
  height: 100%;
}

.selfie {
  background-image: url(../images/yubitate.png);
  background-size: 80% auto;
  background-position: 100% bottom;
  background-repeat: no-repeat;
}

.fvt-ctt {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: space-between;
}

.fvt-ttl {
  width: 100%;
  height: 5%;
  font-size: 25px;
}

.fvt-img {
  width: 100%;
  height: 40%;
  border-radius: 5px 10px 5px 10px;
  background-size: cover;
  background-position: center;
}

.noodle-img {
  background-image: url(../images/noodle.jpg);
}

.walk-img{
  background-image: url(../images/photo.jpg);
}

.tool-table{
  width: 100%;
  height: 90%;
  text-align: center;
}

.tool-table td{
  width: 33%;
  height: 33%;
  font-size: 30px;
  font-weight: 300;
}
