.course-about {
  padding: 64px 16px 0;
  color: #333333;
}

.course-about__container {
  width: min(100%, 960px);
  margin: 0 auto;
  text-align: center;
}

.course-about__header {
  display: grid;
  justify-items: center;
  gap: 24px;
}

.course-about__title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 64px;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}

.course-about__subhead {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.course-about__line {
  display: block;
  width: 56px;
  height: 1px;
  background: #7a7979;
}

.course-about__subtitle {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.2;
}

.course-about__body {
  margin-top: 56px;
}

.course-about__copy {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.45;
}

.course-about__description {
  width: min(100%, 760px);
  margin: 40px auto 0;
  color: #333333;
}

.course-about__description p {
  margin: 24px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 2;
}

.course-about__description p:first-child {
  margin-top: 0;
}

@media (max-width: 768px) {
  .course-about {
    padding-top: 120px;
  }

  .course-about__title {
    font-size: 36px;
  }

  .course-about__subtitle {
    font-size: 18px;
  }

  .course-about__subhead {
    gap: 12px;
  }

  .course-about__line {
    width: 36px;
  }

  .course-about__body {
    margin-top: 40px;
  }

  .course-about__copy {
    font-size: 32px;
  }

  .course-about__description {
    margin-top: 32px;
  }

  .course-about__description p {
    font-size: 16px;
    line-height: 1.9;
  }
}

.course-detail {
  padding: 200px 16px 40px;
  color: #333333;
}

.course-detail__container {
  width: min(100%, 1200px);
  margin: 0 auto;
}

.course-detail__block {
  position: relative;
  min-height: 760px;
}

.course-detail__block + .course-detail__block {
  margin-top: 180px;
}

.course-detail__block + .course-detail__block.course-detail__block--special {
  margin-top: 80px;
}

.course-detail__visual {
  width: min(100%, 720px);
  height: 480px;
  background: #d9d9d9;
  overflow: hidden;
}

.course-detail__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.course-detail__name {
  position: absolute;
  top: 32px;
  margin: 0;
  display: inline-block;
  padding: 8px 14px;
  background: #c8836b;
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.course-detail__card {
  position: absolute;
  width: min(100%, 420px);
  padding: 40px 32px;
  border: 1px solid #d8d0ca;
  background: #f8efe8;
  color: #444444;
}

.course-detail__card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1.5px solid rgba(255,255,255,0.3);
  pointer-events: none;
}

.course-detail__lead {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.8;
  color: #444444;
}

.course-detail__meta {
  margin: 32px 0 0;
}

.course-detail__meta-row + .course-detail__meta-row {
  margin-top: 24px;
}

.course-detail__meta-row dt,
.course-detail__meta-row dd {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #444444;
}

.course-detail__meta-row dt {
  font-weight: 500;
}

.course-detail__meta-row dd {
  margin-top: 4px;
  font-weight: 500;
}

.course-detail__block--standard .course-detail__visual {
  margin-right: auto;
}

.course-detail__block--standard .course-detail__name {
  right: 72px;
  text-align: left;
}

.course-detail__block--standard .course-detail__card {
  right: 0;
  bottom: 160px;
}

.course-detail__block--special .course-detail__visual {
  margin-left: auto;
}

.course-detail__block--special .course-detail__name {
  left: 72px;
  text-align: left;
}

.course-detail__block--special .course-detail__card {
  left: 0;
  bottom: 160px;
}

.course-detail-extra {
  padding: 8px 16px 0;
  color: #444444;
}

.course-detail-extra__container {
  width: min(100%, 1200px);
  margin: 0 auto;
}

.course-detail-extra__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.course-detail-extra__card {
  position: relative;
  border: 1px solid #d8d0ca;
  background: #f8efe8;
  color: #444444;
  padding: 56px 32px;
  text-align: center;
}

.course-detail-extra__card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid #e4d8d1;
  pointer-events: none;
}

.course-detail-extra__card::after {
  content: none;
}

.course-detail-extra__card--info {
  width: min(100%, 560px);
  margin-left: 44px;
  padding: 28px 32px;
}

