@charset "UTF-8";

@font-face {
  font-family: 'Optima';
  src: url('https://lindt.itembox.cloud/item/online/css/font/optima_normal.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* @font-face {
  font-family: 'Optima';
  src: url('https://lindt.itembox.cloud/item/online/css/font/optima_bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
} */

.fs-l-main {
  margin: 0;
  padding: 0;
}

.fs-l-sideArea + .fs-l-pageMain {
  max-width: none;
}

.fs-l-sideArea {
  left: -20px;
}

.fs-p-drawer.fs-l-sideArea{
  display: none;
}

a:hover{
  text-decoration: none !important;
}

@media (min-width: 768px) {
  .fs-l-main {
    max-width: none;
  }
  .fs-l-pageMain {
    max-width: none;
  }
}

html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --green: #005c2f;
  --green-deep: #034c28;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  --radius: 18px;
  --page-bg: #E8EFE6;
  --page-padding: 10px;
  --jp-font: "YakuHanMP", "Shippori Mincho", serif;
  --en-font: "Optima", serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  min-height: 100%;
  font-family: var(--jp-font);
}

body {
  background: var(--page-bg);
  color: var(--green);
  font-family: var(--jp-font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* 初期状態（PC想定） */
.for_pc {
  display: block;
}

.for_sp {
  display: none;
}

/* スマホ（768px以下） */
@media (max-width: 768px) {
  .for_pc {
    display: none;
  }

  .for_sp {
    display: block;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

.page {
  padding: var(--page-padding);
}
@media (max-width: 768px) {
  .page {
    padding: 0;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - (var(--page-padding) * 2));
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd;
  isolation: isolate;
  will-change: width, height, border-radius;
}
@media (max-width: 768px) {
  .hero {
    border-radius: 0;
    height: 100svh;
  }
}

.hero__mask {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  will-change: transform;
  transform-origin: center center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero__image,
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video--sp {
  display: none;
}
@media (max-width: 768px) {
  .hero__video--pc {
    display: none;
  }
  .hero__video--sp {
    display: block;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  pointer-events: none;
}

.hero__logo {
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 210px;
  opacity: 0.78;
  pointer-events: none;
}
.hero__logo img {
  width: 100%;
  height: auto;
}
@media (max-width: 1024px) {
  .hero__logo {
    top: 28px;
    width: 180px;
  }
}
@media (max-width: 767px) {
  .hero__logo {
    top: 22px;
    width: 140px;
  }
}

.hero__nav {
  position: absolute;
  top: 43px;
  left: 44px;
  z-index: 11;
}
.hero__nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.hero__nav a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 1em;
  color: var(--green);
  letter-spacing: 0.16px;
  transition: opacity 0.25s ease;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.1);
  font-style: normal;
  font-weight: 600;
  opacity: 0.9;
}
.hero__nav li a::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background-color: #0C522E;
  display: inline-block;
  margin-right: 0.35em;
  position: absolute;
  top: 6px;
  left: -10px;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.hero__nav a:hover::before {
  opacity: 1;
}
@media (max-width: 1024px) {
  .hero__nav {
    top: 100px;
    right: 28px;
    display: none;
  }
  .hero__nav a {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .hero__nav {
    top: 88px;
    right: 18px;
  }
  .hero__nav ul {
    gap: 8px;
  }
  .hero__nav a {
    font-size: 12px;
  }
}

.menu-shell {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 100;
  width: 92px;
  height: 72px;
  background: transparent;
  border: 0;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition:
    width 0.9s cubic-bezier(0.76, 0, 0.24, 1),
    height 0.9s cubic-bezier(0.76, 0, 0.24, 1),
    background-color 0.9s cubic-bezier(0.76, 0, 0.24, 1),
    box-shadow 0.5s ease,
    transform 0.5s cubic-bezier(0.76, 0, 0.24, 1),
    opacity 0.5s ease;
    transition-delay: .7s;
}
.menu-shell.is-open {
  width: 282px;
  height: 540px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition-delay: 0s;
}
@media (max-width: 1024px) {
  .menu-shell {
    top: 24px;
    right: 24px;
  }
}
@media (max-width: 767px) {
  .menu-shell {
    top: 0px;
    right: 0px;
  }
  .menu-shell.is-open {
    width: 100vw;
    height: 100dvh;
  }
}

.menu-toggle {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 77px;
  height: 46px;
  border: 0;
  border-radius: 4px;
  background: #fff;
  color: var(--green);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  padding: 0;
  z-index: 3;
  font: inherit;
  transition: background-color 0.48s cubic-bezier(.22, 1, .36, 1), box-shadow 0.48s cubic-bezier(.22, 1, .36, 1);
  transition-delay: 1s;
}
.menu-shell.is-open .menu-toggle {
  background-color: #EBE9E8;
  box-shadow: none;
  transition-delay: 0s;
}

.menu-toggle__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.menu-label {
  color: #0C522E;
  font-family: var(--en-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.01em;
  transition: opacity 0.16s ease;
}
.menu-label--menu,
.menu-label--close {
  position: absolute;
  top: 24px;
}
.menu-label--close {
  display: none;
}
.menu-shell.is-open .menu-label--menu {
  display: none;
}
.menu-shell.is-open .menu-label--close {
  display: block;
}

.icon {
  position: relative;
  width: 41px;
  height: 11px;
  transform: translateY(-8px);
}
.icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  transform-origin: center;
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.2s ease;
}
.icon span img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}
.icon span:nth-child(1) {
  top: 1px;
  width: 41px;
  left: 0;
}
.icon span:nth-child(2) {
  top: 9px;
  width: 41px;
  left: 0;
}
.menu-shell.is-open .icon span:nth-child(1) {
  top: 5px;
  width: 41px;
  left: 0;
  transform: rotate(16deg);
}
.menu-shell.is-open .icon span:nth-child(2) {
  top: 5px;
  width: 41px;
  transform: rotate(-16deg);
}

.menu-content {
  position: absolute;
  inset: 0;
  padding: 97px 36px 34px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  transition-delay: 0s;
}
 @media (max-width: 767px) {
  .menu-content {
    padding: 88px 32px 48px;
    overflow-y: scroll;
  }
 }
.menu-shell.is-open .menu-content {
  opacity: 1;
  transition-delay: 0.42s;
  pointer-events: auto;
  transition-delay: .9s;
}

.menu-list,
.menu-sublist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-list > li + li {
  margin-top: 28px;
}
@media (max-width: 767px) {
  .menu-list > li + li {
    margin-top: 22px;
  }
}
.menu-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #0C522E;
  opacity: .9;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-feature-settings: 'palt' on;
  font-family: var(--jp-font);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.64px;
  position: relative;
  transition: padding-left 0.5s ease;
}
@media (max-width: 767px) {
  .menu-link {
    font-size: 22px;
    line-height: 190%;
  }
}
.menu-link:hover {
  padding-left: 12px;
  color: #0C522E;
}
.menu-link:hover::before {
  content: "";
  display: block;
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: #0C522E;
  margin-right: 8px;
  left: 0;
  top:7px;
}
@media (max-width: 767px) {
  .menu-link:hover::before {
    display: none;
  }
}

.menu-sublist {
  margin-top: 28px;
}
@media (max-width: 767px) {
  .menu-sublist {
    margin-top: 20px;
  }
}
.menu-sublist li {
  position: relative;
  padding-left: 14px;
}
.menu-sublist li + li {
  margin-top: 19px;
}
@media (max-width: 767px) {
  .menu-sublist li + li {
    margin-top: 18.5px;
  }
}
.menu-sublist li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
  color: #d7d8d2;
}

.menu-sublink {
  display: inline-block;
  color: #0C522E;
  opacity: .9;
  text-decoration: none;
  font-size: 13px;
  font-feature-settings: 'palt' on;
  font-family: var(--jp-font);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.52px;
  transition: opacity 0.5s ease;
}
.menu-sublink:hover {
    color: #0C522E;
}
@media (max-width: 767px) {
  .menu-sublink {
    font-size: 15px;
    line-height: 120%;
  }
}


.katakana {
  letter-spacing: -0.12em;
}

.katakana2 {
  letter-spacing: -0.24em;
}

.ten {
  letter-spacing: -0.3em;
}

.menu-link:hover,
.menu-sublink:hover {
  opacity: 0.72;
}
@media (max-width: 767px) {
  .menu-link:hover,
  .menu-sublink:hover {
    opacity: 1;
  }
}

/* .hero__copy {
  position: absolute;
  left: 46px;
  bottom: 30px;
  z-index: 10;
  font-family: var(--en-font);
  color: #0C522E;
  font-size: 120px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .hero__copy {
    left: 28px;
    bottom: 28px;
    font-size: 100px;
  }
}
@media (max-width: 767px) {
  .hero__copy {
    left: 18px;
    bottom: 18px;
    font-size: 74px;
    line-height: 0.92;
  }
} */

.hero__lineup {
  right: 22px;
  bottom: 22px;
  z-index: 12;
  width: min(260px, 18vw);
  min-width: 200px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  position: fixed;
}
.hero__lineup:hover {
  transform: translateY(-4px);
  opacity: 0.92;
}
@media (max-width: 1024px) {
  .hero__lineup {
    /* display: none; */
  }
}
@media (max-width: 767px) {
  .hero__lineup {
    right: 14px;
    bottom: 14px;
    /* width: 170px; */
    width: 225px;
    min-width: auto;
  }
}

.lineupbtn {
  box-shadow: -4px 4px 10px 0 rgba(12, 82, 46, 0.25);
  width: 250px;
}
.lineupbtn img {
  width: 100%;
}

.section {
  padding: 120px 24px;
}
@media (max-width: 767px) {
  .section {
    padding: 96px 18px;
  }
}

.section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section__title {
  font-family: var(--en-font);
  font-size: clamp(42px, 5vw, 68px);
  color: var(--green);
  margin-bottom: 20px;
}

.section__text {
  font-size: 16px;
  line-height: 2;
  color: #1f3c2b;
}

@media (max-width: 767px) {
  :root {
    --page-padding: 8px;
    --radius: 14px;
  }
}

.about-block {
  padding: 200px 180px 180px;
  background: var(--page-bg);
}
@media (max-width: 1380px) {
  .about-block {
    padding: 200px 8% 180px;
  }
}
@media (max-width: 1050px) {
  .about-block {
    padding: 200px 5% 180px;
  }
}
@media (max-width: 767px) {
  .about-block {
    padding: 120px 24px 80px;
  }
}

.about-block__inner {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 416px minmax(416px, 1fr);
  justify-content: center;
  align-items: start;
  column-gap: 134px;
}
@media (max-width: 1210px) {
  .about-block__inner {
    grid-template-columns: 360px 1fr;
    column-gap: 56px;
  }
}
@media (max-width: 767px) {
  .about-block__inner {
    grid-template-columns: 1fr;
    row-gap: 0;
  }
}

.about-block__media {
  width: 100%;
}
.about-block__media img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .about-block__media {
    max-width: 420px;
    margin: 0 auto;
    display: none;
  }
}

.about-block__content {
  padding-top: 83px;
  color: var(--green);
}
@media (max-width: 1024px) {
  .about-block__content {
    padding-top: 42px;
  }
}
@media (max-width: 767px) {
  .about-block__content {
    padding-top: 0;
  }
}

.about-block__title {
  color: #0C522E;
  text-align: justify;
  leading-trim: both;
  text-edge: cap;
  font-feature-settings: 'palt' on;
  font-family: var(--jp-font);
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.55;
  /* letter-spacing: 3.6px; */
  letter-spacing: 0.03em;
}
@media (max-width: 1024px) {
  .about-block__title {
    /* font-size: clamp(30px, 4vw, 46px); */
    line-height: 1.7;
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .about-block__title {
    font-size: clamp(26px, 8vw, 36px);
    line-height: 1.65;
    letter-spacing: 0.05em;
    font-size: 24px;
    letter-spacing: 2.4px;
  }
}

.about-block__text {
  margin-top: 58px;
}
@media (max-width: 1024px) {
  .about-block__text {
    margin-top: 42px;
  }
}
@media (max-width: 767px) {
  .about-block__text {
    margin-top: 28px;
  }
}

.about-block__text p {
  color: #0C522E;
  leading-trim: both;
  text-edge: cap;
  font-feature-settings: 'palt' on;
  font-family: var(--jp-font);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 220%;
  letter-spacing: 0.5px;
}
.about-block__text p + p {
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .about-block__text p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .about-block__text p {
    font-size: 14px;
    letter-spacing: 0.1px;
  }
  .about-block__text p + p,
  .about-block__text p:nth-child(3),
  .about-block__text p:nth-child(5),
  .about-block__text p:nth-child(7) {
    margin-top: 20px;
  }
}

.matcha-gallery {
  position: relative;
  padding: 0;
  margin-left: calc(var(--page-padding) * -1);
  margin-right: calc(var(--page-padding) * -1);
  overflow: hidden;
  padding-bottom: 280px;
}

@media (max-width: 767px) {
  .matcha-gallery {
    padding: 0;
    padding-bottom: 130px;
    margin: 0;
  }
}

.matcha-gallery__viewport {
  width: 100%;
  overflow: hidden;
}

.matcha-gallery__track {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 0;
  will-change: transform;
}

@media (max-width: 767px) {
  .matcha-gallery__track {
    gap: 12.72px;
  }
}

.matcha-gallery__item {
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}
@media (max-width: 767px) {
  .matcha-gallery__item {
    pointer-events: none;
  }
}

.matcha-gallery__item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  opacity: 0;
  transition: 0.6s;
}

.matcha-gallery__item-button{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #0C522E;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
  padding: 6px 30px 6px 22px;
  border-radius: 5.6rem;
  transition: 0.6s;
  opacity: 0;
  background: linear-gradient(96deg, #ECD8AA 1.69%, #D2B679 50%, #F7E4B9 74.16%, #D2B679 98.31%);
}
.matcha-gallery__buttonArea{
  text-align: center;
  margin: 34px auto 0; 
}
@media (min-width: 768px) {
  .matcha-gallery__buttonArea{
    display: none;
  }
}

@media (max-width: 767px) {
  .matcha-gallery__item-button.button-sp {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    opacity: 1;
    display: inline-block;
    padding: 7px 38px 7px 28px;
  }
}

.matcha-gallery__item-button::after{
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translate(0, -50%);
  width: 12px;
  height: 11px;
  background-image: url("https://lindt.itembox.cloud/item/crm/lindtdematcha/arrow_down2.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .matcha-gallery__item:hover {
    .matcha-gallery__item-button {
      opacity: 1;
    }
  }
  .matcha-gallery__item:hover::after {
    opacity: 1;
  }
}

.matcha-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
  transform: scale(1);
}

.matcha-gallery__item.w1 { width: 383px; }
.matcha-gallery__item.w2 { width: 416px; }
.matcha-gallery__item.w3 { width: 314px; }
.matcha-gallery__item.w4 { width: 416px; }
.matcha-gallery__item.w5 { width: 416px; }
.matcha-gallery__item.w6 { width: 416px; }
@media (max-width: 767px) {
  .matcha-gallery__item.w1 { width: 202px; }
  .matcha-gallery__item.w2 { width: 221px; }
  .matcha-gallery__item.w3 { width: 165px; }
  .matcha-gallery__item.w4 { width: 221px; }
  .matcha-gallery__item.w5 { width: 221px; }
  .matcha-gallery__item.w6 { width: 221px; }
}

.matcha-gallery__item.h1 { height: 380px; }
.matcha-gallery__item.h2 { height: 300px; }
.matcha-gallery__item.h3 { height: 418px; }
.matcha-gallery__item.h4 { height: 348px; }
.matcha-gallery__item.h5 { height: 376px; }
.matcha-gallery__item.h6 { height: 348px; }
@media (max-width: 767px) {
  .matcha-gallery__item.h1 { height: 202px; }
  .matcha-gallery__item.h2 { height: 160px; }
  .matcha-gallery__item.h3 { height: 222px; }
  .matcha-gallery__item.h4 { height: 185px; }
  .matcha-gallery__item.h5 { height: 200px; }
  .matcha-gallery__item.h6 { height: 185px; }
}

.matcha-gallery__item.y1 { margin-top: 22px; }
.matcha-gallery__item.y2 { margin-top: 132px; }
.matcha-gallery__item.y3 { margin-top: 0; }
.matcha-gallery__item.y4 { margin-top: 93px; }
.matcha-gallery__item.y5 { margin-top: 31px; }
.matcha-gallery__item.y6 { margin-top: 93px; }
@media (max-width: 767px) {
  .matcha-gallery__item.y1 { margin-top: 11.66px; }
  .matcha-gallery__item.y2 { margin-top: 69.96px; }
  .matcha-gallery__item.y3 { margin-top: 0; }
  .matcha-gallery__item.y4 { margin-top: 49.29px; }
  .matcha-gallery__item.y5 { margin-top: 16.43px; }
  .matcha-gallery__item.y6 { margin-top: 49.29px; }
}

.matcha-section {
  position: relative;
  background: var(--page-bg);
}

@media (min-width: 768px) {
  .matcha-section {
  height: 600vh;
  }
}

.matcha-inner {
  display: flex;
  min-height: 100svh;
}

@media (min-width: 768px) {
  .matcha-inner {
    position: sticky;
    top: 0;
    min-height: 100lvh;
  }
}

.matcha-mobile-sequence {
  display: none;
}

.left-column {
  width: 41.5%;
  padding: 12px 0 12px 0px;
}

.photo-stage {
  position: relative;
  height: calc(100vh - 24px);
  overflow: hidden;
}

.photo {
  position: absolute;
  inset: 0;
  transition: opacity 1.5s ease;
}

 @media (min-width: 768px) {
  .photo:not(.active){
    opacity: 0;
  }
 }

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo.photo-1 { z-index: 1; }
.photo.photo-2 { z-index: 2; }
.photo.photo-3 { z-index: 3; }
.photo.photo-4 { z-index: 4; }

.right-column {
  width: 58.5%;
  padding: 0 72px;
}

.right-panel {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 68px 0 48px;
  position: relative;
}

.right-top {
  text-align: right;
}

.mini-copy {
  color: #0C522E;
  text-align: right;
  font-feature-settings: 'palt' on;
  font-family: var(--jp-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: 0.84px;
  margin-bottom: 20px;
}

.main-title {
  font-family: var(--en-font);
  font-weight: 400;
  color: #0C522E;
  text-align: right;
  font-size: 80px;
  font-style: normal;
  line-height: 100%;
}
@media (max-width: 767px) {
  .main-title {
    font-size: 32px;
  }
}

#matchaSection .text-stage {
  min-height: 430px;
  position: absolute;
  left: 0;
  bottom: 60px;
  width: 100%;
}

#matchaSection .text-item {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background-image: url("https://lindt.itembox.cloud/item/crm/lindtdematcha/logo_matcha.svg");
  background-repeat: no-repeat;
  background-position: right bottom 69px;
  background-size: 120px;
} 

#matchaSection .text-stage .text-item:first-child {
  background-image: none;
}

