@charset "utf-8";

#vdbanner {
  width: 0;
}

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

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

ul,
ol {
  list-style: none;
}

body {
  font-family: serif;
  font-size: 16px;
  color: black;
  line-height: 1.5;
  background-color: white;
  margin-top: -44px;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

/* ヘッダー */
.hamburger-grid {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  padding: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger-grid__dots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  width: 100%;
  height: 100%;
}

.hamburger-grid__dot {
  width: 100%;
  height: 100%;
  background-color: #333;
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.hamburger-grid.active .hamburger-grid__dot {
  background-color: #fff;
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(1) {
  transform: scale(0);
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(2) {
  transform: translateY(8px);
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(3) {
  transform: scale(0);
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(4) {
  transform: translateX(8px);
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(5) {
  transform: scale(1.2);
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(6) {
  transform: translateX(-8px);
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(7) {
  transform: scale(0);
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(8) {
  transform: translateY(-8px);
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(9) {
  transform: scale(0);
}

.nav-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #1a1a1a;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 900;
}

.nav-grid.active {
  visibility: visible;
  opacity: 1;
}

.nav-grid__content {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 100px 40px;
}

.nav-grid__sections {
  grid-column: span 12;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.nav-grid__section {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-grid.active .nav-grid__section {
  opacity: 1;
  transform: translateY(0);
}

.nav-grid.active .nav-grid__section:nth-child(1) {
  transition-delay: 0.2s;
}

.nav-grid.active .nav-grid__section:nth-child(2) {
  transition-delay: 0.3s;
}

.nav-grid__title {
  margin: 0 0 20px;
  color: #666;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-grid__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-grid__list li {
  margin-bottom: 15px;
  overflow: hidden;
}

.nav-grid__link {
  display: inline-block;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.3s ease;
}

.nav-grid.active .nav-grid__link {
  transform: translateY(0);
}

.nav-grid__link:hover {
  color: #807f6b;
}

@media (max-width: 768px) {
  .nav-grid__content {
    padding: 80px 20px;
  }

  .nav-grid__sections {
    grid-template-columns: 1fr;
  }

  .nav-grid__link {
    font-size: 20px;
  }
}

/* ここからメイン */

/* トップ画像 */
.mainimg {
  width: 100%;
  height: 100vh;
  background-image: url(../img/jesse-donoghoe-1BHQ22EL3NI-unsplash.jpg);
  background-size: cover;
}

.title {
  height: 100VH;
  display: flex;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 20vh;
}

/* セクション */
/* キャッチコピー */
.cath {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-box {
  width: 50%;
  transform: translateX(-100px);
  opacity: 0;
  transition: all 0.8s ease-out;
}

/* ビューポートに入ったらアニメーションさせる */
.image-box.show {
  transform: translateX(0);
  opacity: 1;
}

.image-box img {
  height: 80vh;
}

.cathtext h2 {
  font-size: 26px;
}

.cathtext p {
  line-height: 1.8;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ラインナップ */
.lineup {
  background-color: #807f6b;
  padding: 40px;
}

.lineuparea {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 40px;
}

/* ボタン */
.btn {
  padding: 20px;
  text-align: center;
}

.lineuparea h2 {
  flex-shrink: 0;
  font-size: 30px;
  white-space: nowrap;
  width: 150px;
  user-select: none;
}

.goodsarea-wrapper {
  position: relative;
  flex-grow: 1;
  overflow: hidden;
}

.goodsarea {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  scrollbar-width: none;
}

.goodsarea::-webkit-scrollbar {
  display: none;
}

.goods_one {
  flex: 0 0 auto;
  width: 250px;
  text-align: center;
  color: white;
}

.goods_one img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.arrow:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.arrow-left {
  left: 0;
}

.arrow-right {
  right: 0;
}

/* ニュース */

.news {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  gap: 200px;
  height: 400px;
}

.newstitle {
  order: 3;
}

.btn a:hover {
  color: white;
}

.news li {
  border-bottom: #807f6b solid 1px;
  margin: 20px auto;
}

.news a:hover {
  color: #807f6b;
}

/* アバウト */

.about h2 {
  font-size: 300px;
  text-align: center;
}

.item {
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
}

.item04 img {
  width: 35%;
}

.item05 img {
  height: 60%;
  order: 3;
}

.item06 img {
  height: 60%;

}

.text {
  line-height: 2.0;
}



.area {
  overflow: hidden;
}

.wrap {
  display: flex;
}


/* フッター */
footer {
  background-color: #807f6b;
  padding: 50px;
}

.footerlogo {
  margin: auto 0;
}

footer h2 {
  text-align: center;
  font-size: 50px;
}

.sns_area {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.sns_area img {
  width: 30px;
}

.sns_logo {
  display: flex;
  justify-content: space-between;
}

.snsicon {
  margin-left: 30px;
  margin-right: 30px;
}

.footer_nav_area {
  text-align: center;
  margin-bottom: 40px;
}

.copyright {
  text-align: center;
}


.footerlogo a:hover {
  color: white;
}


.footer_nav_area a.kiyaku::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
  background-color: #ccc;
  margin: 0 50px;
  vertical-align: middle;
}

.footer_nav_area a:hover {
  color: white;
}

.sns_area .sns_logo a:hover img {
  filter: grayscale(100%) brightness(0.7);
}


@media screen and (max-width: 768px) {}

@media screen and (max-width: 480px) {}