.course-detail-extra__lead {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #444444;
}

.course-detail-extra__meta {
  margin: 24px 0 0;
}

.course-detail-extra__meta-row + .course-detail-extra__meta-row {
  margin-top: 16px;
}

.course-detail-extra__meta-row dt,
.course-detail-extra__meta-row dd {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

.course-detail-extra__meta-row dt {
  font-weight: 500;
}

.course-detail-extra__meta-row dd {
  margin-top: 4px;
  font-weight: 400;
}

.course-detail-extra__card--wide {
  width: min(100%, 1020px);
  margin: -80px 0 0 84px;
  padding: 44px 56px 40px;
}

.course-detail-extra__note {
  margin: 12px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #444444;
  text-align: inherit;
}

.course-detail-extra__note:first-child {
  margin-top: 0;
}

@media (max-width: 768px) {
  .course-detail {
    padding: 120px 16px 96px;
  }

  .course-detail__block {
    display: grid;
    gap: 24px;
    min-height: 0;
  }

  .course-detail__block + .course-detail__block {
    margin-top: 120px;
  }

  .course-detail__block + .course-detail__block.course-detail__block--special {
    margin-top: 20px;
  }

  .course-detail__visual,
  .course-detail__block--standard .course-detail__visual,
  .course-detail__block--special .course-detail__visual {
    width: 100%;
    height: 280px;
    margin: 0;
  }

  .course-detail__name,
  .course-detail__block--standard .course-detail__name,
  .course-detail__block--special .course-detail__name {
    position: static;
    font-size: 32px;
    text-align: center;
  }

  .course-detail__card,
  .course-detail__block--standard .course-detail__card,
  .course-detail__block--special .course-detail__card {
    position: static;
    width: 100%;
    padding: 28px 20px;
    margin-top: -160px;
  }

  .course-detail__meta-row dt {
    font-size: 16px;
  }

  .course-detail-extra {
    padding-top: 24px;
  }

  .course-detail-extra__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .course-detail-extra__card--info {
    width: 100%;
    margin-left: 0;
    padding: 24px 18px;
  }

  .course-detail-extra__lead {
    font-size: 17px;
    line-height: 1.9;
  }

  .course-detail-extra__meta {
    margin-top: 20px;
  }

  .course-detail-extra__meta-row dt,
  .course-detail-extra__meta-row dd {
    font-size: 16px;
    line-height: 1.7;
  }

  .course-detail-extra__card--wide {
    width: 100%;
    margin: -40px 0 0 0;
    padding: 30px 18px 26px;
  }

  .course-detail-extra__note {
    font-size: 16px;
    line-height: 1.9;
    text-align: inherit;
  }
}

.fragrance-notes {
  padding: 200px 16px 120px;
  color: #333333;
}

.fragrance-notes__container {
  width: min(100%, 1200px);
  margin: 0 auto;
  text-align: center;
}

.fragrance-notes__header {
  display: grid;
  justify-items: center;
  gap: 24px;
}

.fragrance-notes__title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 64px;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}

.fragrance-notes__subhead {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.fragrance-notes__line {
  display: block;
  width: 56px;
  height: 1px;
  background: #7a7979;
}

.fragrance-notes__subtitle {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.2;
}

.fragrance-notes__body {
  margin-top: 48px;
}

.fragrance-notes__description {
  width: min(100%, 860px);
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 2;
}

.fragrance-notes__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 80px;
}

.fragrance-notes__card {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 240px;
  padding: 40px 28px;
  background-color: #de9a81;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

.fragrance-notes__name {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
}

.fragrance-notes__card-line {
  display: block;
  width: 56px;
  height: 1px;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.75);
}

.fragrance-notes__jp {
  margin: 20px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
}

