@charset "UTF-8";

/* =========================
  01. 共通設定
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #2b2520;
  font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", serif;
  line-height: 1.8;
  background-color: #f8f5ef;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#about,
#quality,
#products,
#company,
#topics,
#instagram {
  scroll-margin-top: 100px;
}

.section {
  padding: 120px 0;
}

.section-inner {
  width: min(1120px, calc(100% - 80px));
  margin: 0 auto;
}

.section-label {
  margin: 0 0 12px;
  color: #9b2f24;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
}

.section-title {
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.section-lead {
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 2;
}

.section-text {
  margin: 28px 0 0;
  font-size: 15px;
  line-height: 2.2;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 64px;
  text-align: center;
}

.button {
  display: inline-block;
  margin-top: 36px;
  padding: 14px 34px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.12em;
  background-color: #1f1b18;
  border: 1px solid #1f1b18;
  transition: 0.3s;
}

.button:hover {
  color: #1f1b18;
  background-color: transparent;
}

.button-white {
  color: #1f1b18;
  background-color: #fff;
  border-color: #fff;
}

.button-white:hover {
  color: #fff;
  background-color: transparent;
}

.text-link {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.12em;
  border-bottom: 1px solid currentColor;
}


/* =========================
  02. ヘッダー
========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background-color: #111;
}

.header-inner {
  height: 86px;
  padding: 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  width: 128px;
  height: 70px;
  margin: 0;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.site-logo a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.global-nav-list {
  display: flex;
  gap: 34px;
}

.global-nav-list a {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.12em;
  transition: 0.3s;
}

.global-nav-list a:hover {
  opacity: 0.7;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-link {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.header-shop-link {
  padding: 11px 18px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.1em;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: 0.3s;
}

.header-shop-link:hover {
  color: #111;
  background-color: #fff;
}


/* =========================
  03. ハンバーガー・ドロワー
========================= */
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 1px;
  margin: 7px auto;
  background-color: #fff;
  transition: 0.3s;
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(35deg);
}

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

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-35deg);
}

.drawer {
  position: fixed;
  top: 86px;
  right: 0;
  z-index: 999;
  width: 320px;
  max-width: 80%;
  height: calc(100vh - 86px);
  padding: 42px 34px;
  color: #fff;
  background-color: rgba(17, 17, 17, 0.96);
  transform: translateX(100%);
  transition: 0.3s;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer-nav-list li + li {
  margin-top: 22px;
}

.drawer-nav-list a {
  font-size: 15px;
  letter-spacing: 0.12em;
}

.drawer-shop-link {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}




/* =========================
  05. FV
========================= */
.fv {
  position: relative;
  height: 92vh;
  min-height: 680px;
  margin-top: 86px;
  overflow: hidden;
}

.fv-image,
.fv-image img {
  width: 100%;
  height: 100%;
}

.fv-image img {
  object-fit: cover;
  object-position: center;
}

.fv::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.84) 0%,
    rgba(255, 255, 255, 0.58) 34%,
    rgba(255, 255, 255, 0.08) 70%
  );
}

.fv-copy {
  position: absolute;
  top: 50%;
  left: 9%;
  z-index: 1;
  transform: translateY(-50%);
  max-width: 560px;
}

.fv-label {
  margin: 0 0 20px;
  color: #9b2f24;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.fv-main-copy {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.12em;
}

.fv-text {
  margin: 30px 0 0;
  font-size: 17px;
  line-height: 2.2;
}


/* =========================
  06. 会社について
========================= */
.about-section {
  background-color: #fffaf2;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-image img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.about-content {
  padding: 20px 0;
}

.about-content .section-title {
  font-size: clamp(30px, 2.6vw, 40px);
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.about-button-wrap {
  margin-top: 4px;
}


/* =========================
  07. 味噌づくりページ
========================= */
.quality-section {
  background-color: #f4efe5;
}

.quality-page {
  padding-top: 180px;
}

.quality-main {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 72px;
}

.quality-main-image img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.quality-catch {
  margin: 0;
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.quality-main-text {
  margin: 28px 0 0;
  font-size: 15px;
  line-height: 2.2;
}

.quality-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.quality-card {
  background-color: #fff;
  box-shadow: 0 18px 40px rgba(70, 48, 30, 0.06);
}

.quality-card-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.quality-card-content {
  padding: 28px 26px 34px;
}

.quality-number {
  margin: 0 0 8px;
  color: #9b2f24;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.quality-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.quality-text {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 2;
}

.quality-button-wrap {
  margin-top: 56px;
  text-align: center;
}


/* =========================
  08. 商品紹介
========================= */
.products-section {
  background-color: #fffaf2;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  max-width: 860px;
  margin: 0 auto;
}

.product-card {
  background-color: #fff;
  box-shadow: 0 18px 40px rgba(70, 48, 30, 0.08);
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(70, 48, 30, 0.12);
}

.product-card-link {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-image {
  padding: 42px 42px 0;
}

.product-image img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.product-content {
  flex: 1;
  padding: 30px 34px 40px;
  display: flex;
  flex-direction: column;
}

.product-number {
  margin: 0 0 10px;
  color: #9b2f24;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.product-title {
  margin: 0;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.product-copy {
  margin: 22px 0 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 2;
}

.product-text {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 2.1;
}

.product-actions {
  margin-top: auto;
  padding-top: 30px;
  display: flex;
  justify-content: center;
}

.product-button {
  min-width: 240px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 24px;
  color: #1f1b18;
  font-size: 13px;
  letter-spacing: 0.1em;
  border: 1px solid #1f1b18;
  transition: 0.3s;
}

.product-card:hover .product-button {
  color: #fff;
  background-color: #1f1b18;
}

.product-button-arrow {
  font-size: 16px;
  line-height: 1;
}

/* =========================
  09. 会社概要導線
========================= */
.company-section {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}

.company-bg {
  position: absolute;
  inset: 0;
}

.company-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(20, 15, 10, 0.46);
}

.company-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 80px));
  text-align: center;
}

