@charset "UTF-8";
html {
  scroll-behavior: smooth; }

body {
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  background-color: #ffffff;
  overflow-x: hidden; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  color: #ffffff;
  z-index: 1000;
  height: 140px;
  transition: all 0.3s ease;
  transform: translateY(0); }
  @media (max-width: 1000px) {
    .header--hidden .nav .nav-list {
      top: 0 !important; } }
  .header--light {
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(10px);
    color: #2c2c2c; }
    .header--light .logo .logo_white {
      display: none !important; }
    .header--light .logo .logo_black {
      display: block !important; }
    .header--light .nav-list a {
      color: #000000; }
      .header--light .nav-list a:hover {
        color: #000000 !important; }
      .header--light .nav-list a::after {
        background-color: #000000 !important; }
    .header--light .cta-button {
      background-color: #000000 !important;
      color: #ffffff !important; }
      @media (max-width: 1000px) {
        .header--light .cta-button img {
          filter: brightness(0) invert(1); } }
    .header--light .language-switch .lang-current,
    .header--light .language-switch .lang-separator,
    .header--light .language-switch .lang-option {
      color: #000000 !important; }
    @media (max-width: 1000px) {
      .header--light .mobile-menu-btn span {
        background-color: #000000 !important; } }
  .header .header-container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
    display: flex;
    height: 100%;
    align-items: center; }
    @media (max-width: 768px) {
      .header .header-container {
        padding: 0 20px;
        justify-content: center; } }
  .header .logo {
    width: 110px;
    position: relative; }
    @media (max-width: 480px) {
      .header .logo {
        width: 90px; } }
    .header .logo img {
      width: 100%;
      height: auto; }
    .header .logo .logo_white {
      display: block; }
    .header .logo .logo_black {
      display: none; }
  .header .nav {
    margin-left: auto; }
    @media (max-width: 1000px) {
      .header .nav {
        position: absolute;
        right: 30px; } }
    @media (max-width: 768px) {
      .header .nav {
        right: 20px; } }
    .header .nav .nav-list {
      display: flex;
      gap: 70px; }
      @media (max-width: 1250px) {
        .header .nav .nav-list {
          gap: 20px; } }
      @media (max-width: 1000px) {
        .header .nav .nav-list {
          gap: 0;
          flex-direction: column;
          position: fixed;
          top: -60px;
          left: 0;
          right: 0;
          bottom: 0;
          width: 100vw;
          height: 100vh;
          background-color: rgba(44, 44, 44, 0.95);
          backdrop-filter: blur(10px);
          -webkit-backdrop-filter: blur(10px);
          transform: translateX(-100%);
          opacity: 0;
          visibility: hidden;
          transition: all 0.4s ease;
          justify-content: center;
          align-items: center;
          z-index: 1001;
          box-sizing: border-box; }
          .header .nav .nav-list.active {
            transform: translateX(0);
            opacity: 1;
            visibility: visible; } }
      @media (max-width: 768px) {
        .header .nav .nav-list {
          top: 0; } }
      @media (max-width: 1000px) {
        .header .nav .nav-list li {
          width: 100%; } }
      .header .nav .nav-list li a {
        font-weight: 600;
        position: relative;
        font-size: 16px; }
        @media (max-width: 1000px) {
          .header .nav .nav-list li a {
            font-size: 18px;
            text-align: center;
            padding: 20px 0;
            margin: auto;
            display: block; } }
        @media (max-width: 480px) {
          .header .nav .nav-list li a {
            font-size: 14px; } }
        .header .nav .nav-list li a:hover {
          color: white; }
          @media (max-width: 1000px) {
            .header .nav .nav-list li a:hover {
              color: #ffffff;
              transform: scale(1.05); } }
        .header .nav .nav-list li a::after {
          content: '';
          position: absolute;
          bottom: -5px;
          left: 0;
          width: 0;
          height: 2px;
          background-color: #ffffff;
          transition: width 0.3s ease; }
          @media (max-width: 1000px) {
            .header .nav .nav-list li a::after {
              display: none; } }
        .header .nav .nav-list li a:hover::after {
          width: 100%; }
      .header .nav .nav-list.active li a {
        color: #ffffff !important; }
  .header .cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: #ffffff;
    color: #2c2c2c;
    margin: 0 50px;
    font-weight: 600;
    border-radius: 26px;
    display: flex;
    align-items: center;
    gap: 8px; }
    @media (max-width: 1250px) {
      .header .cta-button {
        padding: 12px 18px; } }
    .header .cta-button:hover {
      background-color: #464646;
      transform: translateY(-2px); }
    @media (max-width: 1250px) {
      .header .cta-button {
        margin: 0 20px; } }
    @media (max-width: 1000px) {
      .header .cta-button {
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        padding: 0;
        margin-left: auto; } }
    @media (max-width: 768px) {
      .header .cta-button {
        position: absolute;
        margin: 0;
        right: 65px; } }
    @media (max-width: 480px) {
      .header .cta-button {
        width: 32px;
        height: 32px; } }
    .header .cta-button .cta-text {
      display: inline; }
      @media (max-width: 1000px) {
        .header .cta-button .cta-text {
          display: none; } }
    .header .cta-button .cta-icon {
      display: none;
      font-size: 18px; }
      @media (max-width: 1000px) {
        .header .cta-button .cta-icon {
          display: block; }
          .header .cta-button .cta-icon img {
            width: 20px; } }
      @media (max-width: 480px) {
        .header .cta-button .cta-icon img {
          width: 16px; } }
    .header .cta-button:hover {
      background-color: #f2f2f2; }
  .header .language-switch {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600; }
    @media (max-width: 1000px) {
      .header .language-switch {
        margin-right: 45px; } }
    @media (max-width: 768px) {
      .header .language-switch {
        position: absolute;
        left: 20px; } }
    @media (max-width: 480px) {
      .header .language-switch {
        font-size: 14px; } }
    .header .language-switch .lang-current {
      color: #ffffff;
      opacity: 1; }
    .header .language-switch .lang-separator {
      color: #ffffff;
      opacity: 0.6;
      margin: 0 4px; }
    .header .language-switch .lang-option {
      color: #ffffff;
      opacity: 0.3;
      transition: opacity 0.3s ease; }
      .header .language-switch .lang-option:hover {
        opacity: 1; }
  .header .mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer; }
    @media (max-width: 1000px) {
      .header .mobile-menu-btn {
        display: flex;
        z-index: 1001;
        position: relative; } }
    .header .mobile-menu-btn span {
      width: 25px;
      height: 1px;
      background-color: #ffffff;
      margin: 3px 0;
      transition: 0.3s;
      border-radius: 2px; }
    .header .mobile-menu-btn.active span:nth-child(1) {
      transform: rotate(-45deg) translate(-5px, 6px);
      background-color: #ffffff !important; }
    .header .mobile-menu-btn.active span:nth-child(2) {
      opacity: 0; }
    .header .mobile-menu-btn.active span:nth-child(3) {
      transform: rotate(45deg) translate(-3px, -5px);
      background-color: #ffffff !important; }
  @media (max-width: 768px) {
    .header {
      top: 0;
      height: 70px; }
      .header--hidden {
        transform: translateY(0); } }

.hero-swiper .swiper-pagination-wrapper .swiper-pagination {
  bottom: 25px !important;
  right: 30px;
  left: unset !important;
  text-align: right; }
  @media (max-width: 768px) {
    .hero-swiper .swiper-pagination-wrapper .swiper-pagination {
      bottom: 20px !important;
      right: 20px; } }
  .hero-swiper .swiper-pagination-wrapper .swiper-pagination .swiper-pagination-bullet {
    width: 70px;
    height: 3px;
    background-color: #ADADAD;
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 5px;
    border-radius: 0; }
    @media (max-width: 768px) {
      .hero-swiper .swiper-pagination-wrapper .swiper-pagination .swiper-pagination-bullet {
        width: 50px; } }
    @media (max-width: 480px) {
      .hero-swiper .swiper-pagination-wrapper .swiper-pagination .swiper-pagination-bullet {
        width: 25px; } }
    .hero-swiper .swiper-pagination-wrapper .swiper-pagination .swiper-pagination-bullet-active {
      background-color: #ffffff; }

img {
  max-width: 100%;
  height: auto; }

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease; }

ul {
  list-style: none; }

.container {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 30px;
  box-sizing: border-box; }

.section-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: left; }
  @media (max-width: 768px) {
    .section-title {
      margin-bottom: 30px; } }

.section-subtitle {
  text-align: left;
  font-size: 14px;
  margin-bottom: 108px;
  line-height: 40px; }
  @media (max-width: 1000px) {
    .section-subtitle {
      margin-bottom: 60px; } }
  @media (max-width: 480px) {
    .section-subtitle {
      margin-bottom: 20px; } }

.hero {
  height: 100vh;
  overflow: hidden;
  position: relative; }
  .hero .hero-swiper {
    width: 100%;
    height: 100%; }
  .hero .hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: opacity 1s ease-in-out; }
    .hero .hero-slide::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.3);
      z-index: 1; }
  .hero .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 2;
    width: 90%;
    max-width: 800px; }
    .hero .hero-content .hero-title {
      font-size: 4rem;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); }
      @media (max-width: 768px) {
        .hero .hero-content .hero-title {
          font-size: 2.5rem; } }
      @media (max-width: 480px) {
        .hero .hero-content .hero-title {
          font-size: 2rem; } }
    .hero .hero-content .hero-subtitle {
      font-size: 1.2rem;
      margin-bottom: 30px;
      line-height: 1.6;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); }
      @media (max-width: 768px) {
        .hero .hero-content .hero-subtitle {
          font-size: 1rem; } }
    .hero .hero-content .hero-cta {
      display: inline-block;
      padding: 15px 30px;
      background-color: #ffffff;
      color: #2c2c2c;
      text-decoration: none;
      border-radius: 4px;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); }
      .hero .hero-content .hero-cta:hover {
        background-color: #f2f2f2;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); }

.concept {
  padding: 250px 0 20px;
  background-color: #ffffff;
  max-width: 1260px;
  margin: auto; }
  @media (max-width: 1000px) {
    .concept {
      padding: 100px 0 20px; } }
  @media (max-width: 480px) {
    .concept {
      padding-top: 60px; } }
  .concept .section-title {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto; }
  .concept .concept-content {
    margin-bottom: 250px; }
    @media (max-width: 1000px) {
      .concept .concept-content {
        margin-bottom: 100px; } }
    @media (max-width: 480px) {
      .concept .concept-content {
        margin-bottom: 60px; } }
    .concept .concept-content .concept-text {
      margin: auto auto 250px;
      max-width: 700px; }
      @media (max-width: 1000px) {
        .concept .concept-content .concept-text {
          margin-bottom: 100px; } }
      @media (max-width: 480px) {
        .concept .concept-content .concept-text {
          margin-bottom: 60px; } }
      .concept .concept-content .concept-text p {
        font-size: 14px;
        line-height: 40px;
        margin-bottom: 50px; }
        @media (max-width: 1000px) {
          .concept .concept-content .concept-text p {
            margin-bottom: 20px; } }
        .concept .concept-content .concept-text p:last-child {
          margin-bottom: 0; }
    .concept .concept-content .concept-image {
      max-width: 840px;
      margin: auto; }
      .concept .concept-content .concept-image img {
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
  .concept .commit-content {
    max-width: 1160px;
    margin: auto auto 220px; }
    @media (max-width: 1000px) {
      .concept .commit-content {
        display: flex;
        margin-bottom: 100px; } }
    @media (max-width: 768px) {
      .concept .commit-content {
        flex-direction: column; } }
    @media (max-width: 480px) {
      .concept .commit-content {
        margin-bottom: 60px; } }
    .concept .commit-content .commit-text {
      width: 50%; }
      @media (max-width: 768px) {
        .concept .commit-content .commit-text {
          width: 100%; } }
      .concept .commit-content .commit-text .commit-title {
        font-size: 20px;
        margin-bottom: 32px; }
        @media (max-width: 1000px) {
          .concept .commit-content .commit-text .commit-title {
            margin-bottom: 20px; } }
      .concept .commit-content .commit-text .commit-description p {
        font-size: 12px;
        line-height: 40px;
        margin-bottom: 40px; }
        @media (max-width: 1000px) {
          .concept .commit-content .commit-text .commit-description p {
            margin-bottom: 20px; } }
        .concept .commit-content .commit-text .commit-description p:last-child {
          margin-bottom: 0; }
    .concept .commit-content .commit-image {
      width: 40%; }
      @media (max-width: 1000px) {
        .concept .commit-content .commit-image {
          width: calc(50% - 40px); } }
      @media (max-width: 768px) {
        .concept .commit-content .commit-image {
          width: 300px; } }
    .concept .commit-content.tl .commit-image {
      margin: -40px 0 0 auto; }
      @media (max-width: 1000px) {
        .concept .commit-content.tl .commit-image {
          margin-top: 0; } }
      @media (max-width: 768px) {
        .concept .commit-content.tl .commit-image {
          margin: 40px auto 0; } }
    @media (max-width: 768px) {
      .concept .commit-content.tr {
        flex-direction: column-reverse; } }
    .concept .commit-content.tr .commit-text {
      margin: -40px 0 0 auto; }
      @media (max-width: 1000px) {
        .concept .commit-content.tr .commit-text {
          margin-top: 0; } }
    @media (max-width: 768px) {
      .concept .commit-content.tr .commit-image {
        margin: 40px auto 0; } }

.full-img {
  width: 100%;
  height: 1460px;
  background-image: url("./../img/full.jpg");
  background-size: cover;
  background-position: center; }
  @media (max-width: 1000px) {
    .full-img {
      padding-top: 100%;
      height: auto; } }

.products {
  padding: 250px 0; }
  @media (max-width: 1000px) {
    .products {
      padding: 100px 0 50px; } }
  @media (max-width: 480px) {
    .products {
      padding: 60px 0 10px; } }
  .products.tea-products {
    padding: 0; }
    @media (max-width: 1000px) {
      .products.tea-products {
        padding: 50px 0 0; } }
  .products-container {
    max-width: 1320px;
    margin: auto; }
    .products-container .section-title {
      margin-bottom: 30px; }
  .products .product-grid {
    display: flex;
    gap: 18px;
    margin-bottom: 140px;
    margin-left: 315px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 12px; }
    @media (max-width: 1000px) {
      .products .product-grid {
        margin: 0 0 80px; } }
    @media (max-width: 480px) {
      .products .product-grid {
        margin-bottom: 40px; } }
    .products .product-grid .product-item {
      flex: 0 0 300px;
      background-color: #ffffff;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      transform: translateY(0); }
      @media (max-width: 480px) {
        .products .product-grid .product-item {
          flex: 0 0 180px; } }
      .products .product-grid .product-item .product-image {
        overflow: hidden;
        margin-bottom: 45px; }
        @media (max-width: 1000px) {
          .products .product-grid .product-item .product-image {
            margin-bottom: 20px; } }
        @media (max-width: 480px) {
          .products .product-grid .product-item .product-image {
            margin-bottom: 12px; } }
        .products .product-grid .product-item .product-image img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.3s ease; }
      .products .product-grid .product-item:hover .product-image img {
        transform: scale(1.1); }
      .products .product-grid .product-item .product-name {
        font-size: 12px;
        margin-bottom: 12px;
        font-weight: 600; }
      .products .product-grid .product-item .product-description {
        font-size: 10px;
        margin-bottom: 25px; }
        @media (max-width: 480px) {
          .products .product-grid .product-item .product-description {
            margin-bottom: 15px; } }
      .products .product-grid .product-item .product-price {
        font-size: 11px;
        font-weight: 600; }
  .products .product-cta {
    width: 257px;
    height: 50px;
    border: #000 solid 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 26px;
    margin-left: auto;
    background: #FFF; }
    @media (max-width: 480px) {
      .products .product-cta {
        margin-right: auto; } }
    .products .product-cta:hover {
      background: #000;
      color: #FFF; }

.store-info {
  padding: 190px 0 270px; }
  @media (max-width: 1000px) {
    .store-info {
      padding: 100px 0; } }
  .store-info-container {
    max-width: 1020px;
    margin: auto; }
  .store-info .store-content {
    display: flex;
    align-items: center; }
    @media (max-width: 768px) {
      .store-info .store-content {
        flex-direction: column; } }
    .store-info .store-content .store-details {
      width: 50%;
      display: flex;
      flex-direction: column;
      padding-left: 67px; }
      @media (max-width: 1000px) {
        .store-info .store-content .store-details {
          width: 70%;
          padding-left: 40px; } }
      @media (max-width: 768px) {
        .store-info .store-content .store-details {
          width: 100%;
          padding-left: 0; } }
      .store-info .store-content .store-details .store-info-item {
        display: flex;
        margin-bottom: 40px; }
        @media (max-width: 768px) {
          .store-info .store-content .store-details .store-info-item {
            margin-bottom: 20px; } }
        .store-info .store-content .store-details .store-info-item h3 {
          font-size: 14px;
          font-weight: 600;
          min-width: 80px; }
        .store-info .store-content .store-details .store-info-item p {
          font-size: 13px;
          font-weight: 600; }
        .store-info .store-content .store-details .store-info-item:last-child {
          margin-bottom: 0; }
  .store-info .store-image-container {
    width: 50%;
    padding: 0 80px; }
    @media (max-width: 1000px) {
      .store-info .store-image-container {
        padding: 0;
        width: 30%; } }
    @media (max-width: 768px) {
      .store-info .store-image-container {
        width: 100%;
        margin-bottom: 40px; } }
    .store-info .store-image-container .store-main-image {
      margin-bottom: 20px;
      cursor: pointer;
      overflow: hidden;
      transition: transform 0.3s ease; }
      .store-info .store-image-container .store-main-image:hover {
        transform: scale(1.02); }
      .store-info .store-image-container .store-main-image img {
        width: 100%;
        height: 300px;
        object-fit: cover; }
    .store-info .store-image-container .store-thumbnails {
      display: flex;
      gap: 3px; }
      .store-info .store-image-container .store-thumbnails .thumbnail-item {
        min-width: calc((100% - 9px) / 4);
        overflow: hidden;
        cursor: pointer;
        opacity: 1;
        transition: opacity 0.3s ease, transform 0.3s ease;
        position: relative; }
        .store-info .store-image-container .store-thumbnails .thumbnail-item::before {
          content: "";
          position: absolute;
          width: 100%;
          height: 100%;
          background-color: rgba(0, 0, 0, 0.5); }
        .store-info .store-image-container .store-thumbnails .thumbnail-item.active::before {
          display: none; }
        .store-info .store-image-container .store-thumbnails .thumbnail-item img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
  .store-info .store-map {
    margin: 140px 0 0; }
    @media (max-width: 768px) {
      .store-info .store-map {
        margin: 40px 0 0; } }
    .store-info .store-map #map {
      width: 100%;
      height: 450px;
      overflow: hidden; }

.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center; }
  .image-modal.active {
    display: flex; }
  .image-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); }
  .image-modal .modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 2001; }
  .image-modal .modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center; }
    .image-modal .modal-close:hover {
      opacity: 0.7; }
  .image-modal #modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px; }