.fragrance-notes__tags {
  margin: 16px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .fragrance-notes__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .fragrance-notes {
    padding: 120px 16px 96px;
  }

  .fragrance-notes__title {
    font-size: 36px;
  }

  .fragrance-notes__subtitle {
    font-size: 18px;
  }

  .fragrance-notes__subhead {
    gap: 12px;
  }

  .fragrance-notes__line {
    width: 36px;
  }

  .fragrance-notes__body {
    margin-top: 40px;
  }

  .fragrance-notes__description {
    font-size: 16px;
    line-height: 1.9;
  }

  .fragrance-notes__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 56px;
  }

  .fragrance-notes__card {
    min-height: 0;
    padding: 32px 24px;
  }

  .fragrance-notes__name {
    font-size: 28px;
  }

  .fragrance-notes__jp {
    font-size: 18px;
  }

  .fragrance-notes__tags {
    font-size: 16px;
  }
}

.course-instructor {
  padding: 200px 16px 120px;
  color: #333333;
}

.course-instructor__container {
  width: min(100%, 1200px);
  margin: 0 auto;
  text-align: center;
}

.course-instructor__header {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.course-instructor__title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 64px;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}

.course-instructor__subhead {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.course-instructor__line {
  display: block;
  width: 48px;
  height: 1px;
  background: #7a7979;
}

.course-instructor__subtitle {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.2;
}

.course-instructor__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px;
  margin-top: 80px;
}

.course-instructor__card {
  display: grid;
  justify-items: center;
}

.course-instructor__image {
  width: 320px;
  height: 240px;
  background: #d9d9d9;
  overflow: hidden;
}

.course-instructor__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 20%;
}

.course-instructor__name {
  margin: 24px 0 0;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
}

.course-instructor__description {
  width: min(100%, 470px);
  margin: 16px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 768px) {
  .course-instructor {
    padding: 120px 16px 96px;
  }

  .course-instructor__title {
    font-size: 36px;
  }

  .course-instructor__subtitle {
    font-size: 18px;
  }

  .course-instructor__subhead {
    gap: 12px;
  }

  .course-instructor__line {
    width: 36px;
  }

  .course-instructor__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 56px;
  }

  .course-instructor__image {
    width: min(100%, 320px);
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .course-instructor__name {
    font-size: 32px;
  }

  .course-instructor__description {
    width: min(100%, 340px);
    font-size: 16px;
    line-height: 1.75;
  }
}

.course-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 224px;
  height: 100vh;
  padding: 120px 40px 40px;
  background: #333333;
  z-index: 30;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.course-sidebar__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}

.course-sidebar__list li {
  padding: 14px 0;
}

.course-sidebar__list li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.course-sidebar__list a {
  color: #ffffff;
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}

.course-sidebar__list a:hover {
  color: #de9a81;
}

.page-course .course-sidebar__list li:nth-child(3) > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 12px;
}

.page-course .course-sidebar__list li:nth-child(3) > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2px;
  height: 1.1em;
  transform: translateY(-50%);
  background: #de9a81;
}

.course-sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-course .workshop-header__bar {
  left: 0;
  width: 100%;
}

.page-course .workshop-header__icon {
  flex-direction: column;
  gap: 2px;
  transition: color 0.24s ease;
}

.page-course .workshop-header__menu-label,
.page-course .workshop-header__menu-close-label,
.page-course .workshop-header__icon-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #000000;
}

.page-course .workshop-header__menu .workshop-header__menu-label {
  display: block;
  width: auto;
  height: auto;
  background: none;
  transition: color 0.24s ease;
}

.page-course .workshop-header__menu .workshop-header__menu-line {
  display: none;
  width: 36px;
  height: 2px;
  background: currentColor;
}

.page-course .workshop-header__menu .workshop-header__menu-open-icon {
  display: block;
  width: auto;
  height: auto;
  background: none;
  font-size: 34px;
  line-height: 1;
  font-weight: 400;
  transition: color 0.24s ease;
}

.page-course .workshop-header__menu .material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  line-height: 1;
}

.page-course .workshop-header__menu .workshop-header__menu-close-icon,
.page-course .workshop-header__menu .workshop-header__menu-close-label {
  display: none;
  width: auto;
  height: auto;
  background: none;
}

.page-course .workshop-header__menu .workshop-header__menu-close-icon {
  font-size: 34px;
  line-height: 1;
  font-weight: 400;
  transition: color 0.24s ease;
}

