@charset "UTF-8";
/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: #fff;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 6%;
  border-bottom: 1px solid #e5e5e5;
}

.logo {
  text-decoration: none;
  color: #000;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: .05em;
  margin-right: 50px;
}

img.header-logo-02 {
  max-height: 55px;
}

/* Desktop nav */
.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  letter-spacing: .18em;
  white-space: nowrap;
}

/* Hamburger (hidden on desktop) */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #000;
  margin: 5px auto;
  -webkit-transition: opacity .2s ease, -webkit-transform .2s ease;
  transition: opacity .2s ease, -webkit-transform .2s ease;
  transition: transform .2s ease, opacity .2s ease;
  transition: transform .2s ease, opacity .2s ease, -webkit-transform .2s ease;
}

/* SLIDER */
.slider {
  position: relative;
  height: 100svh;
  margin-top: 72px;
  overflow: hidden;
}

.slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-transition: opacity 1.6s ease;
  transition: opacity 1.6s ease;
}

.slides img.active {
  opacity: 1;
}

.slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 600px at 25% 35%, rgba(0, 0, 0, 0.35), transparent 60%), -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.65)), to(rgba(0, 0, 0, 0.15)));
  background: radial-gradient(900px 600px at 25% 35%, rgba(0, 0, 0, 0.35), transparent 60%), linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.15));
}

.slider-content {
  position: absolute;
  bottom: 14%;
  left: 8%;
  color: #fff;
  z-index: 2;
  max-width: 560px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: .22em;
  opacity: .75;
  margin: 0 0 10px;
}

h1 {
  font-size: clamp(38px, 6px, 72px);
  font-weight: 400;
  margin: 0;
  line-height: 1.05;
}

/* dots */
.dots {
  position: absolute;
  left: 8%;
  bottom: 8%;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0;
  cursor: pointer;
}

.dot.active {
  background: #fff;
}

/* ========== Mobile ========== */
@media (max-width: 900px) {
  .site-header {
    padding: 0 5%;
  }
  .logo {
    font-size: 26px;
  }
  /* show hamburger */
  .nav-toggle {
    display: block;
  }
  /* mobile drawer */
  .nav {
    position: fixed;
    top: 72px;
    right: 0;
    width: 88px;
    height: calc(100svh - 72px);
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding: 14px 0;
    border-left: 1px solid #eee;
    -webkit-transform: translateX(105%);
            transform: translateX(105%);
    -webkit-transition: -webkit-transform .25s ease;
    transition: -webkit-transform .25s ease;
    transition: transform .25s ease;
    transition: transform .25s ease, -webkit-transform .25s ease;
  }
  .nav a {
    padding: 14px 18px;
    font-size: 13px;
    letter-spacing: .16em;
    border-bottom: 1px solid #f2f2f2;
  }
  /* open state */
  .site-header.is-open .nav {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  /* slider text */
  .slider-content {
    left: 6%;
    bottom: 16%;
  }
  .eyebrow {
    font-size: 11px;
  }
  h1 {
    font-size: clamp(34px, 9px, 52px);
  }
  .dots {
    left: 6%;
    bottom: 9%;
  }
  .dot {
    width: 10px;
    height: 10px;
  }
}

/* COMPANY SECTION (connects below hero) */
.company {
  background: #fff;
  padding: 96px 0 110px;
}

.company-inner {
  width: 1180px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.05fr .95fr;
      grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.company-title {
  text-align: left;
  margin: 0 0 18px;
  font-size: 30px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: .12em;
  color: #1b6a5c;
}

.company-copy {
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 2.0;
  font-style: italic;
  color: #1b6a5c;
  max-width: 54ch;
}

.company-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 56px;
  padding: 0 44px;
  border: 1px solid rgba(0, 0, 0, 0.55);
  color: #000;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: .02em;
  background: transparent;
}

.company-btn:hover {
  border-color: #000;
}

.company-map {
  position: relative;
  min-height: 360px;
}

.map-img {
  width: 100%;
  height: auto;
  display: block;
  opacity: .95;
}

/* Pin位置: だいたい島根（松江）あたり */
.map-pin {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #3aa874;
  left: 42%;
  top: 62%;
  -webkit-box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
          box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  border: 1px solid rgba(58, 168, 116, 0.45);
}

/* Make the transition from hero to white section feel intentional */
.slider {
  -webkit-box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
          box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

/* Responsive company */
@media (max-width: 900px) {
  .company {
    padding: 72px 0 84px;
  }
  .company-inner {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 32px;
  }
  .company-title {
    font-size: 26px;
  }
  .company-copy {
    font-size: 16px;
    line-height: 1.9;
  }
  .company-map {
    min-height: 280px;
  }
  .map-pin {
    left: 44%;
    top: 64%;
  }
}

/* MATCHA SECTION */
.matcha {
  background: #0b0f0c;
  color: #fff;
  padding: 110px 0;
}

.matcha-inner {
  width: 88px;
  margin: 0 auto;
}

.matcha-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.matcha-title {
  margin: 0 0 8px;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: .02em;
}

.matcha-lead {
  margin: 0;
  max-width: 78ch;
  opacity: .82;
  line-height: 1.9;
  font-size: 16px;
}

.ghost-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .18em;
  white-space: nowrap;
}

.ghost-btn:hover {
  border-color: #fff;
}

.matcha-body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.05fr .95fr;
      grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.matcha-media {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  -webkit-box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
          box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
}

.matcha-media img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.matcha-cards .subttl {
  margin: 0 0 16px;
  font-size: 14px;
  letter-spacing: .22em;
  opacity: .75;
  font-weight: 400;
}

.grade-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  margin-bottom: 14px;
}

