body {
  background: #E83828;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
    line-height: 1.6;
  }
}

@media screen and (max-width: 768px) {
  .no-mobile {
    display: none;
  }
}

/* ================================
 * * Button
 * * ================================ */
.btn {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background-color: #000;
  color: #fff;
  text-decoration: none;
  height: 60px;
  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;
  border-radius: 86px;
  width: auto;
  padding: 0 40px;
  gap: 10px;
}

.btn-primary-line {
  background-color: #000;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  height: 60px;
  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;
  border-radius: 86px;
  width: auto;
  padding: 0 40px;
  gap: 10px;
}

a {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
a:hover {
  opacity: 0.5;
}

/* ================================
 * * Header and Navigation
 * * ================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  -webkit-transition: background-color 0.6s ease;
  transition: background-color 0.6s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  header {
    height: 50px;
  }
}
header.scrolled {
  background-color: #E83828;
}
header a img {
  height: 26px;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  header a img {
    width: 150px;
  }
}
header .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  header .nav {
    display: none;
  }
}
header .lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  height: 70px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 20px;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  header .lang {
    display: none;
  }
}
header .lang a {
  color: #ffffff;
  text-decoration: none;
}
header .contact {
  background-color: #000000;
  color: #fff;
  text-decoration: none;
  padding: 0 20px;
  border-radius: 0 0 0 20px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  header .contact {
    display: none;
  }
}

/* ================================
 * * Mobile Navigation & Hamburger
 * * ================================ */
.hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
    width: 30px;
    height: 30px;
    position: relative;
    margin: 20px;
    cursor: pointer;
    z-index: 1100;
  }
  .hamburger span {
    background-color: #fff;
    height: 3px;
    width: 100%;
    display: block;
    margin: 6px 0;
  }
}

.hamburger.open span:nth-child(1) {
  -webkit-transform: rotate(45deg) translateY(12px);
          transform: rotate(45deg) translateY(12px);
  margin-left: 8px;
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translateY(-12px);
          transform: rotate(-45deg) translateY(-12px);
  margin-left: 8px;
}

.mobile-nav {
  display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
@media screen and (max-width: 768px) {
  .mobile-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000;
    padding-top: 80px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    z-index: 1000;
  }
  .mobile-nav a {
    color: #fff;
    font-size: 20px;
    padding: 15px;
    text-decoration: none;
  }
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ================================
 * * #hero section
 * * ================================ */
section#hero {
  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;
  position: relative;
  margin-top: 0px;
  overflow: hidden;
  z-index: 10;
}
@media screen and (max-width: 992px) {
  section#hero {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  section#hero {
    margin-top: 0;
  }
}
section#hero img {
  max-width: 100%;
  height: auto;
}
section#hero .hero-logo {
  z-index: 1;
  padding-top: 40px;
  max-height: 70vh;
}
@media screen and (max-width: 992px) {
  section#hero .hero-logo {
    max-height: auto;
    max-width: 60vw;
  }
}
@media screen and (max-width: 768px) {
  section#hero .hero-logo {
    max-height: auto;
    max-width: 70vw;
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
section#hero .illust-wagyu {
  position: absolute;
  z-index: -1;
  top: 100px;
  left: 0;
  right: 0;
  width: 60vw;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  section#hero .illust-wagyu {
    width: 80vw;
    top: 120px;
  }
}
@media screen and (max-width: 768px) {
  section#hero .illust-wagyu {
    top: 120px;
    width: 90vw;
  }
}
section#hero .title-wagyu {
  position: absolute;
  left: 0;
  z-index: -2;
  height: calc(100vh - 80px);
  top: -20px;
  bottom: 0;
  max-height: 780px;
}
@media screen and (max-width: 992px) {
  section#hero .title-wagyu {
    left: -50px;
    height: 80%;
  }
}
@media screen and (max-width: 768px) {
  section#hero .title-wagyu {
    height: 90%;
    left: -30px;
  }
}
section#hero .title-shikata {
  position: absolute;
  top: -20px;
  right: 0;
  z-index: -2;
  bottom: 0;
  max-height: 780px;
  height: calc(100vh - 80px);
}
@media screen and (max-width: 992px) {
  section#hero .title-shikata {
    right: -50px;
    height: 80%;
  }
}
@media screen and (max-width: 768px) {
  section#hero .title-shikata {
    height: 90%;
    right: -30px;
  }
}