.company-content .section-label {
  color: #fff;
}

.company-content .section-text {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}


/* =========================
  10. お知らせ・Instagram
========================= */
.topics-section {
  background-color: #fffaf2;
}

.topics-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: start;
}

.topics-heading {
  margin-bottom: 34px;
}

.topics-heading .section-title {
  font-size: clamp(30px, 2.5vw, 40px);
}

.topics-lead {
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 2;
}

.news-list {
  display: grid;
  gap: 18px;
}

.news-card {
  background-color: #fff;
  transition: 0.3s;
}

.news-card:hover {
  transform: translateY(-4px);
}

.news-card a {
  display: grid;
  grid-template-columns: 170px 1fr;
  min-height: 140px;
}

.news-image {
  height: 100%;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-content {
  padding: 20px 22px;
}

.news-content time {
  color: #8b7b6a;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.news-category {
  display: inline-block;
  margin: 10px 0 0;
  padding: 2px 10px;
  color: #9b2f24;
  font-size: 12px;
  line-height: 1.5;
  border: 1px solid #9b2f24;
}

.news-title {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.7;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.instagram-item {
  overflow: hidden;
  background-color: #fff;
}

.instagram-item img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: 0.4s;
}

.instagram-item:hover img {
  transform: scale(1.05);
}

.topics-button-wrap {
  margin-top: 24px;
}


/* =========================
  11. フッター
========================= */
.site-footer {
  color: #fff;
  background-color: #111;
}

.footer-inner {
  width: min(1120px, calc(100% - 80px));
  margin: 0 auto;
  padding: 78px 0 28px;
}

.footer-main {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-logo {
  width: 150px;
  height: 82px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.footer-logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.footer-copy {
  margin: 0;
  font-size: 14px;
  line-height: 2;
}

.footer-nav-area {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 56px;
  padding: 46px 0;
}

.footer-heading {
  margin: 0 0 18px;
  font-size: 15px;
  letter-spacing: 0.16em;
}

.footer-nav-list li + li {
  margin-top: 10px;
}

.footer-nav-list a,
.footer-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.footer-nav-list a:hover {
  color: #fff;
}

.footer-text {
  margin: 0 0 16px;
  line-height: 2;
}

.footer-bottom {
  padding-top: 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  letter-spacing: 0.08em;
}


/* =========================
  12. タブレット調整
========================= */
@media (max-width: 1100px) {
  .global-nav,
  .header-actions {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .section {
    padding: 96px 0;
  }

  .about-inner,
  .quality-main {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .quality-list,
  .product-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .topics-inner {
    grid-template-columns: 1fr;
    gap: 78px;
  }

  .fv-copy {
    left: 7%;
  }
}


/* =========================
  13. スマホ調整
========================= */
@media (max-width: 767px) {
  #about,
  #quality,
  #products,
  #company,
  #topics,
  #instagram {
    scroll-margin-top: 82px;
  }

  .section {
    padding: 72px 0;
  }

  .section-inner,
  .footer-inner {
    width: min(100% - 40px, 520px);
  }

  .header-inner {
    height: 70px;
    padding: 0 20px;
  }

  .site-logo {
    width: 108px;
    height: 58px;
    padding: 7px 12px;
  }

  .drawer {
    top: 70px;
    height: calc(100vh - 70px);
  }

  .fv {
    height: 86vh;
    min-height: 560px;
    margin-top: 70px;
  }

  .fv::after {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.78) 0%,
      rgba(255, 255, 255, 0.38) 48%,
      rgba(255, 255, 255, 0.86) 100%
    );
  }

  .fv-copy {
    top: auto;
    bottom: 48px;
    left: 24px;
    right: 24px;
    transform: none;
  }

  .fv-main-copy {
    font-size: 34px;
  }

  .fv-text {
    font-size: 14px;
    line-height: 2;
  }

  .section-heading {
    margin-bottom: 40px;
    text-align: left;
  }

  .section-title {
    font-size: 28px;
  }

  .section-lead {
    font-size: 15px;
  }

  .quality-page {
    padding-top: 130px;
  }

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

  .quality-main {
    margin-bottom: 48px;
  }

  .quality-catch {
    font-size: 25px;
  }

  .quality-button-wrap {
    margin-top: 40px;
  }

  .product-content {
    padding: 22px 24px 30px;
  }

  .company-section {
    min-height: 460px;
  }

  .company-content {
    width: min(100% - 40px, 520px);
  }

  .topics-inner {
    gap: 64px;
  }

  .news-card a {
    display: block;
  }

  .news-image img {
    aspect-ratio: 4 / 2.6;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    display: block;
  }

  .footer-logo {
    margin-bottom: 24px;
  }

  .footer-nav-area {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}


/* =========================
  14. 小さいスマホ調整
========================= */
@media (max-width: 420px) {
  .fv-main-copy {
    font-size: 30px;
  }

  .section-title {
    font-size: 25px;
  }

  .quality-catch {
    font-size: 23px;
  }

  .instagram-grid {
    gap: 8px;
  }
}


/* =========================
  商品紹介ページ products.html
========================= */

/* 下層ページFV */
.product-page-fv {
  position: relative;
  margin-top: 86px;
  min-height: 620px;
  overflow: hidden;
  background-color: #fffaf2;
}

.product-page-fv-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.product-page-fv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.product-page-fv-content {
  position: absolute;
  top: 50%;
  left: 8%;
  z-index: 2;
  width: min(560px, 44%);
  transform: translateY(-50%);
}

.product-page-title {
  margin: 0;
  color: #1f1b18;
  font-size: clamp(56px, 5vw, 86px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.12em;
}

.product-page-lead {
  margin: 34px 0 0;
  color: #3b342f;
  font-size: 17px;
  line-height: 2.25;
}

/* カテゴリ切り替え */
.product-category-section {
  padding: 46px 0 0;
  background-color: #fffaf2;
}

.product-category-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.product-category-link {
  min-width: 170px;
  padding: 12px 28px;
  color: #1f1b18;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.12em;
  background-color: #fff;
  border: 1px solid #d8c9b8;
  transition: 0.3s;
}

.product-category-link:hover,
.product-category-link.is-current {
  color: #fff;
  background-color: #1f1b18;
  border-color: #1f1b18;
}

/* 商品一覧 */
.products-page-section {
  background-color: #fffaf2;
}

.products-page-list {
  display: grid;
  gap: 42px;
}

.products-page-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding: 48px;
  background-color: #fff;
  box-shadow: 0 18px 40px rgba(70, 48, 30, 0.08);
}

/* 商品カードはすべて 左：画像 / 右：説明 に統一 */
.products-page-image {
  padding: 18px;
  background-color: #fffaf2;
}

.products-page-image img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.products-page-content {
  padding: 8px 0;
}

.products-page-title {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.products-page-copy {
  margin: 22px 0 0;
  color: #9b2f24;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.9;
}

.products-page-text {
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 2.2;
}

.products-page-info {
  margin: 30px 0 0;
  border-top: 1px solid #e5d8c8;
}

.products-page-info div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid #e5d8c8;
}

.products-page-info dt {
  color: #8b7b6a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.products-page-info dd {
  margin: 0;
  font-size: 14px;
}

/* 加工品ページへの導線 */
.products-next-section {
  padding: 0 0 120px;
  background-color: #fffaf2;
}

.products-next-box {
  padding: 58px 40px;
  text-align: center;
  background-color: #f4efe5;
}

.products-next-title {
  margin: 0;
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.products-next-text {
  max-width: 620px;
  margin: 22px auto 0;
  font-size: 15px;
  line-height: 2.2;
}

/* タブレット */
@media (max-width: 1100px) {
  .product-page-fv {
    min-height: 520px;
  }

  .product-page-fv-image img {
    object-position: 64% center;
  }

  .product-page-fv-content {
    left: 6%;
    width: min(520px, 48%);
  }

  .product-page-title {
    font-size: 48px;
  }

  .product-page-lead {
    font-size: 15px;
    line-height: 2.1;
  }

  .products-page-card {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .products-page-image {
    max-width: 520px;
    margin: 0 auto;
  }
}

/* スマホ */
@media (max-width: 767px) {
  .product-page-fv {
    min-height: 540px;
    margin-top: 70px;
  }

  .product-page-fv-image img {
    object-position: 68% center;
  }

  .product-page-fv-content {
    top: auto;
    right: 24px;
    bottom: 32px;
    left: 24px;
    width: auto;
    padding: 24px 22px;
    background-color: rgba(255, 250, 242, 0.9);
    transform: none;
  }

  .product-page-title {
    font-size: 34px;
  }

  .product-page-lead {
    margin-top: 18px;
    font-size: 14px;
    line-height: 2;
  }

  .product-category-section {
    padding-top: 30px;
  }

  .product-category-nav {
    gap: 10px;
  }

  .product-category-link {
    min-width: 0;
    flex: 1;
    padding: 11px 12px;
    font-size: 13px;
  }

  .products-page-card {
    gap: 28px;
    padding: 30px 24px 34px;
  }

  .products-page-image {
    padding: 16px;
  }

  .products-page-title {
    font-size: 24px;
  }

  .products-page-copy {
    font-size: 15px;
  }

  .products-page-text {
    font-size: 14px;
    line-height: 2;
  }

  .products-page-info div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .products-next-section {
    padding-bottom: 72px;
  }

  .products-next-box {
    padding: 44px 24px;
  }

  .products-next-title {
    font-size: 24px;
  }
}

/* 小さいスマホ */
@media (max-width: 420px) {
  .product-page-fv {
    min-height: 500px;
  }

  .product-page-title {
    font-size: 30px;
  }

  .product-page-lead {
    font-size: 13px;
  }
}


/* =========================================
  company page
========================================= */

.company-page,
.company-page * {
  box-sizing: border-box;
}

.company-page {
  width: 100%;
  color: #2d261f;
  background-color: #fffdf8;
  overflow: hidden;
}

.company-page img {
  max-width: 100%;
  height: auto;
  display: block;
}

.company-page h1,
.company-page h2,
.company-page h3,
.company-page p {
  margin: 0;
}

.company-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.company-label {
  margin-bottom: 14px;
  color: #6b7d3c;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.company-title {
  position: relative;
  padding-bottom: 18px;
  color: #2d261f;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.company-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 54px;
  height: 2px;
  background-color: #6b7d3c;
}

.company-heading {
  margin-bottom: 42px;
}

.company-heading-center {
  text-align: center;
}

.company-heading-center .company-title::after {
  left: 50%;
  transform: translateX(-50%);
}

/* FV */
.company-fv {
  position: relative;
  width: 100%;
  height: clamp(360px, 44vw, 520px);
  overflow: hidden;
  background-color: #1c160f;
}

.company-fv-image {
  width: 100%;
  height: 100%;
}

.company-fv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-fv::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(18, 13, 8, 0.78) 0%,
    rgba(18, 13, 8, 0.58) 34%,
    rgba(18, 13, 8, 0.2) 68%,
    rgba(18, 13, 8, 0.1) 100%
  );
}

.company-fv-content {
  position: absolute;
  top: 50%;
  left: max(7vw, 40px);
  z-index: 2;
  color: #fff;
  transform: translateY(-50%);
}

.company-fv-label {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  letter-spacing: 0.16em;
}

.company-fv-title {
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(42px, 5.6vw, 76px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.08em;
}

.company-fv-lead {
  color: #fff;
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.9;
  letter-spacing: 0.08em;
}

/* greeting */
.company-section {
  padding: 96px 0;
  background-color: #fffdf8;
}

.company-greeting-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.company-greeting-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.company-greeting-text p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: 0.05em;
}

.company-greeting-text p:last-child {
  margin-bottom: 0;
}

/* policy */
.company-policy {
  padding: 84px 0;
  background-color: #f7f1e6;
}

.company-policy-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
  border-top: 1px solid rgba(107, 125, 60, 0.25);
  border-bottom: 1px solid rgba(107, 125, 60, 0.25);
}

.company-policy-item {
  padding: 42px 28px;
  text-align: center;
  border-right: 1px solid rgba(107, 125, 60, 0.25);
}

.company-policy-item:last-child {
  border-right: none;
}

.company-policy-number {
  margin-bottom: 18px;
  color: #6b7d3c;
  font-size: 14px;
  letter-spacing: 0.14em;
}

.company-policy-item h3 {
  color: #2d261f;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

/* overview / history */
.company-info {
  padding: 96px 0;
  background-color: #fffdf8;
}

.company-info-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 84px;
  align-items: start;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  color: #2d261f;
  font-size: 15px;
  line-height: 1.8;
}

.company-table th,
.company-table td {
  padding: 18px 20px;
  border: 1px solid #ded6c9;
  vertical-align: top;
}

.company-table th {
  width: 30%;
  background-color: #f5efe3;
  font-weight: 500;
  text-align: left;
  white-space: nowrap;
}

.company-table td {
  background-color: rgba(255, 255, 255, 0.7);
}

.company-history-list {
  position: relative;
  padding-left: 34px;
}

.company-history-list::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 8px;
  width: 1px;
  height: calc(100% - 20px);
  background-color: #6b7d3c;
}

.company-history-item {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 28px;
  margin-bottom: 46px;
}

.company-history-item:last-child {
  margin-bottom: 0;
}

.company-history-item::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -31px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #6b7d3c;
}

