header {
	font-family: 'Playfair Display', serif;
	position: fixed;
	top: 0; left: 0; width: 100%; height: 60px;
	background-color: #BCAED9;
	color: white;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	box-sizing: border-box;
	z-index: 1000;
	height: 60px;
}

.site-name {
  font-size: 1.5rem;
}

#menu-toggle {
  display: none;
}

.menu-btn {
  width: 30px;
  height: 22px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-btn span {
  display: block;
  height: 4px;
  background-color: white;
  border-radius: 2px;
}

nav.menu {
  display: none;
  position: fixed;
  top: 60px;
  right: 0;
  background-color: #444;
  width: 200px;
  padding: 10px 20px;
  box-sizing: border-box;
}

nav.menu a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 10px 0;
}

nav.menu a:hover {
  background-color: #555;
}

#menu-toggle:checked + .menu-btn + nav.menu {
  display: block;
}

@media (min-width : 774px ){
  .menu-btn {
    display: none;
  }
  nav.menu {
    display: flex !important;
    position: static;
    width: auto;
    background: none;
    padding: 0;
  }
  nav.menu a {
    padding: 0 15px;
    line-height: 60px;
  }
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #ffffff;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  font-size: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
	font-weight: 400
  color: #111;
  border-bottom: 2px solid #ccc;
  padding: 0.5em 0;
  margin: 1.5em 0 1em;
  letter-spacing: 0.05em;
}

h1 {
  font-size: 2rem;
  border-bottom: 2px solid #ccd6f6;
  padding-bottom: 0.3em;
}

h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-top: 24px;
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 4px solid #4b4e9f; /* クリアウィンター寄りの深い青紫 */
  background-color: #f6f8ff;       /* 淡い青みがかった背景色 */
  border-radius: 6px;
}

h3 {
	font-size: 28px;
	font-family: 'Playfair Display', serif;
	color: #222;
	margin-bottom: 0;
}

h4 {
	font-family: 'Playfair Display', serif;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 1px;
	color: #777;
	margin-top: 0;
}

.page-title {
  font-size: 40px;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
  color: #222;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 12px;
}

/* メインコンテンツの最大幅と左右余白 */
main {
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
	padding-top: 60px
}
/* 既存の.reels-containerはそのままでOK */
.reels-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

/* reel の中身（動画と説明）を横並びにする */
.reel {
  display: flex;           /* ←追加 */
  gap: 20px;              /* 余白 */
  align-items: flex-start; /* 上揃え */
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* 動画埋め込み部分 */
.reel-embed {
  flex: 1 1 320px;
  min-width: 300px;
}

/* 説明文部分 */
.reel-description {
  flex: 1 1 300px;
  min-width: 280px;
}

.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
  margin: 1.5rem auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
	display: flex;
	min-width: 100%;
	box-sizing: border-box;
}

.carousel-item img {
	flex: 1;
}

.item-details{
	flex: 2;
	padding-left: 20px;
  padding-right: 20px;
}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.6);
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}