.wagyu-plate {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.wagyu-plate img {
  width: 1652px;
  height: 415px;
  position: relative;
  z-index: 10;
}
.wagyu-plate .white {
  height: 50%;
  width: 100%;
  background-color: #fff;
  position: absolute;
  z-index: -1;
  bottom: 0;
}

/* Hide wagyu-plate initially in hero section */
.scroll-hero .wagyu-plate .container {
  opacity: 0;
}

/* ================================
 * * #concept section
 * * ================================ */
section#concept {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  background: url("assets/bg-wagyu-glay.svg") #fff;
  background-repeat: no-repeat;
  background-position: bottom center;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  section#concept {
    gap: 0;
    background-size: 100%;
  }
}
section#concept .container {
  text-align: center;
  padding: 50px 0;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  section#concept .container {
    padding-top: 20px;
    padding-bottom: 0px;
  }
}
section#concept .container p {
  font-size: 35px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  section#concept .container p {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  section#concept .container br {
    display: none;
  }
}

.wagyu-isnot {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wagyu-isnot img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ================================
 * * #slide section
 * * ================================ */
section#slide {
  background-color: #000000;
}
section#culture {
  background-color: #000;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
section#culture .title {
  padding: 100px 30px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  section#culture .title {
    padding: 30px 30px;
  }
}
section#culture .title img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ================================
 * * #culture section
 * * ================================ */
/* #location inside #culture */
#location {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
#location .container {
  padding: 4rem 2rem;
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  position: relative;
  z-index: 5;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 992px) {
  #location .container {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #location .container {
    margin-top: 0;
    padding: 30px;
  }
}
#location .container div {
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  text-align: left;
  position: relative;
  z-index: 10;
}
#location .container .map {
  margin-right: -50px;
  margin-top: -130px;
  margin-bottom: -200px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 992px) {
  #location .container .map {
    margin-top: -100px;
    margin-bottom: -100px;
    margin-right: -100px;
  }
}
#location .container div > img {
  width: 100%;
  height: auto;
  margin-top: -100px;
}
@media screen and (max-width: 768px) {
  #location .container div > img {
    margin-top: 0px;
  }
}

/* .content-slider inside #culture */
#culture .content-slider {
  position: relative;
  z-index: 10;
  padding: 60px 0px 60px 0px;
  height: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #culture .content-slider {
    padding-bottom: 30px;
    padding-top: 0px;
  }
}
#culture .content-slider ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 0px 0px 0px 0px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0px 50px 0px 50px;
  width: 100%;
  max-width: 100%;
  list-style: none;
  scroll-behavior: smooth;
}
@media screen and (max-width: 768px) {
  #culture .content-slider ul {
    padding: 0;
    gap: 0;
  }
}
#culture .content-slider ul li {
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: transparent;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  height: auto;
  text-align: left;
  padding: 30px 30px;
  width: 50vw;
  max-width: 100%;
}
@media screen and (max-width: 992px) {
  #culture .content-slider ul li {
    width: 60vw;
  }
}
@media screen and (max-width: 768px) {
  #culture .content-slider ul li {
    width: 75vw;
    padding-left: 30px;
    padding-right: 0;
  }
}
#culture .content-slider ul li div img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: auto;
}
#culture .content-slider ul li:last-child {
  padding-right: 120px;
}
@media screen and (max-width: 768px) {
  #culture .content-slider ul li:last-child {
    margin-right: 0;
    padding-right: 30px;
  }
}

