body {
  font-family: "Shippori Mincho", serif;
}
.site-header {
  background: #fff;
  padding: 15px;
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ロゴ部分 */
.site-logo__main {
  width: 100%;
  max-width: 14.375rem;
}

.site-logo__sub {
  font-size: 1.25rem;
  color: #555;
  margin-top: 0.25rem;
  text-align: center;
}
.site-nav {
  display: flex;
  align-items: center;
}
/* ナビゲーション */
.site-nav__list {
  list-style: none;
  display: flex;
  gap: 2.5rem; /* 項目間のスペース */
  margin: 0;
  padding: 0;
}
.site-nav__item {
  border-right: 1px solid #000;
  padding-right: 30px;
}
.site-nav__item:last-child {
  border: none;
}

.site-nav__item a {
  text-decoration: none;
  color: #333;
  font-size: 1.25rem;
  transition: color 0.3s;
}


/* ハンバーガーメニュー */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.8rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  margin-left: 1rem;
}
.hamburger span {
  width: 48px;
  height: 2px;
  background-color: #000;
  display: block;
  margin: 5px 0;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 11px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100vw;
  height: 100vh;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 1001;
  padding: 40px;
  overflow-y: auto;
  color: #000;
}
.mobile-menu__list li {
  margin-bottom: 30px;
  text-align: center;
}
.mobile-menu.active {
  right: 0;
}

/* メインコンテンツ */
.main-content {
  margin-top: 90px;
  padding: 2rem;
}

/* ここまで */

.content-inner {
  width: 100%;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-inline: auto;
}
.about {
  padding-top: 40px;
}
.about p {
  font-size: 1rem;
  line-height: 1.5;
  padding-bottom: 20px;
}
.about__text-box {
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .about__text-box{
     text-align: left;
     padding-inline: 10px;

  }
}

.aizawa100 h2 {
background-color: #000;
text-align: center;
padding-block: 30px;
margin-bottom: 60px;
}
.aizawa100 h2 img {
width: 238px;
height: auto;
}
.aizawa100__lead {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.5;
}
.aizawa100__text-button {
  text-align: center;
    margin-bottom: 60px;
}
.aizawa100__text-button a {
    font-size: 1.25rem;
}
.aizawa100_link-menu p {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 30px;
}
.aizawa100_link-menu {
  width:100%;
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: 200px;
}
.aizawa100_link-menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.aizawa100_link-menu ul li {
  border-right: 1px solid #000;
  padding-right: 30px;
  padding-left: 30px;
  font-size: 1.25rem;
}
.aizawa100_link-menu ul li:last-child {
  border-right:none;
}
@media screen and (max-width: 768px)  {
  .aizawa100__lead {
font-size: 1rem;
}
  .aizawa100_link-menu {
    margin-bottom: 120px;
  }
  .aizawa100_link-menu p {
    font-size: 1rem;
  }
  .aizawa100 h2 {
    padding-block: 20px;
    }
    .aizawa100 h2 img {
    width: 140px;
    height: auto;
    }
  .aizawa100_link-menu ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin-inline: auto;
     gap: 15px;
}
.aizawa100_link-menu ul li  {
  border: 1px solid #000;
  display: block;
  width: 100%;
  padding: 20px;
  text-align: center;

}
.aizawa100_link-menu ul li:last-child  {
 border-right: 1px solid #000;
}
}
.product-kitchen-tool-list {
  background-color: #F2F2F2;
}
.product-list {
  padding-top: 100px;
}
.product-list__title {
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
}
/* .product-list__item-contents {
    display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  margin-bottom: 80px;
} */

.product-list__image-wrop {
  position: relative;
  display: block;
}
.product-list__over-title {
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 1.125rem;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 18px 25px;
  line-height: 1.5;
  white-space: nowrap;
  text-align: center;
  width: 81%;
}
.product-list__item-main-contents p {
  font-size: 1rem;
  line-height: 1.5;
  padding-top: 10px;
}
.product-list__item-contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 80px;
  column-gap: 30px;
  margin-bottom: 100px;
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  padding-block: 60px;
  padding-inline: 20px;
}
@media screen and (max-width: 768px) {
  .product-list__title {
    scroll-margin-top: 82px;
  }
  .product-list__item-contents {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 80px;
  }
}

