/* Profile エリア */
.profile {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 0 40px;
  align-items: flex-start;
  gap: 40px;
}

.profile img {
  width: 360px;
}

.profile_text h2 {
  font-family: "Bitter", serif;
  font-size: 22px;
  font-weight: bold;
}

.profile_text h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background-color: var(--black);
  margin-top: 20px;
}

.profile_text h3 {
  font-size: 16px;
  font-weight: bold;
  margin-top: 40px;
}

.profile_text p {
  margin-top: 20px;
  line-height: 1.5;
}

.profile_text ul {
  margin-top: 20px;
  line-height: 1.5;
}

.profile_text a {
  color: var(--main);
}

.profile_text a:hover {
  color: color-mix(
    in srgb, var(--main), black 20%
  );
}

/* Highlights エリア */
.highlights {
  max-width: 1200px;
  margin: 48px auto;
  padding: 0 40px;
}

.highlights_bg {
  padding: 48px 40px;
  background-color: var(--bg-gray);
}

.highlights h2 {
  font-family: "Bitter", serif;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

.highlights h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background-color: var(--black);
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.movie {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 40px;
}
.movie iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* --- モバイル用 --- */
@media (max-width:800px) {

/* Profile エリア */
.profile {
  flex-direction: column;
  padding-left: 16px;
  padding-right: 16px;
}

/* Highlights エリア */
.highlights {
  padding-left: 0px;
  padding-right: 0px;
  margin-bottom: 0;
}

.highlights_bg {
  padding-left: 16px;
  padding-right: 16px;
}

}