html {
  scroll-behavior: smooth;
}
.about_mv {
  position: relative;
  height: 82rem;
  overflow: hidden;
}
.about_mv .page_title {
  display: block;
  margin-top: 0;
}
.about_mv_background {
  display: block;
  width: 100%;
  height: 100%;
}
.about_mv_background img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about_mv_copy {
  position: absolute;
  z-index: 1;
  top: 30.5rem;
  left: 4.5rem;
  display: grid;
  grid-template-columns: 23rem minmax(0, 50rem);
  column-gap: 4rem;
  width: 77rem;
  color: #fff;
}
.about_mv_copy .common_title {
  grid-column: 1;
  grid-row: 1 / span 2;
  font-family: var(--font-hyght);
  font-size: 8.2rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1;
}
.about_mv_copy_catch {
  margin-top: 2rem;
  grid-column: 2;
  font-family: var(--font-mincho);
  font-size: 3.2rem;
  line-height: 1.5;
}
.about_mv_copy_text {
  grid-column: 2;
  max-width: 50rem;
  margin-top: 3rem;
  font-size: 1.4rem;
  line-height: 1.8;
}
.about_mv_slider {
  position: absolute;
  right: 4.5rem;
  bottom: 13rem;
  width: 49.5rem;
  height: 33.2rem;
  overflow: hidden;
  /* background-color: #202421; */
}
.about_mv_slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.7s ease,
    visibility 0s linear 0.7s;
}
.about_mv_slide.is-active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.about_mv_buttons {
  position: absolute;
  z-index: 1;
  left: calc(50% - 40rem);
  bottom: 17.5rem;
  display: flex;
  gap: 2.5rem;
}
.about_mv_button {
  width: 14rem;
  font-weight: 400;
}
.about_mv_button .link_text_animation_box {
  transform: translateY(-0.1rem);
}
.about_mv_button::after {
  background-color: #fff;
  transform: rotate(90deg);
}
.about_mv_button.active::after,
.about_mv_button:focus-visible::after {
  animation: aboutMvArrowMoveDown 0.3s ease-out forwards;
}
@keyframes aboutMvArrowMoveDown {
  0% {
    transform: translateY(0) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50%) rotate(90deg);
    opacity: 0;
  }
  51% {
    transform: translateY(-50%) rotate(90deg);
    opacity: 0;
  }
  100% {
    transform: translateY(0) rotate(90deg);
    opacity: 1;
  }
}

.about_body_inner {
  display: grid;
  grid-template-columns: 25rem minmax(0, 74rem);
  gap: 10rem;
  padding-top: 12rem;
}
.about_sidebar {
  position: sticky;
  top: 12rem;
  align-self: start;
}
.about_sidebar_nav {
  display: grid;
}
.about_sidebar_title {
  margin-bottom: 1.3rem;
  padding-bottom: 1.3rem;
  color: var(--color-brown);
  border-bottom: 1px solid var(--color-brown);
  font-family: var(--font-ppneue);
  font-size: 1.7rem;
}
.about_sidebar_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  font-size: 1.3rem;
  line-height: 1.8;
  transition: color 0.35s ease;
}
.about_sidebar_link::after {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 0.7rem;
  height: 0.8rem;
  margin-left: 1.6rem;
  background-color: var(--color-brown);
  -webkit-mask: url(../img/arrow-right.svg) no-repeat center;
  -webkit-mask-size: contain;
  mask: url(../img/arrow-right.svg) no-repeat center;
  mask-size: contain;
}
.about_sidebar_link:hover,
.about_sidebar_link:focus-visible,
.about_sidebar_link.is-current {
  color: var(--color-brown);
}
.about_sidebar_link:hover::after,
.about_sidebar_link:focus-visible::after {
  animation: aboutSidebarArrowMoveRight 0.3s ease-out forwards;
}
@keyframes aboutSidebarArrowMoveRight {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(50%);
    opacity: 0;
  }
  51% {
    transform: translateX(-50%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes aboutArrowMoveDown {
  0% {
    transform: translateY(0) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(50%) rotate(90deg);
    opacity: 0;
  }
  51% {
    transform: translateY(-50%) rotate(90deg);
    opacity: 0;
  }
  100% {
    transform: translateY(0) rotate(90deg);
    opacity: 1;
  }
}

.about_sp_nav {
  display: none;
}
.about_section {
  scroll-margin-top: 12rem;
}
.about_section_header {
  text-align: center;
}
.about_section_title {
  font-family: var(--font-hyght);
  font-size: 5.2rem;
  font-weight: 300;
  line-height: 1;
}
.about_section_title_ja {
  margin-top: 2rem;
  font-size: 1.3rem;
  line-height: 1.8;
}
.about_section_lead {
  margin-top: 4rem;
  font-size: 1.4rem;
  line-height: 1.8;
}
.about_ingredient_list {
  margin-top: 8rem;
}
.about_ingredient_item {
  display: grid;
  grid-template-columns: 26rem minmax(0, 1fr);
  column-gap: 3rem;
  /* row-gap: 1rem;
  align-items: center;
  padding: 4rem 0; */
}
.about_ingredient_item:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) 26rem;
}
.about_ingredient_item:nth-child(even) .about_ingredient_image {
  grid-column: 2;
  grid-row: 1;
}
.about_ingredient_item:nth-child(even) .about_ingredient_info {
  grid-column: 1;
  grid-row: 1;
}
.about_ingredient_item + .about_ingredient_item {
  padding-top: 7.5rem;
}
.about_ingredient_image {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 260 / 146;
}
.about_ingredient_image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about_ingredient_title {
  font-size: 1.515rem;
  font-weight: 400;
  line-height: 1.8;
}
.about_ingredient_info {
  align-self: stretch;
  padding-top: 2rem;
  border-top: 1px solid rgba(82, 79, 78, 0.2);
}
.about_ingredient_text {
  margin-top: 2rem;
  font-size: 1.25rem;
  line-height: 1.8;
}
.about_ingredient_note {
  grid-column: 2;
  grid-row: 2;
  margin-top: 2rem;
  text-align: right;
  font-size: 1.1rem;
  color: #6b6969;
}

