/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.body {
  background: #E3D6F9; /* 紫系に変更 */
  margin: 0;
  padding-bottom: 60px;
}

.clear_fix:after {
  content: "";
  display: block;
  width: 100%;
  clear: both;
}

.header {
  background: #5B3A82; /* 紫系に変更 */
  color: #F0E6FC;      /* 明るい紫系に変更 */
  font-size: 30px;
  padding: 30px;
  text-align: center;
}

.header-img {
  width: 100%;
  height: auto;
  display: block;
}

.menu {
  background: #5B3A82; /* 紫系に変更 */
  color: #E6D9F7;
}

.menu-in {
  display: flex;
  justify-content: space-evenly;
  width: 640px;
  margin: 0 auto;
  background-color: #7E57C2; /* 紫系に変更 */
  padding: 10px;
  border-radius: 8px;
}

.menu-item {
  background-color: #7E57C2; /* 紫系に変更 */
  color: white;
  text-align: center;
  padding: 10px;
  flex: 1;
  text-decoration: none;
  font-size: 16px;
  display: block;
  transition: background-color 0.3s ease;
  font-weight: bold;
  border-radius: 6px;
}

.menu-in > a.menu-item,
.menu-in > .dropdown {
  flex: 1;
  text-align: center;
  margin-right: 0;
}

.menu-item:hover {
  background-color: #512DA8;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
}

.dropup .dropdown-content {
  bottom: 100%;
  top: auto;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a:hover {
  background-color: #eeeeee;
}

.contents {
  background: #E3D6F9; /* 紫系に変更 */
  width: 640px;
  margin: 0 auto;
  padding: 10px;
  color: #1A042A;
  font-size: 15px;
}

.bt01 {
  background: #5B3A82; /* 紫系に変更 */
  color: #fff;
  padding: 8px;
  width: 100px;
  text-align: center;
  border-radius: 5px;
  transition-duration: 0.3s;
}

.bt01:hover {
  background: #8159B8; /* 紫系に変更 */
  cursor: pointer;
  transform: scale(1.2);
}

.button-group {
  text-align: left;
  margin-bottom: 30px;
}

.image-button {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: white;
  margin: 10px;
}

.image-button img {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

.image-button span {
  display: block;
  margin-top: 5px;
  font-weight: bold;
}

.btn-desc {
  margin-top: 8px;
  color: #000000;
  font-size: 15px;
  text-align: left;
}

.scroll-gallery {
  display: flex;
  overflow-x: auto;
  gap: 40px;
  padding: 10px 0;
  margin-bottom: 30px;
  scroll-snap-type: x mandatory;
}

.scroll-gallery a {
  flex: 0 0 auto;
  scroll-snap-align: start;
  text-decoration: none;
}

.scroll-gallery img:hover {
  transform: scale(1.05);
}

.scroll-gallery img {
  max-height: 160px;
  height: auto;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s;
}

.work-item {
  flex: 0 0 auto;
  text-align: center;
  scroll-snap-align: start;
}

.work-item img {
  width: auto;
  height: 160px;
  border-radius: 8px;
  transition: transform 0.3s;
}

.work-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.work-item img:hover {
  transform: scale(1.05);
}

.work-title {
  margin-top: 5px;
  font-size: 14px;
  color: #000000;
}

.drama-section {
  max-width: 640px; /* movie-sectionと同じ */
  margin: 40px auto; /* movie-sectionに合わせる */
  padding: 20px;
  background-color: #5B3A82; /* 紫系に変更 */
  color: #F0E6FC;            /* 紫系に変更 */
  border-radius: 12px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.drama-carousel {
  position: relative;
  flex: 0 0 50%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: #5B3A82; /* 紫系に変更 */
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-images {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-images img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.carousel-images img.active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-btn {
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
  color: white;
  font-size: 24px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  position: relative;
  z-index: 10;
  transition: background-color 0.3s;
}

.carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.carousel-btn.prev {
  margin-right: 8px;
}

.carousel-btn.next {
  margin-left: 8px;
}

.drama-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
  min-width: 0;
}

.movie-section {
  display: flex;
  gap: 20px;
  max-width: 640px;
  margin: 40px auto;
  padding: 20px;
  background-color: #5B3A82; /* 紫系に変更 */
  color: #F0E6FC;            /* 紫系に変更 */
  border-radius: 12px;
  align-items: flex-start;
}

.movie-photo {
  width: 180px;
  flex-shrink: 0;
}

.movie-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.movie-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
}

.stage-section {
  display: flex;
  gap: 20px;
  max-width: 640px;
  margin: 40px auto;
  padding: 20px;
  background-color: #5B3A82; /* 紫系に変更 */
  color: #F0E6FC;            /* 紫系に変更 */
  border-radius: 12px;
  align-items: flex-start;
}

.stage-photo {
  width: 180px;
  flex-shrink: 0;
}

.stage-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.stage-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
}

.link-section {
  max-width: 640px;
  margin: 40px auto;
  padding: 20px;
  background-color: #5B3A82; /* 紫系に変更 */
  color: #F0E6FC;            /* 紫系に変更 */
  border-radius: 12px;
  text-align: left;
  line-height: 1.6;
}

.link-section h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.link-section p {
  margin-bottom: 10px;
}

.link-section a {
  display: block;
  margin: 4px 0;
  color: #F0E6FC; /* 紫系に変更 */
  text-decoration: underline;
}
.footer-menu {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #5B3A82; /* 紫系に変更 */
  z-index: 1000;
}

.footer-menu .menu-in {
  width: 640px;
  margin: 0 auto;
  background-color: #7E57C2; /* 紫系に変更 */
  padding: 10px;
  display: flex;
  justify-content: space-around;
  gap: 8px;
}


.footer-menu .menu-in > a.menu-item,
.footer-menu .menu-in > .dropdown {
  flex: 1;
  min-width: 0;
  text-align: center;
  margin-right: 0;
}

.footer-menu .menu-in > .dropdown {
  display: flex;
  justify-content: center;
}

.profile-container {
  display: flex;
  max-width: 640px;
  margin: 0 auto;
  gap: 20px;
  padding: 20px;
  background-color: #5B3A82; /* 紫系に変更 */
  color: #F0E6FC;            /* 紫系に変更 */
  border-radius: 12px;
  align-items: flex-start;
}

.profile-photos {
  width: 180px;
  flex-shrink: 0;
}

.profile-photos img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.profile-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
}

.button-link {
  display: inline-block;
  padding: 8px 16px;
  background-color: #8159B8; /* 紫系に変更 */
  color: white;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.button-link:hover {
  background-color: #A88CED; /* 紫系に変更 */
  cursor: pointer;
}
