/* 画面サイズによる変更 */

@media (max-width: 800px) {
}

@media (min-width: 800px) {
}
/* 汎用設定 */
:root {
  --base-bg-color: rgb(255, 255, 255);
}

/* タグセレクタ */

html body {
  margin: 0;
  padding: 0;
  background-color: var(--base-bg-color);
  color: var(--base-bg-color);
  -webkit-text-size-adjust: 100%;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

/* Vuetify v-main コンポーネントのスタイル */
.v-main.main-transparent {
  background-color: transparent !important;
}

.v-main.main-semi-transparent {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
}

main {
  /* background-color: white; */
  /* background-image: url("../assets/logo.png"); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50%;
  padding-bottom: var(--base-footer-height);
  z-index: 2;
}

aside {
  background-color: azure;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 25;
  height: 100%;
}

footer {
  z-index: 50;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: var(--base-footer-height);
  min-height: 40px;
  text-align: center;
  background-color: var(--base-bg-color);
  transition-property: bottom;
  transition-duration: 0.8s;
  transition-timing-function: ease;
}

i {
  font-size: 24px;
}

.flex {
  flex-grow: 0;
}

.flex-empty {
  height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

v-card-text {
  size: 1em;
}

/* ポートフォリオページ専用スタイル */
.portfolio-card {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  border-radius: 8px !important;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15) !important;
}

.portfolio-page .v-chip {
  font-size: 0.75rem;
  font-weight: 500;
}

.portfolio-page .text-caption {
  color: rgba(0, 0, 0, 0.6);
}

.portfolio-page .v-card__title {
  line-height: 1.2 !important;
}

.portfolio-page .v-img__content {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
}

/* 統計カードのアニメーション */
.portfolio-page .v-card--link:hover {
  transform: scale(1.02);
  transition: transform 0.2s ease-in-out;
}