.news {
  padding: 70px 0;
  background-color: #5A5A5A; }
  @media (max-width: 1000px) {
    .news {
      padding: 40px 0; } }
  .news-container {
    max-width: 1020px;
    margin: auto; }
  .news .section-title {
    color: #ffffff; }
  .news-list {
    margin-bottom: 60px; }
  .news-item {
    display: flex;
    padding: 34px 15px;
    color: #ffffff;
    border-bottom: 1px solid #ffffff; }
    @media (max-width: 480px) {
      .news-item {
        flex-wrap: wrap;
        flex-direction: column; } }
  .news-category {
    min-width: 100px;
    max-width: 100px;
    height: 25px;
    border-radius: 26px;
    background-color: #ffffff;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-right: 47px; }
  .news-title {
    font-size: 14px;
    margin-right: 47px;
    flex: 1; }
    @media (max-width: 480px) {
      .news-title {
        width: 100%;
        margin: 6px 0; } }
  .news-date {
    font-size: 14px; }
    @media (max-width: 480px) {
      .news-date {
        width: 100%;
        text-align: right; } }
  .news-cta {
    width: 257px;
    height: 50px;
    border: #ffffff solid 1px;
    background-color: #5A5A5A;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 26px;
    margin-left: auto; }
    @media (max-width: 480px) {
      .news-cta {
        margin-right: auto; } }
    .news-cta:hover {
      background: #ffffff;
      color: inherit; }

.media {
  padding: 250px 0; }
  @media (max-width: 1000px) {
    .media {
      padding: 100px 0; } }
  .media-container {
    max-width: 1020px;
    margin: auto; }
  .media .section-title {
    text-align: center; }
  .media-description {
    text-align: center;
    line-height: 40px;
    font-size: 14px; }
    @media (max-width: 480px) {
      .media-description {
        text-align: left; } }
  .media-list {
    margin: 140px 0 120px;
    display: flex;
    gap: 27px; }
    @media (max-width: 768px) {
      .media-list {
        margin: 40px 0;
        flex-wrap: wrap; } }
    .media-list .media-item {
      flex: 0 0 calc((100% - 81px) / 4); }
      @media (max-width: 768px) {
        .media-list .media-item {
          flex: 0 0 calc((100% - 27px) / 2); } }
      .media-list .media-item img {
        width: 100%;
        height: auto;
        object-fit: cover; }
  .media-cta {
    width: 257px;
    height: 50px;
    border: #000 solid 1px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 26px;
    margin: auto;
    background: #000; }

.footer_bg {
  width: 100%;
  height: 788px;
  background-image: url("./../img/footer_bg.jpg");
  background-size: cover;
  background-position: center; }
  @media (max-width: 1000px) {
    .footer_bg {
      height: 500px; } }
  @media (max-width: 768px) {
    .footer_bg {
      height: 400px; } }
  @media (max-width: 480px) {
    .footer_bg {
      height: 250px; } }

.footer {
  background-color: #ffffff;
  padding: 70px 0 25px; }
  .footer .footer-content {
    max-width: 1320px;
    margin: auto;
    display: flex; }
    @media (max-width: 768px) {
      .footer .footer-content {
        flex-direction: column; } }
  .footer .footer-logo {
    width: 177px; }
    @media (max-width: 768px) {
      .footer .footer-logo {
        margin: auto; } }
    .footer .footer-logo h3 {
      width: 140px;
      margin: auto; }
    .footer .footer-logo .social-icons {
      display: flex;
      gap: 12px;
      margin-top: 20px; }
      .footer .footer-logo .social-icons .social-icon {
        width: calc((100% - 36px) / 4); }
  .footer .footer-nav {
    display: flex;
    gap: 65px;
    margin-left: auto; }
    @media (max-width: 1250px) {
      .footer .footer-nav {
        gap: 30px; } }
    @media (max-width: 768px) {
      .footer .footer-nav {
        width: 100%;
        margin-top: 40px;
        flex-direction: column; } }
    .footer .footer-nav .footer-nav-column {
      width: 220px;
      margin-left: auto; }
      @media (max-width: 1000px) {
        .footer .footer-nav .footer-nav-column {
          width: 150px; } }
      @media (max-width: 768px) {
        .footer .footer-nav .footer-nav-column {
          width: auto;
          margin: auto; } }
      .footer .footer-nav .footer-nav-column ul li {
        font-size: 13px;
        margin-bottom: 30px; }
        .footer .footer-nav .footer-nav-column ul li a {
          display: block; }
        .footer .footer-nav .footer-nav-column ul li > ul {
          margin-top: 15px;
          padding-left: 20px; }
          .footer .footer-nav .footer-nav-column ul li > ul > li {
            margin-bottom: 15px; }
            .footer .footer-nav .footer-nav-column ul li > ul > li a {
              position: relative;
              display: flex;
              align-items: center; }
              .footer .footer-nav .footer-nav-column ul li > ul > li a::before {
                content: "▶︎";
                font-size: 10px;
                margin-right: 4px; }
  .footer .footer-bottom {
    margin-top: 34px; }
    .footer .footer-bottom p {
      font-size: 11px;
      text-align: right; }

@media (max-width: 480px) {
  .container {
    padding: 0 20px; }

  .nav-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px; }

  .product-grid {
    grid-template-columns: 1fr; }

  .store-details {
    grid-template-columns: 1fr; } }
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.fade-in-up {
  animation: fadeInUp 0.6s ease-out; }

html {
  scroll-behavior: smooth; }

.product-item,
.concept-image img,
.wagashi-images img,
.tea-image img,
.store-image img {
  transition: transform 0.3s ease, box-shadow 0.3s ease; }

.concept-image img:hover,
.wagashi-images img:hover,
.tea-image img:hover,
.store-image img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); }

/*# sourceMappingURL=main.css.map */