.text-item {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transform: translateY(18px);
}
.text-item.active {
  opacity: 1;
  transform: none;
}

.eyebrow {
  color: #0C522E;
  font-family: var(--en-font);
  font-weight: 400;
  font-size: 14px;
  font-style: normal;
  line-height: 100%;
  opacity: 0.4;
  padding-bottom: 7px;
}

.heading {
  color: #0C522E;
  leading-trim: both;
  text-edge: cap;
  font-feature-settings: 'palt' on;
  font-family: var(--jp-font);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 2.4px;
  padding-bottom: 28px;
}
.heading sub{
  transform: translateY(3px);
  display: inline-block;
}

.subheading {
  color: #317450;
  leading-trim: both;
  text-edge: cap;
  font-feature-settings: 'palt' on;
  font-family: var(--jp-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 1.44px;
  margin-bottom: 40px;
  text-align: justify;
}

.desc {
  color: #0C522E;
  leading-trim: both;
  text-edge: cap;
  font-feature-settings: 'palt' on;
  font-family: var(--jp-font);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 1.28px;
  max-width: 420px;
  /* max-width: 60%; */
}
.desc span{
  display: block;
  font-size: 11px;
  line-height: 1em;
  padding-top: 30px;
}
@media (max-width: 767px) {
  .desc span{
    font-size: 12px;
  }
}

/* .bottom-line {
  height: 1px;
  background: #d3cec4;
} */

@media (max-width: 767px) {
  .matcha-inner {
    display: none;
  }

  .matcha-mobile-sequence {
    display: block;
  }

  .matcha-mobile-step {
    position: relative;
  }
  .matcha-mobile-step:first-child .matcha-mobile-copy .heading::after{
    display: none;
  }

  .matcha-mobile-photo {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100lvh;
    overflow: hidden;
    z-index: 1;
  }

  .matcha-mobile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .matcha-mobile-copy {
    position: relative;
    z-index: 2;
    margin-top: 0;
    background: #DFE7DB;
    min-height: auto;
    height: auto;
    padding: 39px 24px 92px;
  }

  .matcha-mobile-head {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-bottom: 229px;
  }

  .matcha-mobile-head .mini-copy {
    font-size: 12px;
    line-height: 220%;
    letter-spacing: 0.72px;
    margin-bottom: 2px;
  }

  .matcha-mobile-head .main-title {
    font-size: 32px;
    line-height: 0.95;
  }

  .matcha-mobile-body {
    margin-top: 0;
  }

  .matcha-mobile-copy .eyebrow {
    font-size: 12px;
    padding-bottom: 8px;
  }

  .matcha-mobile-copy .heading {
    font-size: 24px;
    line-height: 1.7;
    letter-spacing: 0;
    padding-bottom: 26px;
    position: relative;
  }
  .matcha-mobile-copy .heading::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 36px;
    width: 80px;
    height: 70px;
    background-image: url("https://lindt.itembox.cloud/item/crm/lindtdematcha/logo_matcha.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }

  .matcha-mobile-copy .subheading {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 1.2px;
    margin-bottom: 26px;
  }

  .matcha-mobile-copy .desc {
    max-width: none;
    font-size: 14px;
    line-height: 2.0;
    letter-spacing: 0;
  }style.css

  .matcha-mobile-copy .desc span {
    display: inline-block;
    margin-top: 14px;
    font-size: 12px;
    line-height: 1.8;
  }

  .matcha-mobile-copy .bottom-line {
    margin-top: 31px;
  }
}

.items-block {
  padding: 235px 61px 150px;
  background: var(--page-bg);
}
@media (max-width: 1100px) {
  .items-block {
    padding: 100px 20px 110px;
  }
}
@media (max-width: 767px) {
  .items-block {
    padding: 108px 24px 130px;
  }
}

.items-block__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.items-block__head {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 70px;
}
@media (max-width: 1100px) {
  .items-block__head {
    padding-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .items-block__head {
    padding-bottom: 128px;
  }
}

.items-block__head .section__title {
  color: #0C522E;
  text-align: center;
  font-feature-settings: 'palt' on;
  font-family: var(--jp-font);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 3.2px;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .items-block__head .section__title {
    font-size: 24px;
    letter-spacing: -1px;
    margin-bottom: 0;
  }
}

.items-block__head .section__title span {
  display: block;
  color: #0C522E;
  text-align: center;
  font-family: var(--en-font);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .items-block__head .section__title span {
    font-size: 30px;
    margin-top: 6px;
  }
}

.items-features {
  width: 100%;
}

.feature {
  padding: 80px 0 210px;
}
@media (max-width: 1100px) {
  .feature {
    padding: 56px 0 90px;
  }
}
@media (max-width: 767px) {
  .feature {
    padding: 0 0 130px;
  }
}
.feature:last-child {
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .feature:last-child {
    padding-bottom: 0;
  }
}

.feature__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  column-gap: 120px;
  align-items: start;
}
@media (max-width: 1100px) {
  .feature__inner {
    grid-template-columns: 1fr;
    row-gap: 34px;
  }
}
@media (max-width: 767px) {
  .feature__inner {
    row-gap: 56px;
  }
}

.feature__left {
  position: sticky;
  top: 60px;
  align-self: start;
}
@media (max-width: 1100px) {
  .feature__left {
    position: static;
    top: auto;
  }
}

.feature__title {
  margin: 0 0 44px;
  color: #0C522E;
  font-family: var(--en-font);
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
@media (max-width: 767px) {
  .feature__title {
    font-size: 40px;
    margin: 0 0 23px;
  }
}

.feature__lead {
  margin: 0 0 28px;
  color: #0C522E;
  font-feature-settings: 'palt' on;
  font-family: var(--jp-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: -1px;
}
@media (max-width: 1100px) {
  .feature__lead {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .feature__lead {
    font-size: 20px;
    line-height: 1.5;
  }
}

.feature__text {
  margin: 0;
  color: #0C522E;
  font-feature-settings: 'palt' on;
  font-family: var(--jp-font);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .feature__text {
    font-size: 13px;
    line-height: 190%;
  }
}

.feature__right {
  min-width: 0;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (max-width: 1100px) {
  .cards {
    gap: 43px;
  }
}
@media (max-width: 767px) {
  .cards {
    padding-left: 51px;
    position: relative;
  }
}
.title_sholder{
  display: none;
}
@media (max-width: 767px) {
  .title_sholder{
    display: block;
    position: absolute;
    font-family: var(--en-font);
    font-size: 12px;
    line-height: 1em;
    left: 14px;
    top: 0;
    transform: rotate(90deg);
    transform-origin: top left;
  }
  .title_sholder::after{
    content: "";
    display: inline-block;
    width: 32px;
    height: 2px;
    background: #0C522E;
    position: relative;
    transform: translate(6px, -2px);
    opacity: 0.1;
  }
}

.card {
  display: grid;
  grid-template-columns: minmax(0, 680px) 306px;
  column-gap: 28px;
  align-items: start;
}
@media (max-width: 1100px) {
  .card {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }
}


.card__media {
  overflow: hidden;
  background: #ddd;
}
.card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 526 / 366;
  object-fit: cover;
}

.card__body {
  padding-top: 6px;
  position: relative;
  align-self: end;
}
@media (max-width: 767px) {
  .card__body {
    padding-top: 0;
  }
}

.card__label {
  display: inline-block;
  margin-bottom: 17px;
  padding: 0 10px;
  color: #0C522E;
  font-feature-settings: 'palt' on;
  font-family: var(--jp-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 0.56px;
  background-image: url("https://lindt.itembox.cloud/item/crm/lindtdematcha/ic_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .card__label {
    font-size: 11.22px;
    padding: 0 6px;
    line-height: 20px;
    margin-bottom: 0;
    position: absolute;
    top: -50px;
    left: -16px;
  }
}
.card__label span {
  transform: translateY(5px);
  display: inline-block;
}

.card__title {
  margin: 0 0 19px;
  font-family: var(--jp-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.48px;
}
@media (max-width: 1100px) {
  .card__title {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .card__title {
    font-size: 18px;
    margin: 0 0 13px;
  }
}
.card__title sub{
  display: inline-block;
  transform: translateY(2px);
}

.card__text {
  margin: 0;
  color: #0C522E;
  font-feature-settings: 'palt' on;
  font-family: var(--jp-font);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.9px;
  text-align: justify;
}
@media (max-width: 767px) {
  .card__text {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  #lineup{
    padding-bottom: 0;
  }
}
.lineup-block {
  padding: 120px 62px 140px;
  background: var(--page-bg);
}
@media (max-width: 1100px) {
  .lineup-block {
    padding: 100px 20px 110px;
  }
}
@media (max-width: 767px) {
  .lineup-block {
    padding: 0 18px 84px;
  }
}

.lineup-block__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.lineup-block__head {
  text-align: center;
  margin-bottom: 74px;
}
@media (max-width: 767px) {
  .lineup-block__head {
    margin-bottom: 42px;
  }
}

.lineup-block__title {
  font-family: var(--en-font);
  color: #0C522E;
  text-align: center;
  font-family: var(--en-font);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .lineup-block__title {
    font-size: 32px;
  }
}

.lineup-block__sub {
  color: #0C522E;
  text-align: center;
  font-feature-settings: 'palt' on;
  font-family: var(--jp-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 1.12px;
}
@media (max-width: 767px) {
  .lineup-block__sub {
    margin-top: 6px;
    font-size: 12px;
  }
}

.lineup-block__group {
  margin-bottom: 76px;
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 36px;
}
.lineup-grid--gift {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 1100px) {
  .lineup-grid,
  .lineup-grid--gift {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 24px;
  }
}
@media (max-width: 767px) {
  .lineup-grid,
  .lineup-grid--gift {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 21px;
  }
}

.lineup-grid > .lineup-card:nth-child(4) {
  grid-column: 1 / 2;
}
@media (max-width: 1100px) {
  .lineup-grid > .lineup-card:nth-child(4) {
    grid-column: auto;
  }
}

.lineup-card {
  min-width: 0;
}

.lineup-card__link {
  display: block;
}

.lineup-card__date{
  position: absolute;
  right: 11px;
  top: 11px;
  background-color: #0C522E;
  padding: 3px 7px 4px 7px;
  color: white;
  font-weight: 500;
  font-size: 14px;
  border-radius: 2px;
}

@media (max-width: 767px) {
  .lineup-card__date{
    padding: 2px 4px;
    font-size: 10px;
    right: 7px;
    top: 7px;
  }
}

.lineup-card__imagewrap {
  position: relative;
  aspect-ratio: 1 / 0.69;
  background: #f6f6f4;
  overflow: hidden;
}
.lineup-card__imagewrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.24);
  z-index: 1;
  opacity: 0;
  transition: 0.6s;
}
@media (max-width: 767px) {
  .lineup-card__imagewrap::before  {
    display: none;
  }
}
@media (max-width: 767px) {
  .lineup-card__imagewrap::after  {
    content: "";
    position: absolute;
    z-index: 1;
    width: 18px;
    height: 18px;
    background-image: url("https://lindt.itembox.cloud/item/crm/lindtdematcha/btn_arrow_lineup_sp.svg");
    background-size: contain;
    background-repeat: no-repeat;
    right: 10px;
    bottom:10px;
  }
}

.lineup-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.45s ease;
}
.lineup-card__link:hover .lineup-card__image {
  transform: scale(1.035);
}
.lineup-card__link:hover .lineup-card__imagewrap::before,
.lineup-card__link:hover .lineup-card__buybtn {
  opacity: 1;
}

.lineup-card__buybtn {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 115px;
  height: 37px;
  padding: 0 23px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  font-family: var(--en-font);
  color: #0C522E;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 37px;
  letter-spacing: 0.72px;
  background-image: url("https://lindt.itembox.cloud/item/crm/lindtdematcha/bg_buybtn.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: 0.6s;
}
@media (max-width: 767px) {
  .lineup-card__buybtn {
    display: none;
  }
}

.lineup-card__meta {
  padding-top: 7px;
}
@media (max-width: 767px) {
  .lineup-card__meta {
    padding-top: 12px;
  }
}

.lineup-card__name {
  color: #38251A;
  font-feature-settings: 'palt' on;
  font-family: var(--jp-font);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 1.02px;
}
@media (max-width: 767px) {
  .lineup-card__name {
    font-size: 12px;
    line-height: 1.72;
  }
}

.lineup-card__price {
  margin-top: 1px;
  opacity: 0.5;
  color: #38251A;
  font-feature-settings: 'palt' on;
  font-family: var(--jp-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.26px;
}
@media (max-width: 767px) {
  .lineup-card__price {
    font-size: 11px;
  }
}

.lineup-subgroup {
  margin-top: 26px;
}
@media (max-width: 767px) {
  .lineup-subgroup {
    margin-top: 8px;
  }
}

.lineup-subgroup__title {
  padding-bottom: 12px;
  margin-bottom: 40px;
  color: #0C522E;
  font-family: var(--en-font);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  border-bottom: 1px solid rgba(0, 92, 47, 0.14);
}
@media (max-width: 1100px) {
  .lineup-subgroup__title {
    margin-bottom: 28px;
  }
}
@media (max-width: 767px) {
  .lineup-subgroup__title {
    font-size: 24px;
    padding-bottom: 12px;
    margin-bottom: 24px;
  }
}

.store-section {
  padding: 120px 24px 0;
}
@media (max-width: 1024px) {
  .store-section {
    padding: 96px 20px 0;
  }
}
@media (max-width: 767px) {
  .store-section {
    padding: 120px 18px 0;
  }
}

.store-section__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.store-section__head {
  margin-bottom: 72px;
}
@media (max-width: 767px) {
  .store-section__head {
    margin-bottom: 40px;
  }
}

.store-section__title {
  font-family: var(--en-font);
  color: #0C522E;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
@media (max-width: 767px) {
  .store-section__title {
    text-align: center;
    font-size: 32px;
  }
}

.store-section__sub {
  margin-top: 5px;
  color: #0C522E;
  font-feature-settings: 'palt' on;
  font-family: "Shippori Mincho";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 1.12px;
}
@media (max-width: 767px) {
  .store-section__sub {
    margin-top: 6px;
    font-size: 12px;
    text-align: center;
  }
}

.store-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 450px;
  gap: 100px;
  align-items: start;
}
@media (max-width: 1024px) {
  .store-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 767px) {
  .store-layout {
    display: flex;
    flex-direction: column-reverse;
  }
}

.store-accordion {
  border-top: 1px solid rgba(12, 90, 52, 0.12);
}
@media (max-width: 767px) {
  .store-accordion {
    width: 100%;
  }
}

.store-region {
  border-bottom: 1px solid rgba(12, 90, 52, 0.12);
}

.store-region__toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 11px 0 13px 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: inherit;
}
@media (max-width: 767px) {
  .store-region__toggle {
    gap: 16px;
    padding: 12px 0 14px 0;
  }
}

.store-region__area {
  display: inline-block;
  color: #38251A;
  font-family: var(--jp-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 190%;
  letter-spacing: 0.26px;
}
@media (max-width: 767px) {
  .store-region__area {
    font-size: 12px;
  }
}

.store-region__icon {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 999px;
  background: #0C522E;
}
.store-region__icon::before,
.store-region__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1.5px;
  background-image: url("https://lindt.itembox.cloud/item/crm/lindtdematcha/bg_shop_accordion_horizontal.png");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(-50%, -50%);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.store-region__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.store-region.is-open .store-region__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.3);
}

.store-region__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s ease;
}
.store-region.is-open .store-region__panel {
  grid-template-rows: 1fr;
}

.store-region__panel-inner {
  min-height: 0;
  overflow: hidden;
}

.store-region__list {
  list-style: none;
  padding: 0 0 36px;
  margin: 0;
}
.store-region__list li {
  color: #38251A;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* letter-spacing: 0.32px; */
  letter-spacing: -0.03em;
}
@media (max-width: 767px) {
  .store-region__list li {
    font-size: 14px;
    line-height: 130%;
  }
}
.store-region__list li + li {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .store-region__list li + li {
    margin-top: 12px;
  }
}

.signature-popup {
  position: sticky;
  top: 60px;
}
@media (max-width: 1024px) {
  .signature-popup {
    position: static;
  }
}
@media (max-width: 767px) {
  .signature-popup {
    width: 100%;
  }
}

.signature-popup__inner {
  background: #DFE7DB;
  padding: 24px 16px 28px;
}
@media (max-width: 767px) {
  .signature-popup__inner {
    padding: 16px;
  }
}

.signature-popup__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 10px;
}
.signature-popup__head h3 {
  font-family: var(--en-font);
  color: #0C522E;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
@media (max-width: 767px) {
  .signature-popup__head h3 {
    font-size: 18px;
  }
}
.signature-popup__head span {
  white-space: nowrap;
  color: #0C522E;
  text-align: right;
  font-feature-settings: 'palt' on;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 1.12px;
}
@media (max-width: 767px) {
  .signature-popup__head span {
    font-size: 11px;
  }
}

.signature-popup__slider {
  position: relative;
  display: grid;
  width: 100%;
}

.slide {
  grid-area: 1 / 1;
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.5s ease, visibility 1.5s ease;
  pointer-events: none;
}
.slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.slide img {
  width: 100%;
  aspect-ratio: 1 / 0.63;
  object-fit: cover;
  background: #dfe7ea;
}
.slide p {
  margin-top: 7px;
  color: #38251A;
  font-feature-settings: 'palt' on;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 1.02px;
}
@media (max-width: 767px) {
  .slide p {
    font-size: 13px;
  }
}
.slide > span {
  display: block;
  color: #38251A;
  font-feature-settings: 'palt' on;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.26px;
  margin-top: -5px;
  opacity: 0.5;
}
@media (max-width: 767px) {
  .slide > span {
    font-size: 11px;
  }
}

.dots {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  top: -42px;
  position: relative;
}
@media (max-width: 767px) {
  .dots {
    top: -30px;
  }
}

.dot {
  width: 8px;
  height: 8px;
  background: rgba(12, 90, 52, 0.22);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.dot.active {
  background: #0c5a34;
  transform: scale(1.05);
}

#footer {
  padding-top: 350px;
  text-align: center;
  position: relative;
}
@media (max-width: 767px) {
  #footer {
    padding-top: 160px;
  }
}

.footer-logo {
  text-align: center;
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .footer-logo {
    padding-bottom: 23px;
  }
}
.footer-logo a {
  display: inline-block;
}
@media (max-width: 767px) {
  .footer-logo img{
    width: 180px;
    height: auto;
  }
}

.footer-icons {
  display: flex;
  justify-content: center;
  column-gap: 20px;
  padding-bottom: 160px;
}
.footer-icon img{
  width: 20px;
  height: 20px;
}
@media (max-width: 767px) {
  .footer-icon img {
    width: 18px;
    height: 18px;
  }
}

.footer__back-to-top {
  position: absolute;
  transform: rotate(90deg);
  cursor: pointer;
  right: 94px;
  bottom: 178px;
  width: 162px;
  transform-origin: bottom right;
  font-size: 14px;
  text-align: left;
}
@media (max-width: 767px) {
  .footer__back-to-top {
      right: 38px;
      bottom: 172px;
  }
}
.footer__back-to-top p{
  margin: 0;
}
.footer__back-to-top a{
  font-family: var(--en-font);
  color: #38251A;
}
.footer__back-to-top .line {
  position: absolute;
  top: 60%;
  right: 0;
  width: 8rem;
  height: 1px;
  overflow: hidden;
  background-color: #B3B2A9;
}

.footer__copyright {
  color: #38251A;
  display: block;
  padding-bottom: 168px;
  font-family: var(--en-font);
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
  opacity: 0.5;
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .footer__copyright {
    padding-bottom: 140px;
    font-size: 10px;
  }
}