.page-course .workshop-header__menu .workshop-header__menu-close-label,
.page-course .workshop-header__icon-label {
  transition: color 0.24s ease;
}

.page-course .workshop-header__menu {
  transition: color 0.24s ease;
}

.page-course:not(.is-sidebar-open) .workshop-header__menu:hover {
  color: #ffffff;
}

.page-course:not(.is-sidebar-open) .workshop-header__menu:hover .workshop-header__menu-label {
  color: #ffffff;
}

.page-course.is-sidebar-open .workshop-header__menu:hover {
  color: #ffffff;
}

.page-course.is-sidebar-open .workshop-header__menu:hover .workshop-header__menu-close-label {
  color: #ffffff;
}

.page-course .workshop-header__icon:hover {
  color: #ffffff;
}

.page-course .workshop-header__icon:hover .workshop-header__icon-label {
  color: #ffffff;
}

.page-course.is-sidebar-open .workshop-header__menu .workshop-header__menu-line,
.page-course.is-sidebar-open .workshop-header__menu .workshop-header__menu-open-icon,
.page-course.is-sidebar-open .workshop-header__menu .workshop-header__menu-label {
  display: none;
}

.page-course.is-sidebar-open .workshop-header__menu .workshop-header__menu-close-icon,
.page-course.is-sidebar-open .workshop-header__menu .workshop-header__menu-close-label {
  display: block;
}

.page-course .course-sidebar {
  top: 0;
  left: 0;
}

.page-course main {
  margin-left: 0;
}

.page-course .workshop-footer {
  margin-left: 0;
}

.page-course.is-sidebar-open .course-sidebar {
  transform: translateX(0);
}

.page-course.is-sidebar-open .workshop-header__bar {
  left: 224px;
  width: calc(100% - 224px);
}

.page-course.is-sidebar-open main {
  margin-left: 224px;
}

.page-course.is-sidebar-open .workshop-footer {
  margin-left: 224px;
}

.page-course .workshop-reservation__container {
  background: #c8836b;
}

.page-course .workshop-reservation__frame {
  background: transparent;
}

.page-course .workshop-reservation__link {
  background: transparent;
  box-shadow: none;
  transition: box-shadow 0.2s ease;
}

.page-course .workshop-reservation__link:hover {
  transform: none;
  box-shadow: none;
}

.page-course .workshop-reservation__title,
.page-course .workshop-reservation__text {
  transition: color 0.32s ease, text-shadow 0.32s ease;
}

.page-course .workshop-reservation__arrow-line {
  transform-origin: left center;
}

.page-course .workshop-reservation__arrow-head-line {
  transition:
    opacity 0.14s ease,
    background-color 0.32s ease,
    filter 0.32s ease;
}

.page-course .workshop-reservation__link:hover .workshop-reservation__title,
.page-course .workshop-reservation__link:hover .workshop-reservation__text {
  color: #ffffff;
  text-shadow:
    0 0 4px rgba(255, 255, 255, 0.35),
    0 0 10px rgba(255, 255, 255, 0.2);
}

.page-course .workshop-reservation__link:hover .workshop-reservation__arrow-line,
.page-course .workshop-reservation__link:hover .workshop-reservation__arrow-head-line {
  background-color: #ffffff;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.35));
}

.page-course .workshop-reservation__link:hover .workshop-reservation__arrow-line {
  animation: courseReservationArrowLineReplay 0.34s ease;
}

.page-course .workshop-reservation__link:hover .workshop-reservation__arrow-head-line--top,
.page-course .workshop-reservation__link:hover .workshop-reservation__arrow-head-line--bottom {
  animation: courseReservationArrowHeadReplay 0.22s ease 0.2s both;
}

@keyframes courseReservationArrowLineReplay {
  0% {
    transform: scaleX(1);
    opacity: 1;
  }

  12% {
    transform: scaleX(0);
    opacity: 0;
  }

  13% {
    transform: scaleX(0);
    opacity: 1;
  }

  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes courseReservationArrowHeadReplay {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