.about_fragrant {
  margin-top: 18rem;
}
.about_fragrant_groups {
  margin-top: 9rem;
}
.about_fragrant_group + .about_fragrant_group {
  margin-top: 7.5rem;
}
.about_fragrant_note {
  padding: 0 0 1.5rem;
  border-bottom: 1px solid rgba(82, 79, 78, 0.2);
  text-align: center;
  font-family: var(--font-ppneue);
  font-size: 1.5rem;
  line-height: 1.8;
}
.about_fragrant_list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8rem;
  margin-top: 3.5rem;
  padding: 0 6rem;
}
.about_fragrant_item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}
.about_fragrant_item figcaption {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.8;
}
.about_fragrant_note_text {
  margin-top: 3rem;
  text-align: right;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #6b6969;
}
.about_breadcrumb {
  max-width: 135rem;
  margin: 14rem auto 2rem;
}
@media (max-width: 1024px) {
  .about_mv {
    height: 70.4rem;
  }
  .about_mv .common_title {
    font-size: 5.2rem;
    text-align: left;
  }
  .about_mv_background img {
    object-position: center top;
  }
  .about_mv::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(48, 48, 48, 0.3);
    pointer-events: none;
  }
  .about_mv_copy {
    position: absolute;
    z-index: 1;
    top: 11rem;
    right: 1.6rem;
    left: 1.6rem;
    overflow: visible;
    width: auto;
    height: auto;
    margin: 0;
    clip: auto;
    clip-path: none;
    color: #fff;
    white-space: normal;
    display: block;
  }
  .about_mv_copy_catch {
    margin-top: 3rem;
    font-family: var(--font-mincho);
    font-size: 2rem;
    line-height: 1.5;
  }
  .about_mv_copy_text {
    margin-top: 1rem;
    font-size: 1.3rem;
    line-height: 1.8;
  }
  .about_mv_slider {
    z-index: 1;
    right: 1.6rem;
    bottom: 5rem;
    left: 1.6rem;
    width: auto;
    height: 22rem;
  }
  .about_mv_buttons {
    z-index: 2;
    right: 1.6rem;
    bottom: calc(clamp(22.5rem, 58vw, 31rem) + 6.9rem);
    left: 1.6rem;
    gap: 2.4rem;
  }
  .about_mv_buttons::before {
    display: none;
  }
  .about_mv_button {
    width: 13rem;
  }
  .about_body_inner {
    display: block;
    max-width: none;
    margin-inline: 1.6rem;
    padding-top: 2rem;
  }
  .about_sidebar {
    display: none;
  }
  .about_sp_nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 3rem;
    padding: 1rem;
    margin-bottom: 4rem;
    /* position: sticky;
    top: 6rem;
    z-index: 100;
    background-color: rgba(250, 250, 250, 0.86);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px); */
  }
  .about_sidebar_link {
    min-height: 3rem;
    font-size: 1.1rem;
  }
  .about_sidebar_link::after {
    transform: rotate(90deg);
  }
  .about_sidebar_link:hover::after,
  .about_sidebar_link:focus-visible::after {
    animation: aboutArrowMoveDown 0.3s ease-out forwards;
  }
  .about_section {
    scroll-margin-top: 10rem;
  }
  .about_section_title {
    font-size: 4.2rem;
  }
  .about_section_title_ja {
    margin-top: 1.5rem;
    font-size: 1.2rem;
  }
  .about_section_lead {
    margin-top: 2.5rem;
    font-size: 1.3rem;
  }
  .about_ingredient_list {
    margin-top: 5rem;
  }
  .about_ingredient_item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .about_ingredient_item + .about_ingredient_item {
    padding-top: 6rem;
  }
  .about_ingredient_item:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .about_ingredient_item:nth-child(even) .about_ingredient_image {
    grid-column: 1;
    grid-row: auto;
  }
  .about_ingredient_item:nth-child(even) .about_ingredient_info {
    grid-column: 1;
    grid-row: auto;
  }
  .about_ingredient_info {
    padding-top: 0;
    border: none;
  }
  .about_ingredient_note {
    grid-column: 1;
    grid-row: auto;
    margin-top: 0;
  }
  .about_ingredient_title {
    font-size: 1.5rem;
  }
  .about_ingredient_text {
    margin-top: 1rem;
    font-size: 1.3rem;
  }
  .about_fragrant {
    margin-top: 10rem;
  }
  .about_fragrant_groups {
    margin-top: 6rem;
  }
  .about_fragrant_group + .about_fragrant_group {
    margin-top: 5rem;
  }
  .about_fragrant_list {
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0;
  }
  .about_fragrant_note {
    padding-bottom: 1rem;
  }
  .about_fragrant_item figcaption {
    margin-top: 1rem;
    font-size: 1.1rem;
  }
  .about_fragrant_note_text {
    margin-top: 2rem;
  }
  .about_breadcrumb {
    width: auto;
    margin: 8rem 1.6rem 1rem;
  }
}