.company-history-year {
  color: #6b7d3c;
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.company-history-text {
  color: #2d261f;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.05em;
}

/* access */
.company-access {
  padding: 96px 0;
  background-color: #f8f2e8;
}

.company-access-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.company-access-text p {
  margin-bottom: 22px;
  color: #2d261f;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
}

.company-map {
  overflow: hidden;
  border: 1px solid #d8cfbf;
  border-radius: 4px;
  background-color: #fff;
}

.company-map iframe {
  display: block;
  width: 100%;
}

/* contact */
.company-contact {
  padding: 76px 0 96px;
  background-color: #fffdf8;
}

.company-contact-box {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 38px 48px;
  border: 1px solid #d8cfbf;
  background-color: #fffaf0;
}

.company-contact-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: #6b7d3c;
  font-size: 28px;
  border: 1px solid #6b7d3c;
  border-radius: 50%;
}

.company-contact-text h2 {
  margin-bottom: 10px;
  color: #2d261f;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.company-contact-text p {
  color: #2d261f;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.company-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 16px 28px;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.08em;
  background-color: #6b7d3c;
  border-radius: 3px;
  transition: opacity 0.3s;
}

.company-contact-button:hover {
  opacity: 0.75;
}

.sp-only {
  display: none;
}

/* responsive */
@media (max-width: 900px) {
  .company-inner {
    width: min(100% - 40px, 720px);
  }

  .company-greeting-inner,
  .company-info-inner,
  .company-access-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .company-policy-list {
    grid-template-columns: 1fr;
  }

  .company-policy-item {
    border-right: none;
    border-bottom: 1px solid rgba(107, 125, 60, 0.25);
  }

  .company-policy-item:last-child {
    border-bottom: none;
  }

  .company-contact-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .company-contact-icon {
    margin: 0 auto;
  }

  .company-contact-button {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .company-inner {
    width: min(100% - 32px, 520px);
  }

  .company-fv {
    height: 330px;
  }

  .company-fv-content {
    left: 24px;
    right: 24px;
  }

  .company-fv-label {
    margin-bottom: 14px;
    font-size: 13px;
  }

  .company-fv-title {
    margin-bottom: 18px;
    font-size: 36px;
  }

  .company-fv-lead {
    font-size: 15px;
  }

  .company-section,
  .company-info,
  .company-access {
    padding: 68px 0;
  }

  .company-policy {
    padding: 60px 0;
  }

  .company-heading {
    margin-bottom: 32px;
  }

  .company-title {
    font-size: 28px;
  }

  .company-greeting-text p,
  .company-access-text p {
    font-size: 15px;
    line-height: 2;
  }

  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    padding: 14px 16px;
  }

  .company-table th {
    border-bottom: none;
  }

  .company-history-item {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-bottom: 34px;
  }

  .company-map iframe {
    height: 260px;
  }

  .company-contact {
    padding: 60px 0 76px;
  }

  .company-contact-box {
    padding: 32px 24px;
  }

  .company-contact-text h2 {
    font-size: 24px;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}

/* =========================================
  drawer overlay fix
========================================= */

.drawer {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.drawer.is-active,
.drawer.active,
.drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* company section text fix */
.company-greeting,
.company-section,
.company-policy,
.company-info,
.company-access,
.company-contact {
  position: relative;
  z-index: 1;
}

.company-greeting {
  background-color: #fffdf8;
}

.company-greeting-text,
.company-greeting-text p,
.company-title,
.company-label {
  color: #2d261f;
}

.company-label {
  color: #6b7d3c;
}

.company-greeting-image img {
  opacity: 1;
  filter: none;
}

/* =========================================
  company page conflict fix
  トップページ用 .company-section との衝突を解除
========================================= */

.company-page .company-section {
  position: relative;
  min-height: auto;
  display: block;
  place-items: initial;
  overflow: visible;
  color: #2d261f;
  padding: 96px 0;
  background-color: #fffdf8;
}

.company-page .company-section::after {
  content: none;
  display: none;
}

.company-page .company-greeting {
  background-color: #fffdf8;
}

.company-page .company-greeting-inner {
  position: relative;
  z-index: 2;
}

.company-page .company-greeting-image,
.company-page .company-greeting-text {
  position: relative;
  z-index: 2;
}

.company-page .company-greeting-image img {
  opacity: 1;
  filter: none;
}

.company-page .company-greeting-text,
.company-page .company-greeting-text p,
.company-page .company-title {
  color: #2d261f;
}

.company-page .company-label {
  color: #6b7d3c;
}

.company-page .company-fv {
  margin-top: 86px;
}

@media (max-width: 767px) {
  .company-page .company-fv {
    margin-top: 70px;
  }
}

/* =========================================================
  味噌づくりへのこだわりページ quality.html（新レイアウト）
  ※トップページのABOUTには影響しません
========================================================= */

.commitment-page {
  overflow: hidden;
  background-color: #f4efe5;
}

/* -------------------------
  ページ導入
------------------------- */
.commitment-intro {
  padding: 190px 0 150px;
  background-color: #f4efe5;
}

.commitment-intro__inner {
  width: min(1120px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 120px;
  align-items: start;
}

.commitment-intro__heading {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 24px;
  min-height: 470px;
}

.commitment-intro__label {
  margin: 4px 0 0;
  color: #9b2f24;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.28em;
  writing-mode: vertical-rl;
}

.commitment-intro__title {
  margin: 0;
  font-size: clamp(38px, 3.4vw, 52px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.13em;
  writing-mode: vertical-rl;
}

.commitment-intro__title span {
  display: block;
}

.commitment-intro__copy {
  padding-top: 82px;
}

.commitment-intro__catch {
  margin: 0 0 42px;
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.1em;
}

.commitment-intro__text {
  max-width: 600px;
  margin: 0;
  font-size: 16px;
  line-height: 2.35;
  letter-spacing: 0.06em;
}

.commitment-intro__text + .commitment-intro__text {
  margin-top: 24px;
}

/* -------------------------
  3つのこだわり
------------------------- */
.commitment-list {
  padding: 10px 0 170px;
  background-color: #f4efe5;
}

.commitment-list__inner {
  width: min(1240px, calc(100% - 80px));
  margin: 0 auto;
}

.commitment-item {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
}

.commitment-item + .commitment-item {
  margin-top: 180px;
}

.commitment-item--reverse {
  grid-template-columns: minmax(340px, 0.65fr) minmax(0, 1.35fr);
}

.commitment-item--reverse .commitment-item__image {
  grid-column: 2;
  grid-row: 1;
}

.commitment-item--reverse .commitment-item__content {
  grid-column: 1;
  grid-row: 1;
}

.commitment-item__image {
  position: relative;
}

.commitment-item__image::before {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid rgba(155, 47, 36, 0.22);
}

.commitment-item--reverse .commitment-item__image::before {
  right: 24px;
  left: auto;
}

.commitment-item__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.commitment-item__content {
  position: relative;
  padding: 24px 0 10px;
}

.commitment-item__number {
  display: flex;
  align-items: flex-end;
  gap: 13px;
  margin-bottom: 42px;
  color: #9b2f24;
  font-family: Georgia, "Times New Roman", serif;
}

.commitment-item__current {
  font-size: 68px;
  line-height: 0.78;
}

.commitment-item__line {
  width: 42px;
  height: 1px;
  margin-bottom: 4px;
  background-color: currentColor;
  transform: rotate(-48deg);
  transform-origin: center;
}

.commitment-item__total {
  margin-bottom: -1px;
  font-size: 18px;
  line-height: 1;
}

.commitment-item__english {
  margin: 0 0 16px;
  color: #9b2f24;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.2em;
}

.commitment-item__title {
  margin: 0;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.08em;
}

.commitment-item__text {
  margin: 34px 0 0;
  font-size: 15px;
  line-height: 2.3;
  letter-spacing: 0.04em;
}

/* -------------------------
  商品紹介CTA
------------------------- */
.commitment-cta {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
  padding: 110px 40px;
  color: #fff;
  text-align: center;
  background-image:
    linear-gradient(rgba(29, 23, 18, 0.56), rgba(29, 23, 18, 0.7)),
    url("../images/features-3.png");
  background-position: center;
  background-size: cover;
}

.commitment-cta__inner {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.commitment-cta__label {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.commitment-cta__title {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.1em;
}

.commitment-cta__text {
  margin: 28px 0 0;
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: 0.05em;
}

.commitment-cta__button {
  min-width: 230px;
  margin-top: 42px;
  padding: 15px 34px;
  display: inline-block;
  color: #1f1b18;
  font-size: 14px;
  letter-spacing: 0.12em;
  background-color: #fff;
  border: 1px solid #fff;
  transition: color 0.3s, background-color 0.3s;
}

.commitment-cta__button:hover {
  color: #fff;
  background-color: transparent;
}

/* -------------------------
  タブレット
------------------------- */
@media (max-width: 1100px) {
  .commitment-intro__inner {
    gap: 72px;
  }

  .commitment-item,
  .commitment-item--reverse {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 64px;
  }
}

@media (max-width: 900px) {
  .commitment-intro {
    padding: 160px 0 110px;
  }

  .commitment-intro__inner {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .commitment-intro__heading {
    min-height: 0;
    display: block;
  }

  .commitment-intro__label {
    margin: 0 0 17px;
    writing-mode: horizontal-tb;
  }

  .commitment-intro__title {
    font-size: clamp(36px, 7vw, 50px);
    line-height: 1.55;
    writing-mode: horizontal-tb;
  }

  .commitment-intro__title span {
    display: inline;
  }

  .commitment-intro__copy {
    max-width: 680px;
    padding-top: 0;
  }

  .commitment-item,
  .commitment-item--reverse {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .commitment-item--reverse .commitment-item__image,
  .commitment-item--reverse .commitment-item__content {
    grid-column: auto;
    grid-row: auto;
  }

  .commitment-item--reverse .commitment-item__image {
    order: 0;
  }

  .commitment-item--reverse .commitment-item__content {
    order: 1;
  }

  .commitment-item__content {
    width: min(620px, 100%);
  }

  .commitment-item--reverse .commitment-item__content {
    margin-left: auto;
  }
}

/* -------------------------
  スマートフォン
------------------------- */
@media (max-width: 767px) {
  .commitment-intro {
    padding: 125px 0 82px;
  }

  .commitment-intro__inner,
  .commitment-list__inner {
    width: min(100% - 40px, 520px);
  }

  .commitment-intro__heading {
    gap: 0;
  }

  .commitment-intro__title {
    font-size: 34px;
    letter-spacing: 0.08em;
  }

  .commitment-intro__catch {
    margin-bottom: 30px;
    font-size: 28px;
    line-height: 1.75;
  }

  .commitment-intro__text {
    font-size: 14px;
    line-height: 2.2;
  }

  .commitment-list {
    padding-bottom: 100px;
  }

  .commitment-item,
  .commitment-item--reverse {
    gap: 42px;
  }

  .commitment-item + .commitment-item {
    margin-top: 110px;
  }

  .commitment-item__image::before {
    top: 14px;
    left: 14px;
  }

  .commitment-item--reverse .commitment-item__image::before {
    right: 14px;
  }

  .commitment-item__number {
    margin-bottom: 30px;
  }

  .commitment-item__current {
    font-size: 56px;
  }

  .commitment-item__title {
    font-size: 29px;
  }

  .commitment-item__text {
    margin-top: 24px;
    font-size: 14px;
    line-height: 2.2;
  }

  .commitment-cta {
    min-height: 500px;
    padding: 90px 20px;
  }

  .commitment-cta__title {
    font-size: 31px;
  }

  .commitment-cta__text {
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .commitment-intro__inner,
  .commitment-list__inner {
    width: calc(100% - 32px);
  }

  .commitment-intro__title {
    font-size: 30px;
  }

  .commitment-intro__catch {
    font-size: 25px;
  }

  .commitment-item__title {
    font-size: 26px;
  }

  .commitment-cta__button {
    width: 100%;
    min-width: 0;
  }
}

/* ==================================================
オンラインショップ準備中ページ
================================================== */

.maintenance-main {
  background-color: #f6f2e9;
}

.maintenance {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 760px;
  padding: 140px 40px;
  overflow: hidden;
  background-color: #f6f2e9;
}

/* 背景の淡い装飾 */

.maintenance::before,
.maintenance::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(124, 99, 70, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.maintenance::before {
  top: -190px;
  left: -190px;
  width: 380px;
  height: 380px;
}

.maintenance::after {
  right: -180px;
  bottom: -210px;
  width: 420px;
  height: 420px;
}

/* 中央の白いボックス */

.maintenance-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  padding: 88px 60px 82px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(105, 84, 58, 0.14);
  box-shadow: 0 20px 60px rgba(70, 53, 35, 0.06);
}

/* 英語見出し */

.maintenance-en {
  margin: 0 0 30px;
  color: #8a7053;
  font-family:
    "Times New Roman",
    "Yu Mincho",
    "YuMincho",
    serif;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.34em;
}

/* メイン見出し */

.maintenance-title {
  margin: 0;
  color: #493b30;
  font-family:
    "Kozuka Mincho Pro",
    "Kozuka Mincho Pr6N",
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    serif;
  font-size: clamp(30px, 3.3vw, 43px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.12em;
}

/* 見出し下の細い線 */

.maintenance-line {
  width: 42px;
  height: 1px;
  margin: 32px auto 34px;
  background-color: #a78c6d;
}

/* 本文 */

.maintenance-text {
  margin: 0 0 16px;
  color: #63564b;
  font-size: 15px;
  line-height: 2.1;
  letter-spacing: 0.07em;
}

.maintenance-note {
  margin: 26px 0 0;
  color: #76624d;
  font-family:
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    serif;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.1em;
}

/* 戻るボタン */

.maintenance-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  min-height: 58px;
  margin-top: 44px;
  padding: 15px 52px 15px 28px;
  color: #ffffff;
  text-decoration: none;
  background-color: #765e45;
  border: 1px solid #765e45;
  transition:
    color 0.3s ease,
    background-color 0.3s ease;
}

.maintenance-button span {
  font-size: 14px;
  letter-spacing: 0.1em;
}

.maintenance-button::before {
  position: absolute;
  top: 50%;
  right: 26px;
  width: 25px;
  height: 1px;
  content: "";
  background-color: currentColor;
  transform: translateY(-50%);
}

.maintenance-button::after {
  position: absolute;
  top: calc(50% - 3px);
  right: 26px;
  width: 7px;
  height: 7px;
  content: "";
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.maintenance-button:hover {
  color: #765e45;
  background-color: transparent;
}

.maintenance-sp-only {
  display: none;
}

/* ==================================================
スマートフォン
================================================== */

@media (max-width: 767px) {

  .maintenance {
    min-height: 680px;
    padding: 90px 20px;
  }

  .maintenance::before {
    top: -130px;
    left: -150px;
    width: 280px;
    height: 280px;
  }

  .maintenance::after {
    right: -150px;
    bottom: -160px;
    width: 300px;
    height: 300px;
  }

  .maintenance-inner {
    width: 100%;
    padding: 64px 24px 60px;
  }

  .maintenance-en {
    margin-bottom: 24px;
    font-size: 11px;
    letter-spacing: 0.28em;
  }

  .maintenance-title {
    font-size: 27px;
    line-height: 1.65;
    letter-spacing: 0.08em;
  }

  .maintenance-line {
    margin: 28px auto 30px;
  }

  .maintenance-text {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.04em;
  }

  .maintenance-note {
    margin-top: 22px;
    font-size: 13px;
  }

  .maintenance-button {
    width: 100%;
    max-width: 270px;
    margin-top: 38px;
  }

  .maintenance-sp-only {
    display: inline;
  }
}

/* ==================================================
   共通ロゴ：logo1.png ＋ 会社名
================================================== */
.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  text-decoration: none;
}

.logo-lockup__image {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex: 0 0 auto;
}

.logo-lockup__name {
  color: #fff;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.logo-lockup--footer {
  gap: 20px;
}

.logo-lockup--footer .logo-lockup__image {
  width: 92px;
  height: 92px;
}

.logo-lockup--footer .logo-lockup__name {
  font-size: 20px;
}

@media (max-width: 1100px) {
  .logo-lockup__image {
    width: 60px;
    height: 60px;
  }

  .logo-lockup__name {
    font-size: 15px;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 767px) {
  .logo-lockup {
    gap: 10px;
  }

  .logo-lockup__image {
    width: 48px;
    height: 48px;
  }

  .logo-lockup__name {
    font-size: 12px;
    letter-spacing: 0.05em;
  }

  .logo-lockup--footer {
    align-items: center;
    gap: 14px;
  }

  .logo-lockup--footer .logo-lockup__image {
    width: 70px;
    height: 70px;
  }

  .logo-lockup--footer .logo-lockup__name {
    font-size: 15px;
    white-space: normal;
  }
}


/* ==================================================
   ロゴ表示の修正：白背景・はみ出し防止
================================================== */
.site-logo {
  width: auto;
  height: auto;
  min-width: 0;
  margin: 0;
  padding: 0;
  background-color: transparent;
  flex: 0 1 auto;
}

.site-logo a {
  width: auto;
  height: auto;
  justify-content: flex-start;
}

.logo-lockup--header {
  max-width: 100%;
}

.logo-lockup--header .logo-lockup__image {
  width: 56px;
  height: 56px;
}

.logo-lockup--header .logo-lockup__name {
  font-size: 16px;
}

.footer-logo {
  width: auto;
  height: auto;
  min-width: 0;
  padding: 0;
  background-color: transparent;
  justify-content: flex-start;
  flex: 0 0 auto;
}

.footer-logo img {
  max-width: none;
  max-height: none;
}

.footer-main {
  align-items: center;
}

.logo-lockup--footer .logo-lockup__image {
  width: 82px;
  height: 82px;
}

.logo-lockup--footer .logo-lockup__name {
  font-size: 18px;
}

@media (max-width: 1100px) {
  .header-inner {
    gap: 24px;
  }

  .logo-lockup--header .logo-lockup__image {
    width: 50px;
    height: 50px;
  }

  .logo-lockup--header .logo-lockup__name {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .header-inner {
    padding-right: 20px;
    padding-left: 20px;
  }

  .logo-lockup--header {
    gap: 9px;
  }

  .logo-lockup--header .logo-lockup__image {
    width: 42px;
    height: 42px;
  }

  .logo-lockup--header .logo-lockup__name {
    max-width: 150px;
    font-size: 11px;
    line-height: 1.45;
    letter-spacing: 0.04em;
    white-space: normal;
  }

  .footer-main {
    align-items: flex-start;
  }

  .logo-lockup--footer .logo-lockup__image {
    width: 68px;
    height: 68px;
  }

  .logo-lockup--footer .logo-lockup__name {
    font-size: 14px;
  }
}