.grade-kicker {
  font-size: 14px;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.grade-note {
  font-size: 13px;
  opacity: .78;
  margin-bottom: 10px;
}

.grade-copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  opacity: .9;
}

/* LINE UP */
.lineup {
  background: #fff;
  padding: 92px 0 120px;
}

.lineup-inner {
  width: 88px;
  margin: 0 auto;
}

.lineup-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  border-bottom: 1px solid #eee;
  padding-bottom: 18px;
}

.lineup-title {
  margin: 0 0 8px;
  font-size: 30px;
  letter-spacing: .14em;
  font-weight: 400;
}

.lineup-sub {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: .22em;
  color: #2c6e5f;
}

.lineup-copy {
  margin: 0;
  max-width: 78ch;
  line-height: 1.95;
  color: #333;
}

.viewall {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  letter-spacing: .08em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  padding-bottom: 2px;
  white-space: nowrap;
}

.viewall:hover {
  border-bottom-color: #000;
}

.products {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.p-card {
  text-decoration: none;
  color: #000;
  border: 1px solid #eee;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  -webkit-box-shadow: 0 10px 32px rgba(0, 0, 0, 0.06);
          box-shadow: 0 10px 32px rgba(0, 0, 0, 0.06);
  -webkit-transition: -webkit-transform .18s ease, -webkit-box-shadow .18s ease;
  transition: -webkit-transform .18s ease, -webkit-box-shadow .18s ease;
  transition: transform .18s ease, box-shadow .18s ease;
  transition: transform .18s ease, box-shadow .18s ease, -webkit-transform .18s ease, -webkit-box-shadow .18s ease;
}

.p-card:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 16px 42px rgba(0, 0, 0, 0.1);
          box-shadow: 0 16px 42px rgba(0, 0, 0, 0.1);
}

.p-img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #f6f6f6, #ffffff);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-img img {
  max-width: 78%;
  max-height: 78%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.p-name {
  padding: 14px 14px 0;
  font-size: 14px;
  letter-spacing: .06em;
}

.p-desc {
  padding: 6px 14px 16px;
  font-size: 13px;
  color: #444;
  line-height: 1.6;
}

/* responsive */
@media (max-width: 900px) {
  .matcha {
    padding: 86px 0;
  }
  .matcha-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .matcha-title {
    font-size: 34px;
  }
  .matcha-body {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 26px;
  }
  .products {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .products {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

/* TILES (paper-like blocks) */
.tiles {
  background: #fff;
  padding: 0;
}

.tiles-grid {
  width: 92vw;
  margin: 120px auto 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-auto-rows: 28vw;
  gap: 0;
  border-top: 1px solid #eee;
}

.tile {
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
}

/* subtle paper feel */
.tile-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background: radial-gradient(1000px 400px at 20% 10%, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0) 60%), -webkit-gradient(linear, left top, left bottom, from(#f7f3ea), to(#f2efe6));
  background: radial-gradient(1000px 400px at 20% 10%, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0) 60%), linear-gradient(180deg, #f7f3ea, #f2efe6);
}

.tile-text::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 6px 6px;
  opacity: .12;
  pointer-events: none;
}

.tile-title {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: #1b6a5c;
  letter-spacing: .02em;
}

.tile-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 56px;
  padding: 0 44px;
  border: 1px solid rgba(0, 0, 0, 0.45);
  color: #000;
  text-decoration: none;
  font-size: 18px;
  background: transparent;
}

.tile-btn:hover {
  border-color: #000;
}

.tile-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

/* NEWS */
.news {
  background: #fff;
  padding: 90px 0 120px;
}

.news-inner {
  width: 88vw;
  margin: 0 auto;
}

.news-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  border-bottom: 1px solid #eee;
  padding-bottom: 14px;
}

