@charset "utf-8";
@import url(normalize.css);
/*import:外部ファイルを呼び込む*/
/*normalize.css：リセットCSSの一種。ユーザーエージェントCSSのブラウザごとの違いをリセットする*/


/*====================================================
          基本設定
=====================================================*/

/* Reset */
body, h1, h2, p, ul, li {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

/* 头部整体 */
header {
  display: flex;                /* logo 和导航横向排列 */
  justify-content: space-between; 
  align-items: center;          /* 垂直居中对齐 */
  padding: 10px 40px 10px 10px;    /* 上 右 下 左留点空隙 */
  background: #fff0f6;            /* 背景颜色（粉色调） */
  height: 70px;                   /* 固定高度，统一页面 */
  box-sizing: border-box;         /* 包含 padding，不会撑大 */}

.logo {
  height: 80px;      /* 可根据需要调整 */
  width: auto;
  padding-top: 0;    /* 确保上边没有多余的间距 */
  margin-left: 0; /* 让 logo 离左边 10px，看起来舒服 */
}
/* logo 图片 */
.logo img {
  height: 80px;   /* 缩小到合适高度，不会太大 */
  width: auto;
  display: block; /* 去掉默认行内元素带的基线间隙 */
  margin-top: 0;  /* 确保没有多余的外边距 */
}

/* 导航菜单 */
nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #555;
  padding: 8px 12px;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

nav ul li a:hover {
  color: #ff6fa2;
  border-bottom: 2px solid #ff6fa2;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}
nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  position: relative;
  padding: 5px 0;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #ff80ab;
  transition: width 0.3s ease;
}
nav a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  background: #fff;
  /*eight: 400px;
  overflow: hidden;*/
}
.hero-img {
  max-width: 100%;
  height: auto;
  /*object-fit: cover;*/
  display: block;
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  color: white;
  background: rgba(214, 51, 132, 0.7);
  padding: 10px 20px;
  border-radius: 8px;
  text-align: center;
}

/* Introduction Section */
.introduction {
  display: flex;
  align-items: center;
  padding: 60px 10%;
  gap: 40px;
}
.intro-left {
  flex: 0 0 30%;
}
.intro-left img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.intro-right {
  flex: 0 0 70%;
}
.intro-right h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #d63384;
}
.intro-right p {
  font-size: 15px;
  color: #444;
  text-align: justify;
}


/* 导航保持一行 */
nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Main 区域 */
main {
  min-height: calc(100vh - 70px - 60px); 
  /* 100%视口高度 - header高度 - footer高度 */
  box-sizing: border-box;
}

/* Footer（统一高度 & 样式） */
footer {
  height: 60px; /* 固定高度，所有页面一致 */
  background: #fff0f6;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #666;
  font-size: 14px;
}



/* 当前导航激活状态 */
nav a.active {
  color: #d63384;
}
nav a.active::after {
  width: 100%;
}

/* Page Title */
.page-title {
  text-align: center;
  padding: 60px 20px 40px;
  background: #fff0f6;
}
.page-title h1 {
  font-size: 28px;
  color: #d63384;
  margin-bottom: 10px;
}
.page-title p {
  font-size: 16px;
  color: #555;
}


/*====================================================
          bio.html
=====================================================*/


/* Bio Section */
.bio {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 60px 10%;
}
.bio-left {
  flex: 0 0 30%;
}
.bio-left img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.bio-right {
  flex: 0 0 70%;
}
.bio-right h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #d63384;
}
.bio-right p {
  font-size: 15px;
  color: #444;
  text-align: justify;
}

/* Timeline Section */
.timeline {
  padding: 60px 15%;
  background: #fff7fb;
}
.timeline h2 {
  font-size: 22px;
  color: #d63384;
  margin-bottom: 30px;
  text-align: center;
}
.timeline ul {
  list-style: none;
  padding-left: 0;
  border-left: 3px solid #ffb3c6;
}
.timeline li {
  position: relative;
  padding: 15px 20px;
  margin-bottom: 15px;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 20px;
  width: 14px;
  height: 14px;
  background: #d63384;
  border-radius: 50%;
}
.timeline .year {
  font-weight: bold;
  color: #d63384;
  margin-right: 10px;
}

/* Timeline 整体 */
.timeline {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
}

/* 让文字和图片并排 */
.timeline-content {
  display: flex;
  gap: 40px;             /* 左右间距 */
  align-items: flex-start;
}

/* 左列：时间轴 */
.timeline-list {
  flex: 2;               /* 占左边较大空间 */
  list-style: none;
  padding: 0;
  margin: 0;
}
.timeline-list li {
  margin-bottom: 18px;
  line-height: 1.6;
}
.timeline-list .year {
  font-weight: bold;
  color: #ff6fa2;
  margin-right: 6px;
}

/* 右列：图片 */
.timeline-images {
  flex: 1;               /* 右边较窄 */
  display: flex;
  flex-direction: column;
  gap: 20px;             /* 多张图时的间距 */
}
.timeline-images img {
  width: 100%;           /* 自动按列宽缩放 */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}



/*====================================================
          works.html
=====================================================*/

/* 代表作 Works */
.works {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 60px 10%;
}
.work-card {
  background: #fff7fb;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  padding: 20px;
}
.work-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}
.work-card h3 {
  color: #d63384;
  margin-bottom: 10px;
}


/*====================================================
          media.html
=====================================================*/

/* 映像化作品 Media */
.media-list {
  padding: 60px 10%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.media-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff7fb;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.media-item img {
  width: 120px;
  border-radius: 6px;
}
.media-item h3 {
  margin: 0 0 8px;
  color: #d63384;
}