.controller {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0 100px;
}
@media screen and (max-width: 992px) {
  .controller {
    padding: 0 50px;
  }
}
@media screen and (max-width: 768px) {
  .controller {
    padding: 0 30px;
  }
}
.controller button {
  height: 60px;
  width: 60px;
  border: 1px solid #fff;
  background-color: #000000;
  border-radius: 100%;
  margin: 5px;
  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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  cursor: pointer;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}
.controller button:hover {
  background-color: #353535;
}
.controller button img {
  width: 20px;
  height: auto;
}

/* ================================
 * * #artisan section
 * * ================================ */
section#artisan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
}
section#artisan .container {
  max-width: 1440px;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
}
section#artisan .container .title {
  padding: 0 30px;
}
section#artisan .container .title img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
section#artisan .container p {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 30px;
}
section#artisan div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
section#artisan .master {
  border-bottom: 1px solid #353535;
  padding: 50px 100px;
}
@media screen and (max-width: 768px) {
  section#artisan .master {
    padding: 30px 30px;
  }
}
section#artisan h3, section#artisan h4 {
  margin-bottom: 0px;
}
section#artisan .certificate {
  padding: 50px 100px;
}
@media screen and (max-width: 768px) {
  section#artisan .certificate {
    padding: 30px 30px;
  }
}
section#artisan .photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}
@media screen and (max-width: 768px) {
  section#artisan .photo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
section#artisan .photo img {
  max-width: 33.333%;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  section#artisan .photo img {
    max-width: 100%;
  }
}
section#cuts {
  text-align: center;
  color: #fff;
}
section#cuts .cuts-name {
  width: 100%;
  height: auto;
}
section#cuts .container {
  max-width: 800px;
  margin: 50px auto;
}
@media screen and (max-width: 768px) {
  section#cuts .container {
    margin: 30px auto;
    padding: 0 30px;
  }
}
section#cuts .bg-beef {
  width: 100%;
  height: auto;
}
section#science {
  padding: 4rem 2rem;
  text-align: left;
  color: #fff;
}
@media screen and (max-width: 768px) {
  section#science {
    padding: 30px 30px;
  }
}
section#science .title img {
  max-width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 992px) {
  section#science .title {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  section#science .title {
    max-width: 100%;
  }
}
section#science p {
  max-width: 960px;
  margin-bottom: 50px;
}
section#science .photo {
  background: url("assets/wagyu.jpg");
  background-position: center;
  background-size: cover;
  height: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -32px;
  margin-right: -32px;
  margin-bottom: -64px;
}
@media screen and (max-width: 768px) {
  section#science .photo {
    height: 300px;
    margin-left: -30px;
    margin-right: -30px;
    margin-bottom: -30px;
  }
}
section#science .photo div {
  max-width: 600px;
  padding: 30px;
}
section#science .photo div img {
  display: block;
  height: auto;
  max-width: 100%;
}
section#science .evidence {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  section#science .evidence {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }
}
section#science .evidence img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid #fff;
  padding-bottom: 50px;
}
section#brands {
  background-color: #000000;
  padding: 4rem 2rem;
  color: #ffffff;
  text-align: left;
}
@media screen and (max-width: 768px) {
  section#brands {
    padding: 30px 0;
  }
}
section#brands .container {
  max-width: 960px;
  margin: 50px auto;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  section#brands .container {
    margin: 30px auto;
  }
}
section#brands .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  section#brands .logo {
    gap: 30px;
  }
}
section#brands .logo img {
  max-width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  section#brands .logo img {
    max-width: calc(50% - 30px);
  }
}
section#comment {
  padding: 4rem 2rem;
  text-align: left;
  color: #fff;
}
@media screen and (max-width: 768px) {
  section#comment {
    padding: 30px 30px;
  }
}
section#comment .container {
  max-width: 900px;
}
section#comment .profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
section#comment .profile .photo {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  section#comment .profile .photo {
    width: 80px;
    height: 80px;
  }
}
section#comment .profile .photo img {
  width: 100%;
  height: auto;
  display: block;
}
section#comment .profile p span {
  display: block;
  margin-top: 30px;
}
section#partner {
  padding: 4rem 2rem;
  background-color: #fff;
  text-align: left;
}
@media screen and (max-width: 768px) {
  section#partner {
    padding: 30px 30px;
  }
}
section#partner .container {
  max-width: 1300px;
  margin: 50px auto;
}
@media screen and (max-width: 768px) {
  section#partner .container {
    margin: 30px auto;
  }
}
section#partner .title {
  margin-bottom: 50px;
  max-width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  section#partner .title {
    margin-bottom: 30px;
  }
}
section#partner ul.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  section#partner ul.grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
section#partner ul.grid li {
  display: block;
}
section#partner ul.grid li img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
section#partner ul.grid li.more {
  border: 1px solid #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 40px;
  text-align: center;
}
section#partner ul.tag {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 5px;
}
section#partner ul.tag li {
  border: 1px solid #000;
  padding: 0 10px;
  border-radius: 4px;
  font-size: 14px;
  gap: 20px;
}
section#message {
  padding: 4rem 2rem;
  background-color: #f0f0f0;
}
section#contact {
  padding: 100px 50px;
  text-align: center;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  section#contact {
    padding: 50px 30px;
  }
}
section#contact .container {
  max-width: 1300px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