.product-list__item-contents p {
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
.product-list__item-contents p {
  text-align: left;
  line-height: 1.5;
}
}
.others-cutlery {
  width: 100%;
  max-width: 22.5rem;
  margin-inline: auto;
  padding-bottom: 80px;
}
.others-tool {
  margin-top: 80px;
}
.product-list__shop-item {
  display: flex;
  flex-direction: row;
  grid-column: span 2;
  transform: scale(0.6);
  justify-self: end;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px)  {
  .product-list__shop-item {
    display: flex;
    flex-direction: column;
    grid-column:1;
    transform: scale(1);
    justify-self: end;
    align-items: center;
    gap: 10px;
  }
}
.product-list__shop-item p {
  font-size: 1.25rem;
  text-align: left;
}
@media screen and (max-width: 768px) {
.product-list__shop-item p {
  font-size: 1rem;
}
}
.info a {
  display: block;
  margin-bottom: 80px;
  line-height: 1.8;
}
.footer__inner {
  padding: 35px;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}
.footer__flex-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer__left h2 {
  width: 380px;
  margin-bottom: 20px;
}
.footer__left h2 span {
  font-size: 1rem;
  text-align: center;
  display: block;
}
.footer__left-address {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 40px;
}
.footer__left-info {
  font-size: 1.25rem;
  line-height: 1.5;
}
.footer__left-info a {
  display: block;
}
.footer__center {
  padding-top: 80px;
}
.footer__center-nav li a {
  font-size: 1.25rem;
  line-height: 2;
}
.footer__right-link--top {
  border: 1px solid #000;
  display: block;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.footer__right-link--top p {
  font-size: 1rem;
  text-align: center;
}
.footer__right-link--top img {
  width: 250px;
}
.footer__right-link--bottom {
  border: 1px solid #000;
  display: block;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer__right-link--bottom p {
  font-size: 1rem;
  text-align: center;
}
.footer__right-link--bottom img {
  width: 250px;
}
.footer__sns {
  margin-bottom: 40px;
}
.footer__copy {
  text-align: center;
  font-size: 14px;
}
/* レスポンシブデザイン */
@media screen and (max-width: 768px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;   /* ← これでヘッダー（=ハンバーガー）を最前面に */
    padding: 2px;
    background: #fff;
  }
  :root { --header-h: 100px; } /* 必要なら数値調整 */
  .mobile-menu {
    top: var(--header-h);                       /* ← 0から変更 */
    height: calc(100vh - var(--header-h));      /* ← 被らない */
    z-index: 1000;                              /* ← ヘッダーより下 */
    right: -100%;
  }
  .hamburger {
    display: flex;
  }

  .site-nav__list {
    display: none;
  }

  .site-header__inner {
    padding: 1rem;
  }

  .content-inner {
    padding-inline: 10px;
    padding-block: 10px;
  }

  .mv-slider {
    padding-top: 86px;
  }
  .about {
  padding-top: 10px;
}

  .site-logo {
    gap: 0.5rem;
  }
  .site-logo__main {
    margin-bottom: 0;
    width:55%;
  }
  .site-logo__main img {
    height: auto;
  }

  .site-logo__sub {
    font-size: 0.75rem;
    padding: 0;
    text-align: center;
    width: 65%;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .main-content {
    padding: 1rem;
  }

  .hero {
    padding: 2rem 1rem;
  }
  .product-list__item-main-contents {
    flex-direction: column;
    padding-inline: 0;
  }
  .footer__left h2 {
    width: 100%;
  }

  .footer__flex-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .footer__flex-box .footer__right:nth-child(3) {
    /* 3番目の要素を1列目から最終列まで（2列分）にまたがらせる */
    grid-column: 1 / -1;
  }
  .footer__center {
    padding-top: 0;
  }
}

@media (max-width: 500px) {
  .footer__flex-box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}
.footer__sns {
  margin-top: 20px;
}

.footer__sns--insta img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.footer__sns--x img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.footer__sns--map img {
  width: 24px;
  height: 24px;
}

:root { --header-h:100px; } /* 初期値。JSで上書きされます */

section[id],
[id][data-anchor],      /* idが付いた見出し等 */
.anchor-target {        /* 必要なら専用クラスを付けてもOK */
  scroll-margin-top: calc(var(--header-h) + 12px); /* ちょい余白 */
}

.text-link {
  position: relative;
  display:inline-block;
}
.text-link::after {
  content:"";
  position:absolute;
  bottom:-2px;
  left:0;
  width:0;
  height:1px;
  background:#333;
  transition:0.3s ease;
}
.text-link:hover::after {
  width:100%;
}

a img {
  transition:0.4s ease;
}
a:hover img {
  transform: scale(1.03);
  filter: brightness(1.05);
}