.news-title {
  margin: 0;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: .14em;
}

.news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.news-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 120px 1fr;
      grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  color: #000;
}

.news-item:hover .news-text {
  text-decoration: underline;
}

.news-date {
  font-size: 14px;
  color: #2c6e5f;
  letter-spacing: .06em;
}

.news-text {
  font-size: 16px;
  line-height: 1.7;
  color: #222;
}

@media (max-width: 900px) {
  .tiles-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-auto-rows: minmax(240px, 62px);
  }
  .tile-title {
    font-size: 24px;
  }
  .tile-btn {
    height: 52px;
    font-size: 16px;
    padding: 0 34px;
  }
  .news {
    padding: 72px 0 96px;
  }
  .news-item {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 6px;
  }
  .news-date {
    font-size: 13px;
  }
  .news-text {
    font-size: 15px;
  }
}

:root{
    --lux-ink: rgba(255,255,255,.92);
    --lux-ink-dim: rgba(255,255,255,.72);
    --lux-line: rgba(255,255,255,.22);
  }

  .lux-footer{
    position: relative;
    overflow: hidden;
    min-height: 520px;
    background: #0b0f0d; /* fallback */
    display: grid;
    place-items: center;
    padding: 84px 20px 56px;
  }

  /* Tea-field background + slow zoom */
  .lux-footer__bg{
    position: absolute;
    inset: -40px;            /* zoom margin */
    background-image: url("/assets/site_template/theme-8/img/top/slider-02/tea-field-footer.jpg"); /* ★ここをあなたのパスに変更 */
    background-size: cover;
    background-position: center;
    filter: saturate(0.95) contrast(1.05) brightness(0.75);
    transform: scale(1.06);
    animation: luxSlowZoom 26s ease-in-out infinite alternate;
    will-change: transform;
  }

  /* Dark overlay to ensure readability & luxury vibe */
  .lux-footer::before{
    content:"";
    position:absolute;
    inset:0;
    background:
      radial-gradient(1200px 420px at 50% 35%, rgba(0,0,0,.35), rgba(0,0,0,.72) 70%),
      linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.78));
    pointer-events:none;
    opacity: 0.7;
    z-index: 1;
  }

  .lux-footer__content{
    position: relative;
    z-index: 2;
    width: min(980px, 100%);
    text-align: center;
  }

  .lux-footer__brand{
    margin-bottom: 18px;
  }

  .lux-footer__logo{
    font-family: ui-serif, "Times New Roman", Georgia, "Noto Serif", serif;
    font-size: clamp(34px, 5vw, 56px);
    letter-spacing: .12em;
    color: var(--lux-ink);
    line-height: 1.05;
    text-transform: uppercase;
  }

  .lux-footer__tagline{
    margin-top: 10px;
    color: var(--lux-ink);
    font-size: 16px;
    letter-spacing: .06em;
  }

  .lux-footer__sub{
    margin-top: 6px;
    color: var(--lux-ink-dim);
    font-size: 14px;
    letter-spacing: .08em;
  }

  .lux-footer__regions{
    margin: 18px auto 22px;
    color: var(--lux-ink-dim);
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .lux-footer__links{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 22px;
    margin: 18px 0 22px;
  }

  .lux-footer__link{
    color: var(--lux-ink);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    backdrop-filter: blur(6px);
    background: rgba(0,0,0,.16);
    transition: transform .25s ease, background .25s ease, border-color .25s ease;
  }
  .lux-footer__link:hover{
    transform: translateY(-1px);
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.30);
  }

  .lux-footer__social{
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 10px 0 26px;
  }

  .lux-footer__icon{
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--lux-ink);
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(0,0,0,.18);
    backdrop-filter: blur(6px);
    transition: transform .25s ease, background .25s ease, border-color .25s ease;
    text-decoration: none;
  }
  .lux-footer__icon:hover{
    transform: translateY(-1px);
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.30);
  }

  .lux-footer__fine{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid var(--lux-line);
    color: rgba(255,255,255,.65);
    font-size: 12px;
    letter-spacing: .08em;
  }
  .lux-footer__fineLink{
    color: rgba(255,255,255,.75);
    text-decoration: none;
  }
  .lux-footer__fineLink:hover{
    text-decoration: underline;
  }
  .lux-footer__sep{
    opacity: .55;
  }

  @keyframes luxSlowZoom{
    0%   { transform: scale(1.06) translate3d(0,0,0); }
    100% { transform: scale(1.14) translate3d(-1.5%, -1%, 0); }
  }

  /* Reduced motion support */
  @media (prefers-reduced-motion: reduce){
    .lux-footer__bg{ animation: none; }
    .lux-footer__link, .lux-footer__icon{ transition: none; }
  }
/*# sourceMappingURL=style2.css.map */