section#contact .container > h3 {
  margin-top: 0;
}
section#contact .container .container-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  section#contact .container .container-contact {
    grid-template-columns: repeat(1, 1fr);
  }
}
section#contact .container .container-contact .ec {
  border: 1px solid #000;
  padding: 20px;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
section#contact .container .container-contact .ec h3 {
  margin-top: 0;
}
section#contact .container .container-contact .ec p {
  margin-top: 0;
}
section#contact .container .container-contact .ec a {
  border: 1px solid #000;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  color: #000;
}
section#contact hr {
  margin: 30px 0;
  display: block;
}

/* ================================
 * * #cuts section
 * * ================================ */
/* ================================
 * * #science section
 * * ================================ */
/* ================================
 * * #brands section
 * * ================================ */
/* ================================
 * * #comment section
 * * ================================ */
/* ================================
 * * #partner section
 * * ================================ */
/* ================================
 * * #message section
 * * ================================ */
/* ================================
 * * #contact section
 * * ================================ */
/* ================================
 * * Footer
 * * ================================ */
footer {
  padding: 2rem;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
footer small {
  display: block;
  margin-top: 30px;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  footer small {
    font-size: 10px;
  }
}
footer a {
  color: var(--color-accent);
  text-decoration: none;
  margin-top: 30px;
}
footer .hero {
  position: relative;
}
footer .hero img {
  max-width: 100%;
  height: auto;
}
footer .hero .hero-logo {
  z-index: 1;
  padding-top: 40px;
  max-height: 70vh;
}
@media screen and (max-width: 992px) {
  footer .hero .hero-logo {
    max-height: auto;
    max-width: 60vw;
  }
}
@media screen and (max-width: 768px) {
  footer .hero .hero-logo {
    padding-top: 20px;
    max-height: auto;
    max-width: 70vw;
    margin-top: 0px;
    margin-bottom: 0px;
  }
}
footer .hero .illust-wagyu {
  position: absolute;
  z-index: -1;
  top: 100px;
  left: 0;
  right: 0;
  width: 60vw;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  footer .hero .illust-wagyu {
    width: 60vw;
  }
}
@media screen and (max-width: 768px) {
  footer .hero .illust-wagyu {
    top: 80px;
    width: 90vw;
  }
}
footer .hero .title-wagyu {
  position: absolute;
  left: 0;
  z-index: -2;
  height: calc(100vh - 80px);
  top: -20px;
  bottom: 0;
  max-height: 780px;
}
@media screen and (max-width: 768px) {
  footer .hero .title-wagyu {
    top: 0;
    height: 90%;
    left: -50px;
  }
}
footer .hero .title-shikata {
  position: absolute;
  top: -20px;
  right: 0;
  z-index: -2;
  bottom: 0;
  max-height: 780px;
  height: calc(100vh - 80px);
}
@media screen and (max-width: 768px) {
  footer .hero .title-shikata {
    top: 0;
    height: 90%;
    right: -50px;
  }
}

/* ================================
 * * Logo Loop (used in hero, slide, and elsewhere)
 * * ================================ */
.logo-loop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 50px;
  position: relative;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .logo-loop {
    height: 30px;
  }
}

.logo-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 100%;
  -webkit-animation: scroll-left 20s linear infinite;
          animation: scroll-left 20s linear infinite;
}
.logo-track img {
  height: 50px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 20px;
  /* Adjust space between images as needed */
}
@media screen and (max-width: 768px) {
  .logo-track img {
    height: 30px;
  }
}

@-webkit-keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
/* ================================
 * * .slider-fade (inside #slide section)
 * * ================================ */
.slider-fade {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .slider-fade {
    height: 300px;
  }
}
.slider-fade ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  height: 100%;
}
.slider-fade ul li {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 2s ease-in-out;
  transition: opacity 2s ease-in-out;
  width: 100%;
  height: 100%;
}
.slider-fade ul li.active {
  opacity: 1;
  z-index: 1;
}
.slider-fade ul li .zoom-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.slider-fade ul li .zoom-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-animation: zoom-in-out 20s ease-in-out infinite;
          animation: zoom-in-out 20s ease-in-out infinite;
}

@-webkit-keyframes zoom-in-out {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

@keyframes zoom-in-out {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
/* ================================
 * * Scroll Animation Utilities
 * * ================================ */
.scroll-in {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}
.scroll-in.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: var(--scroll-delay, 0s);
          transition-delay: var(--scroll-delay, 0s);
}

/* ================================
 * * Hero Section Scroll Animation
 * * ================================ */
.scroll-hero .hero-logo, .scroll-hero .illust-wagyu, .scroll-hero .title-wagyu, .scroll-hero .title-shikata {
  opacity: 0;
}
.scroll-hero .title-wagyu, .scroll-hero .title-shikata {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.scroll-hero.show .hero-logo {
  -webkit-animation: zoom-in 1.2s ease-out forwards;
          animation: zoom-in 1.2s ease-out forwards;
}
.scroll-hero.show .illust-wagyu {
  -webkit-animation: fade-in-illust 2s ease 0.6s forwards;
          animation: fade-in-illust 2s ease 0.6s forwards;
}
.scroll-hero.show .title-wagyu {
  -webkit-animation: slide-in-left 2s ease-out 0.6s forwards;
          animation: slide-in-left 2s ease-out 0.6s forwards;
}
.scroll-hero.show .title-shikata {
  -webkit-animation: slide-in-right 2s ease-out 0.6s forwards;
          animation: slide-in-right 2s ease-out 0.6s forwards;
}
.scroll-hero.show .wagyu-plate .container {
  -webkit-animation: slide-in-bottom 2s ease-out 1s forwards;
          animation: slide-in-bottom 2s ease-out 1s forwards;
}

/* Ensure scale is reset after animation ends for title-wagyu and title-shikata */
@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes zoom-in {
  0% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes fade-in-illust {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-illust {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
/* ================================
 * * Loader Styles
 * * ================================ */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #E83828;
  z-index: 9999;
  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;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}

.loader-logo img {
  width: 200px;
  height: auto;
  margin-bottom: 30px;
  -webkit-animation: loader-image-animation 1s ease forwards;
          animation: loader-image-animation 1s ease forwards;
}

.loader-bar {
  width: 300px;
  height: 10px;
  background: #920000;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .loader-bar {
    height: 6px;
    width: 150px;
  }
}

.loader-progress {
  height: 100%;
  width: 0%;
  background: #fff;
  -webkit-animation: loader-progress-animation 2s linear forwards;
          animation: loader-progress-animation 2s linear forwards;
}

@-webkit-keyframes loader-progress-animation {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

@keyframes loader-progress-animation {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
@-webkit-keyframes loader-image-animation {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes loader-image-animation {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}