@charset "UTF-8";

/* ============================================================
   松田家具 テーマスタイルシート
   ============================================================
   目次:
   1. フォント読み込み
   2. ベーススタイル（リセット・共通）
   3. ヘッダー・ナビゲーション
   4. ヒーローセクション
   5. ニュースセクション
   6. 新着商品セクション
   7. 商品紹介セクション
   8. シミュレーターセクション
   9. フッター
   10. ページ共通（パンくず・タイポグラフィ等）
   11. 投稿・固定ページ
   12. 会社情報ページ
   13. お知らせアーカイブ
   14. 商品詳細ページ
   15. タクソノミー・検索結果
   16. カタログページ
   17. お問い合わせページ
   18. 固定メニュー・その他
   19. レスポンシブ（768px以下）
   ============================================================ */

/* ============================================================
   1. フォント読み込み
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New:wght@400;700&display=swap');

/* ============================================================
   2. ベーススタイル（リセット・共通）
   ============================================================ */
body {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", serif, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo;
  text-align: justify;
  text-justify: inter-ideograph;
  font-size: 14px;
  min-height: 100vh;
  box-sizing: border-box;
  color: #333;
  padding-top: 73px;
  position: relative;
}

body.admin-bar {
  padding-top: calc(42px + 32px);
}

body.admin-bar .site-nav {
  top: 32px;
}

body.admin-bar .hero {
  height: calc(100vh - 77px - 32px);
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1rem;
  line-height: 1rem;
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-family: "Shippori Mincho", serif;
}

img.ofit {
  object-fit: cover;
}

.sp-only { display: none; }
.pc-only { display: block; }

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

/* フォーム標準スタイルオーバーライド */
select {
  -webkit-appearance: none;
  background-color: #FFF;
}

/* コンテナ */
.container {
  position: relative;
  width: 1000px;
  margin: 0 auto;
  max-width: 100%;
}

/* セクション共通 */
.section {
  position: relative;
  padding: 80px 0;
}

.section-border {
  width: 700px;
  border-top: 1px solid #333;
  margin: 0 auto;
  height: 1px;
  max-width: 100%;
}

/* ============================================================
   3. ヘッダー・ナビゲーション
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
}

.site-nav__inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.site-nav__logo,
.site-nav__list {
  display: flex;
  align-items: center;
}

.site-nav__logo img {
  width: 181px;
  height: 25px;
  object-fit: contain;
}

.site-nav__list {
  list-style: none;
  margin: 0 0 0 60px;
  padding: 0;
}

.site-nav__item {
  margin-right: 20px;
}

.site-nav__link {
  display: block;
  padding: 25px 10px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  width: 100px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
}

.site-nav__link:hover {
  color: #000;
}

.site-nav__tools {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.site-nav__search {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}

.site-nav__search a {
  text-decoration: none;
  color: #333;
}

/* サブメニュー */
.has-submenu {
  position: static;
}

.has-submenu > .site-nav__link::after {
  font-family: 'dashicons';
  content: '\f347';
  speak: none;
  font-size: 1em;
  margin-left: 4px;
  vertical-align: middle;
  color: #016827;
}

.has-submenu .submenu {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  padding: 20px 0;
  z-index: 998;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.has-submenu:hover .submenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.submenu ul {
  display: flex;
  justify-content: space-around;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.submenu li {
  margin: 0 0px;
}

.submenu li img {
  width: 100%;
  height: auto;
}

.submenu a {
  display: block;
  padding: 10px;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.submenu a span {
  position: relative;
  top: -7px;
  margin-bottom: -7px;
  display: block;
  font-size: 1.6rem;
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}

.submenu-title {
  position: relative;
  padding-top: 10px;
}

/* 検索フォーム */
.search-toggle {
  background: none;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
  color: #333;
  padding: 8px;
  position: relative;
  top: -6px;
}

.global-search-form {
  display: block;
}

.search-icon {
  font-size: 1.5em;
  color: #333;
  margin-left: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.search-icon:hover {
  color: #016827;
}

.global-search-form input[type="search"] {
  background: #DDD;
  border: none;
  padding: 6px 8px;
  width: 165px;
}

/* ヘッダーボタン */
.btn-simulator,
.btn-catalog {
  display: inline-block;
  margin-left: 16px;
  padding: 4px 18px;
  color: #fff;
  text-decoration: none;
  background-color: #333;
}

.btn-catalog {
  background: #016827;
}

/* ============================================================
   4. ヒーローセクション
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 77px);
  overflow: hidden;
}

.hero-slider {
  width: 100%;
  height: 100%;
}

.hero-slider .slick-list,
.hero-slider .slick-track,
.hero-slider .slick-slide {
  height: 100%;
}

.hero-slider--sp {
  display: none;
}

.hero-slider--pc {
  display: block;
}

.hero-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.hero-slide.prezoom {
  transform: scale(1.02);
}

@keyframes zoomSlow {
  from { transform: scale(1.02); }
  to { transform: scale(1.10); }
}

.hero-slide.zooming {
  animation: zoomSlow 6.6s ease-in-out forwards;
}

.hero__content {
  position: absolute;
  top: 40%;
  left: 55%;
  transform: translate(-50%, -50%);
  max-width: 400px;
  color: #fff;
}

/* ============================================================
   5. ニュースセクション
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: 2fr 6fr 2fr;
  gap: 16px;
  align-items: start;
  font-size: 1rem;
}

.news-grid__title {
  align-self: start;
  text-align: center;
}

#news-title {
  font-weight: 700;
}

.news-grid__list {
  align-self: start;
  position: relative;
  top: -4px;
}

.news-grid__link {
  align-self: end;
  text-align: right;
}

.news-grid__link a {
  text-decoration: none;
  font-size: 1rem;
  color: #333;
  transition: 0.2s;
  font-weight: 700;
}

.news-grid__link span {
  padding-left: 30px;
  font-size: 1rem;
  line-height: 1rem;
  position: relative;
  top: 4px;
  transition: 0.2s;
}

.news-list {
  margin: 0;
  padding: 0;
}

.news-list__item {
  margin: 0 0 8px;
  list-style: none;
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.news-list__item a {
  text-align: none;
  color: #333;
  text-decoration: none;
  transition: 0.2s;
  display: block;
  max-width: 600px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}

.news-list__item time {
  color: #999;
  width: 100px;
  display: inline-block;
  transition: 0.2s;
}

.news-list__item a:hover {
  color: #016827 !important;
}

.news-list__item a:hover time {
  color: #016827 !important;
}

/* Dashicons 矢印アニメーション */
.dashicons-arrow-right-alt2,
.dashicons-arrow-right-alt2:before {
  position: relative;
  transition: 0.2s;
}

.news-grid__link a:hover .dashicons-arrow-right-alt2:before {
  left: 5px;
  transition: 0.2s;
}

/* ============================================================
   6. 新着商品セクション
   ============================================================ */
.section--new-products {
  background-color: #f5f5f5;
}

.section--new-arrivals {
  padding: 60px 0;
}

.section--new-arrivals .slick-new-arrivals {
  margin-top: 20px;
}

.new-products-title-en {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-size: 2.5rem;
  text-align: center;
  line-height: 2.5rem;
  display: block;
}

.new-products-title-ja {
  padding-top: 10px;
  display: block;
}

#new-products-title {
  font-size: 1rem;
  display: block;
  text-align: center;
  margin-bottom: 40px;
}

/* 新着スライダー */
.slick-new-arrivals {
  display: flex;
}

.slick-new-arrivals a {
  text-decoration: none;
  color: #333;
}

.slick-new-arrivals .slick-list {
  position: relative;
  overflow: hidden;
}

.slick-new-arrivals .slick-prev,
.slick-new-arrivals .slick-next {
  position: absolute;
  top: 38%;
  transform: translateY(-38%);
  background: none !important;
  border: none !important;
  padding: 0;
  color: #016827;
  font-size: 2em;
  line-height: 1;
  z-index: 10;
  cursor: pointer;
}

.slick-new-arrivals .slick-prev {
  left: -20px;
}

.slick-new-arrivals .slick-next {
  right: -15px;
}

/* 新着アイテム */
.arrival-item {
  padding: 0 10px;
  box-sizing: border-box;
}

.arrival-item figure {
  margin: 0;
  text-align: center;
}

.arrival-item img {
  width: 100%;
  height: auto;
  display: block;
}

.arrival-item figcaption {
  margin-top: 12px;
  text-align: center;
}

.arrival-item h3 {
  font-size: 1rem;
  margin-bottom: 4px;
  font-weight: 700;
}

.arrival-item p {
  font-size: 0.875rem;
  color: #666;
}

.arrival-thumb {
  width: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

.arrival-thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.arrival-link {
  flex: 1 1 calc(33.333% - 1rem);
  margin: .5rem;
  text-align: center;
}

/* ============================================================
   7. 商品紹介セクション
   ============================================================ */
.section--product-intro {}

.intro-list {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 16px;
}

.intro-list li a {
  text-decoration: none;
  color: #016827;
}

/* 商品カテゴリ行 */
.product-intro__category {
  display: flex;
  align-items: flex-start;
  margin-bottom: 80px;
  align-items: stretch;
}

/* テキストカラム */
.product-intro__text {
  display: flex;
  flex-direction: column;
  width: 35%;
  padding-right: 40px;
  box-sizing: border-box;
}

.product-intro__category-name {
  font-size: 1rem;
  color: #333;
  margin: 0 0 8px;
  padding-top: 20px;
  padding-bottom: 10px;
}

.product-intro__title {
  font-size: 2rem;
  margin: 0 0 12px;
  color: #333;
  font-family: "EB Garamond", serif;
  font-weight: 400;
}

.product-intro__description {
  margin: 0 0 16px;
  color: #666;
  line-height: 1.6;
  padding-top: 15px;
  font-size: 1rem;
}

.product-intro__text .btn--outline {
  margin-top: auto;
  margin-bottom: 20px;
}

/* 画像スライダーカラム */
.product-intro__image {
  width: 65%;
  position: relative;
}

.product-intro__image img {
  width: 100%;
  display: block;
  height: auto;
}

.product-intro__image .slick-prev,
.product-intro__image .slick-next {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 2em;
  color: #333;
  z-index: 2;
  cursor: pointer;
}

.product-intro__image .slick-prev {
  left: -30px;
}

.product-intro__image .slick-next {
  right: 25px;
}

.product-intro__image .dashicons-arrow-left-alt2:before {
  background-color: rgba(255, 255, 255, 0.8);
}

.product-intro__image .dashicons-arrow-left-alt2 {
  left: 5px;
  right: 5px;
}

.product-intro__image .dashicons-arrow-right-alt2:before {
  background-color: rgba(255, 255, 255, 0.8);
}

/* ナビゲーション */
.product-intro__nav .product-intro__list {
  display: flex;
  gap: 80px;
  list-style: none;
  padding: 0;
  margin: 0 0 60px;
  justify-content: center;
}

.product-intro__nav .product-intro__item {
  flex: 0 0 auto;
  text-align: center;
}

.product-intro__item div {
  color: #333;
  text-align: center;
  font-size: 1.3rem;
  font-family: "EB Garamond", serif;
  text-decoration: none !important;
}

.product-intro__item a {
  text-decoration: none;
}

.product-intro__item img {
  width: 50%;
  height: auto;
}

/* Slick ドットナビ */
.slick-dots {
  bottom: 10px;
  list-style: none;
  text-align: center;
  margin: 0;
  padding: 0;
  position: relative;
  padding-top: 10px;
}

.slick-dots li {
  display: inline-block;
  margin: 0px 15px;
}

.slick-dots li button.slick-dot-btn {
  width: 10px;
  height: 10px;
  padding: 0;
  background: #ccc;
  border: none;
}

.slick-dots li.slick-active button.slick-dot-btn {
  background: #016827;
}

/* ボタン共通 */
.btn--outline {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid #333;
  background-color: #333;
  color: #FFF;
  text-decoration: none;
  font-size: 1rem;
  width: 200px;
  text-align: center;
  position: relative;
}

.btn--outline:after {
  position: absolute;
  content: "\f345";
  font-family: dashicons;
  right: 10px;
}

.btn--outline span.dashicons {
  margin-left: 4px;
  vertical-align: middle;
}

/* ============================================================
   8. シミュレーターセクション
   ============================================================ */
.section--simulator {
  text-align: center;
}

.section--simulator img {
  width: 100%;
}

.simulator-banner {
  padding: 0px 90px;
}

#simulator-title {
  font-size: 2.5rem;
  font-weight: 400;
}

#simulator p {
  padding: 40px 0px;
  font-size: 1rem;
}

/* ============================================================
   9. フッター
   ============================================================ */
.site-footer-row {
  background-color: #f5f5f5;
}

/* フッターウィジェット */
.footer-widgets {
  display: flex;
  gap: 20px;
  padding: 80px 90px;
}

.footer-column {
  flex: 1;
  padding: 35px;
  background: #fff;
  border: 1px solid #333;
  text-align: center;
}

.footer-column__icon {
  display: block;
  margin: 0 auto 20px;
  padding: 10px;
  min-height: 147px;
}

.footer-column h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.footer-column p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #666;
}

.footer-btn {
  display: inline-block;
  padding: 8px 24px;
  background: #016827;
  color: #fff;
  width: 250px;
  text-decoration: none;
}

/* フッターナビ */
.footer-nav {
  padding: 40px 20px;
}

.footer-nav.container {
  width: 1200px;
  max-width: 100%;
}

.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-nav__col {
  flex: 1;
  min-width: 120px;
}

.footer-nav__col h4 {
  margin-bottom: 12px;
  font-size: 1rem;
}

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

.footer-nav__col ul li {
  margin-bottom: 8px;
  padding-left: 10px;
}

.footer-nav__col ul li a {
  color: #333;
  text-decoration: none;
}

.footer-nav__col--sns ul {
  display: flex;
  gap: 0px !important;
}

.footer-nav__col--sns ul li {
  margin-bottom: 0px;
  padding-left: 0px;
}

.social-icons li a {
  font-size: 1.2rem;
  color: #333;
}

/* SNSアイコン */
.sns-icon {
  padding: 15px;
}

.sns-icon img {
  width: 30px;
  height: 30px;
}

/* フッター下部 */
.site-footer__bottom {
  padding: 20px 0;
  text-align: center;
}

.site-footer__logo-top {
  padding-top: 40px;
  text-align: center;
}

.site-footer__logo img {
  width: 181px;
  height: 25px;
  object-fit: contain;
}

.site-footer__copyright {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #333;
}

/* ============================================================
   10. ページ共通（パンくず・タイポグラフィ等）
   ============================================================ */

/* ページヒーロー */
.page-hero {
  width: 100%;
  height: 150px;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: 10px;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero__title {
  color: #fff;
  font-size: 2.2rem;
  line-height: 1.7rem;
  margin: 0;
  width: 1200px;
  max-width: 100%;
  padding: 0px 20px;
  text-align: center;
}

/* 画像なしの場合のスタイル */
.page-hero--no-image {
  height: auto;
  padding: 20px 0;
}

.page-hero--no-image .page-hero__overlay {
  position: relative;
  background-color: transparent;
}

.page-hero--no-image .page-hero__overlay .page-hero__title {
  color: #333;
  font-size: 24px;
  line-height: 1.4;
}

.page-hero__overlay .page-hero__title {
  text-align: center;
  font-size: 2rem;
}

.page-hero--search {
  background-color: #f5f5f5;
  padding: 4rem 0;
}

.page-hero--search.page-hero--no-image {
  padding: 58px 0;
  background-color: transparent;
}

/* パンくずリスト */
.breadcrumb {
  font-size: 0.7rem;
  margin: 16px 0;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
}

.breadcrumb ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li + li::before {
  content: "›";
  margin: 0 0.5em;
  color: #999;
}

.breadcrumb a {
  color: #333;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: none;
  color: #016827;
}

.breadcrumb li:last-child span {
  color: #333;
}

/* ============================================================
   11. 投稿・固定ページ
   ============================================================ */
.site-main {
  display: flex;
  justify-content: center;
}

.site-main article {
  max-width: 1000px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", serif, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo;
  line-height: 1.8;
  color: #333;
  padding-top: 20px;
  padding-bottom: 60px;
  font-size: 1rem;
}

.site-main .entry-content {
  width: 100%;
  margin-bottom: 100px;
}

/* 見出し */
.site-main article h1,
.site-main article h2,
.site-main article h3,
.site-main article h4,
.site-main article h5,
.site-main article h6 {
  margin: 1em 0 0.5em;
  line-height: 1.3;
  color: #333;
}

.site-main article h1 { font-size: 2.3em; }
.site-main article h2 { font-size: 2em; }
.site-main article h3 { font-size: 1.75em; }
.site-main article h4 { font-size: 1.5em; }
.site-main article h5 { font-size: 1.25em; }
.site-main article h6 { font-size: 1em; }

.entry-header h1 {
  font-size: 2rem !important;
}

/* 段落 */
.site-main article p {
  margin: 0 0 1em;
}

/* リンク */
.site-main article a {
  color: #333;
  text-decoration: underline;
}

.site-main article a:hover {
  color: #016827;
}

/* リスト */
.site-main article ul,
.site-main article ol {
  margin: 0 0 1em 1.5em;
  padding: 0;
}

.site-main article ul li,
.site-main article ol li {
  margin-bottom: 0.5em;
}

/* 強調 */
.site-main article strong,
.site-main article b {
  font-weight: bold;
}

/* 引用 */
.site-main article blockquote {
  margin: 1.5em 0;
  padding: 1em 1.5em;
  background: #f9f9f9;
  border-left: 4px solid #016827;
  color: #555;
}

.site-main article blockquote p {
  margin: 0;
}

/* 表組み */
.site-main article table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
}

.site-main article th,
.site-main article td {
  border: 1px solid #ddd;
  padding: 0.75em 1em;
  text-align: left;
}

.site-main article th {
  background: #f0f0f0;
}

/* 画像 */
.site-main article img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1em auto;
}

/* コードブロック */
.site-main article pre {
  background: #2d2d2d;
  color: #f8f8f2;
  padding: 1em;
  overflow: auto;
  margin: 1em 0;
}

.site-main article code {
  background: #f5f5f5;
  color: #c7254e;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
}

/* フォーム要素 */
.site-main article input,
.site-main article textarea,
.site-main article select,
.site-main article button {
  font-family: inherit;
  font-size: 1em;
  padding: 0.75em;
  margin: 0.5em 0;
  border: 1px solid #666;
  border-radius: 4px;
  box-sizing: border-box;
}

.site-main article input:focus,
.site-main article textarea:focus,
.site-main article select:focus {
  outline: none;
  border-color: #016827;
  box-shadow: 0 0 0 2px rgba(1, 104, 39, 0.2);
}

.site-main article button {
  background: #016827;
  color: #fff;
  border: none;
  cursor: pointer;
}

.site-main article button:hover {
  background: #005a27;
}

/* 2カラムレイアウト */
.single-container {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0px;
}

.layout-2col {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.col-main {
  flex: 3;
}

.col-sidebar {
  flex: 1;
  margin-top: 52px;
  box-sizing: border-box;
  padding-top: 10px;
  padding-bottom: 60px;
}

/* メタ情報 */
.entry-meta {
  display: flex;
  gap: 16px;
  margin: 16px 0;
  font-size: 0.875rem;
  color: #666;
  padding-bottom: 10px;
  border-bottom: 1px solid #666;
  margin-bottom: 10px;
}

.entry-meta .meta-item {
  display: flex;
  align-items: center;
}

.entry-meta .dashicons {
  font-size: 1.2em;
  margin-right: 4px;
}

/* フッターボタン */
.entry-footer {
  text-align: center;
}

.entry-footer .btn--outline {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid #016827 !important;
  background-color: #016827;
  color: #FFF !important;
  text-decoration: none;
  font-size: 1rem;
  width: 250px;
}

/* アイキャッチ画像 */
.entry-thumbnail {
  margin-bottom: 1.5em;
  text-align: center;
}

.entry-thumbnail .responsive-img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* サイドバー */
.col-sidebar .widget {
  margin-bottom: 40px;
}

.col-sidebar .widget:last-child {
  margin-bottom: 0;
}

.col-sidebar .widget-title {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #333;
  border-bottom: 1px solid #666;
  padding-bottom: 8px;
}

.col-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 10px;
}

.col-sidebar li {
  margin-bottom: 8px;
}

.col-sidebar li:last-child {
  margin-bottom: 0;
}

.col-sidebar a {
  color: #333;
  text-decoration: none;
}

.col-sidebar a:hover {
  text-decoration: underline;
}

/* コンテンツセクション */
.entry-content .section {
  padding: 50px 0px;
}

.section__title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.section__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.section__media {
  flex: 0 0 200px;
}

.section__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
}

.section__content {
  flex: 1;
}

.section__highlight {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.section__body p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

.section__signature {
  margin-top: 1.5rem;
  font-weight: bold;
}

/* テーブルコンポーネント */
.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.table th,
.table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-top: 1px solid #ddd;
}

.table th {
  width: 30%;
  background-color: #f9f9f9;
}

/* セクションバリエーション */
.section--01 {}
.section--02 {}
.section--03 {}

/* 折りたたみアーカイブ */
.widget-archives .archive-year {
  margin-bottom: 1em;
  border-radius: 0px;
  overflow: hidden;
}

.widget-archives .archive-year summary {
  cursor: pointer;
  padding: 0.6em 1em;
  list-style: none;
  position: relative;
}

.widget-archives .archive-year[open] summary {}

.widget-archives .archive-year summary::-webkit-details-marker {
  display: none;
}

.widget-archives .archive-year summary::before {
  content: "▶";
  display: inline-block;
  margin-right: 0.5em;
  transition: transform 0.2s ease;
}

.widget-archives .archive-year[open] summary::before {
  transform: rotate(90deg);
}

.widget-archives .archive-months {
  margin: 0;
  padding: 0.5em 1.5em;
  list-style: none;
}

.widget-archives .archive-months li {
  margin-bottom: 0.4em;
  font-size: 0.875rem;
}

.widget-archives .archive-months li:last-child {
  margin-bottom: 0;
}

/* ============================================================
   12. 会社情報ページ
   ============================================================ */

/* 代表者メッセージ */
.company-message {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto 60px;
}

.company-message h2 {
  font-size: 2rem;
  font-weight: 400 !important;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

.company-message .message-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding-top: 30px;
}

.company-message .message-photo {
  flex: 2;
}

.company-message .message-photo img {
  width: 100%;
  display: block;
  height: 630px;
}

.company-message .message-text {
  flex: 3;
  display: flex;
  flex-direction: column;
}

.company-message .message-text .catchcopy {
  font-size: 1.9em;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #222;
  margin-top: 15px;
}

.company-message .message-text .body {
  flex: 1;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0px;
  color: #555;
}

.company-message .message-text .signature {
  margin-top: auto;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", serif, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo;
  font-size: 2rem;
  color: #333;
  text-align: left;
}

.company-message .message-text .signature img {
  height: 50px;
  width: auto;
  max-width: 100%;
  margin: 0;
  display: inline-block;
}

/* 会社概要・工場情報 共通 */
.company-overview table,
.company-overview th,
.company-overview td,
.company-factory table,
.company-factory th,
.company-factory td {
  border: none !important;
  background: none !important;
}

.company-overview tr th,
.company-overview tr td,
.company-factory tr th,
.company-factory tr td {
  border-top: 1px solid #666 !important;
}

.company-overview tr:first-child th,
.company-overview tr:first-child td,
.company-factory tr:first-child th,
.company-factory tr:first-child td {
  border-top: 1px solid #666 !important;
}

.company-overview th,
.company-overview td,
.company-factory th,
.company-factory td {
  padding: 12px 8px;
  vertical-align: top;
}

.company-overview th,
.company-factory th {
  width: 300px !important;
}

/* 会社概要 */
.company-overview {
  max-width: 1000px;
  margin: 0 auto 60px;
}

.company-overview a {
  color: #d20c0c !important;
  text-decoration: none !important;
}

.company-overview h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 32px;
  color: #333;
}

.company-overview table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px !important;
  margin-bottom: 40px !important;
}

.company-overview th {
  width: 30%;
  font-weight: normal;
  color: #333;
  text-align: left;
}

.company-overview td {
  color: #555;
  text-align: left;
}

/* 工場情報 */
.company-factory {
  max-width: 1000px;
  margin: 0 auto 60px;
}

.company-factory h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 32px;
  color: #333;
}

.company-factory table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px !important;
}

.company-factory th {
  width: 25%;
  font-weight: normal;
  color: #333;
  text-align: left;
}

.company-factory td {
  color: #555;
  text-align: left;
}

/* ============================================================
   13. お知らせアーカイブ
   ============================================================ */
.news-archive-container {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.archive-title {
  font-size: 2rem;
  margin-bottom: 32px;
  border-bottom: 1px solid #666;
  padding-bottom: 20px;
  color: #333;
  padding-top: 50px;
}

.news-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-archive-item {
  background: none;
}

.news-archive-item .item-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.item-thumb {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  margin-bottom: 8px;
}

.item-meta {
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 4px;
}

.meta-date {
  display: block;
  text-align: left;
  color: #333;
  margin-bottom: 5px;
}

.meta-cat {
  display: inline-block;
  padding: 2px 4px;
  border: 1px solid #333;
  text-align: left;
  margin-right: 3px;
  font-size: 0.6rem;
  color: #333;
}

.item-title {
  font-size: 1rem;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ページネーション */
.pagination {
  text-align: center;
  margin-top: 40px;
  padding-bottom: 40px;
}

.pagination .page-numbers {
  display: inline-block;
  margin: 0 6px;
  padding: 6px 12px;
  color: #333;
  text-decoration: none;
}

.pagination .current {
  background: #016827;
  color: #fff;
  text-decoration: none;
}

.pagination .page-numbers:hover {
  text-decoration: underline;
}

/* ============================================================
   14. 商品詳細ページ
   ============================================================ */
.product-title {
  padding: 30px 20px;
  display: block;
}

.product-content {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  background: #fff;
  padding-bottom: 120px;
}

.product-catchcopy {
  font-size: 3rem;
  line-height: 4.5rem;
}

.product-hero-fullwidth {
  width: 100%;
  height: 79vh;
  background-size: cover;
  background-position: center;
  margin-bottom: 10px;
}

.product-detail p {
  font-size: 1rem;
  line-height: 2rem;
}

.product-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.gallery-item {
  width: calc(100% / 4 - 12px);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* カタログ詳細ギャラリースライダー */
.catalog-detail-gallery-slider {
  position: relative;
}

.catalog-detail-gallery-slider .gallery-item {
  padding: 0.5rem;
  position: relative;
  overflow: hidden;
}

.catalog-detail-gallery-slider .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.catalog-detail-gallery-slider .slick-prev,
.catalog-detail-gallery-slider .slick-next {
  position: absolute;
  top: 45%;
  transform: translateY(-38%);
  background: none !important;
  border: none !important;
  padding: 0;
  color: #016827;
  font-size: 2em;
  line-height: 1;
  z-index: 10;
  cursor: pointer;
}

.catalog-detail-gallery-slider .slick-prev {
  left: -20px;
}

.catalog-detail-gallery-slider .slick-next {
  right: -15px;
}

/* 特徴グリッド */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
  margin-bottom: 40px;
}

.feature-item {
  width: calc(100% / 3 - 22px);
}

.feature-item h3 {
  font-weight: 700;
}

.feature-item img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.features-heading {
  font-size: 2rem;
  line-height: 2.5rem;
  margin-top: 3rem;
  text-align: left;
  padding-bottom: 15px;
  border-bottom: 1px solid #666;
}

/* フリースペース */
.product-freespace {
  margin-bottom: 40px;
  font-size: 1rem;
}

/* 製品PDF */
.product-pdf {
  margin-top: 2rem;
}

.product-pdf a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #016827;
  color: #fff;
  text-decoration: none;
  width: 300px;
  position: relative;
}

.product-pdf a:hover {
  background-color: #005a27;
}

/* ギャラリーグリッド */
.catalog-detail-gallery-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* モーダル */
.catalog-detail-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.catalog-detail-modal-content {
  position: relative;
  max-width: 600px;
  width: 90%;
  background: #fff;
  padding: 1rem;
  padding-bottom: 2rem;
  text-align: center;
}

.catalog-detail-modal .modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.catalog-detail-modal img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0.2rem;
}

.catalog-detail-modal h3 {
  margin: 0;
  font-size: 1.25rem;
}

/* モーダルナビボタン */
.modal-prev,
.modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 2rem;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  z-index: 10;
}

.modal-prev {
  left: 0.5rem;
}

.modal-next {
  right: 0.5rem;
}

.material-symbols-outlined {
  position: relative;
  top: 2px;
  font-size: 1.1rem;
}

/* ============================================================
   15. タクソノミー・検索結果
   ============================================================ */
.archive-description {
  margin-bottom: 2rem;
  text-align: center;
  color: #555;
  line-height: 1.6;
}

.archive-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 0;
  margin-top: 25px;
  padding-bottom: 50px;
  padding: 0px 20px;
}

.archive-search {
  display: flex;
}

.archive-search__input,
.archive-search-input {
  padding: 0.5rem;
  width: 320px;
  max-width: 100%;
  border: 1px solid #333;
}

.archive-search__button {
  padding: .5em 1em;
  margin-left: .5em;
  cursor: pointer;
}

.archive-sort__select,
.archive-sort-select {
  padding: 0.5rem;
  border: 1px solid #333;
  width: 170px;
}

/* 商品グリッド */
.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: flex-start;
  margin-bottom: 2rem;
  padding: 10px 20px;
}

.product-card {
  flex: none;
  width: calc(100% / 3 - 22px);
  max-width: 100%;
  text-align: center;
  background: #fff;
  overflow: hidden;
}

.product-card a {
  text-decoration: none;
}

.product-card__img,
.product-card-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-card__title,
.product-card-title {
  margin: 10px 0px;
  font-size: 1.125rem;
  color: #333;
  line-height: 1.4;
  font-weight: 700;
}

.product-card-catchcopy {
  margin-bottom: 1rem;
  color: #555;
  font-size: 0.85rem;
  line-height: 1.5;
}

/* 検索結果 */
.search-results .product-card {
  width: calc(100% / 3 - 22px) !important;
  text-align: center;
  background: #fff;
  overflow: hidden;
  flex: none;
  max-width: 100%;
}

.search-results .products-grid a {
  color: #333 !important;
}

.no-products {
  text-align: center;
  margin: 2rem 0;
}

/* ============================================================
   16. カタログページ
   ============================================================ */
.page-catalog .section__content p {
  text-align: center;
  color: #555;
  margin-bottom: 2rem;
}

.page-catalog .section--01 {
  padding-top: 20px;
}

.page-catalog .catalog-list__title {
  margin: 0;
}

.page-catalog .section__title {
  margin-top: 0px;
  margin-bottom: 40px;
  font-weight: 400;
}

.page-catalog figure {
  margin: 0;
}

.catalog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
}

.catalog-list__item {
  width: calc(100% / 2 - 16px);
  text-align: center;
  max-width: 100%;
}

.catalog-list__item a {
  text-decoration: none !important;
}

.catalog-list__thumb img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 !important;
}

.catalog-list__title {
  margin-top: 0.75rem;
}

.catalog-list__subtitle {
  display: block;
  font-size: 1rem;
  color: #666;
  padding-top: 10px;
}

.catalog-list__name {
  display: block;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  font-family: "EB Garamond", serif;
  font-weight: 400;
}

/* カタログ詳細ページ */
.page-catalog-detail .catalog-download {
  text-align: center;
  margin-bottom: 1.5rem;
}

.page-catalog-detail .archive-search-wrap,
.page-catalog-detail .archive-sort-wrap {
  display: inline-block;
  margin-right: 1rem;
}

.page-catalog-detail .archive-sort-wrap {
  float: right;
}

.page-catalog-detail .section--01 {
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
}

.page-catalog-detail .section--01 h1 {
  font-size: 2.25rem;
  padding-bottom: 25px;
}

.page-catalog-detail .archive-controls {
  padding: 0px;
}

/* カタログ詳細グリッド */
.catalog-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  justify-items: start;
}

.catalog-detail-card {
  text-align: center;
  padding: 0 !important;
}

.catalog-detail-card img {
  width: 100%;
  height: auto;
  display: block;
}

.catalog-detail-card .product-card-title {
  margin-top: .5rem;
  font-size: 1rem;
}

.catalog-detail-card a {
  text-decoration: none !important;
}

.product-pdf-download a {
  text-decoration: none !important;
}

.product-pdf-download a span {
  position: relative;
  top: 3px;
}

/* ============================================================
   17. お問い合わせページ
   ============================================================ */
.page-contact .required {
  color: #d20c0c !important;
}

.page-contact .section__content a {
  color: #cf1515;
  text-decoration: none;
}

/* Contact Form 7 */
.wpcf7-form label {
  display: block;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.two-columns {
  display: flex;
  gap: 1.5rem;
}

.two-columns label {
  flex: 1;
  margin-bottom: 1.5rem;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="email"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: .75rem;
  border: 1px solid #666;
  box-sizing: border-box;
}

.privacy {
  margin-top: 1rem;
}

.privacy .wpcf7-list-item-label {
  font-weight: normal;
  margin-left: .5rem;
}

.submit-button {
  text-align: center;
  margin-top: 2rem;
}

.submit-button .wpcf7-submit {
  background-color: #006837;
  color: #fff;
  padding: .75rem 2rem;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  width: 260px;
  border-radius: 0px;
  position: relative;
}

.submit-button .wpcf7-submit:after {
  position: absolute;
  right: 10px;
  font-family: dashicons;
  content: "\f345";
}

.wpcf7-list-item.first {
  margin: 0;
}

/* ============================================================
   18. 固定メニュー・その他
   ============================================================ */
.fix-menu-contact {
  position: fixed;
  right: 0px;
  top: 40%;
}

.fix-menu-contact img {
  width: 46px;
  height: 165px;
  object-fit: cover;
}

.fix-menu-top {
  position: fixed;
  right: 0px;
  top: 70%;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.fix-menu-top.show {
  display: block;
}

.fix-menu-top.visible {
  opacity: 1;
}

.fixed-bottom-buttons {
  display: none;
}

/* ============================================================
   19. レスポンシブ（768px以下）
   ============================================================ */
@media (max-width: 768px) {
  /* ベース */
  body {
    padding-top: 62px;
    font-size: 12px;
    padding-bottom: 62px;
  }

  .pc-only { display: none; }
  .sp-only { display: block; }

  /* ヘッダー */
  .header, .site-header {
    position: relative;
    z-index: 10000;
  }

  .site-nav__inner { flex-direction: column; }
  .site-nav__tools { margin-left: 0; margin-top: 10px; }

  /* ヒーロー */
  .hero {
    height: 70vh !important;
  }

  .hero-slider,
  .hero-slider .slick-list,
  .hero-slider .slick-track,
  .hero-slide,
  .hero-slider .slick-slide {
    height: 100%;
  }

  .hero-slider--pc {
    display: none !important;
  }

  .hero-slider--sp {
    display: block !important;
  }

  /* ドロワーメニュー */
  .drawer-header {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10001;
    min-height: 66px;
  }

  .drawer-actions {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 8px;
  }

  .drawer-logo img {
    height: 20px;
    width: auto;
  }

  .drawer-toggle {
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    z-index: 1002;
    position: relative;
    width: 40px;
  }

  .drawer-nav {
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    height: calc(100vh - 67px);
  }

  .drawer-nav.open {
    transform: translateY(0);
  }

  .drawer-menu {
    list-style: none;
    padding: 10px;
    margin: 0;
    background: #333;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
  }

  .drawer-menu li {
    padding: 0;
    margin: 0;
    width: 50%;
  }

  .drawer-menu a {
    display: block;
    padding: 10px;
    color: #fff;
    text-decoration: none;
  }

  .drawer-menu img {
    width: 100%;
    height: auto;
    display: block;
  }

  .drawer-overlay {
    position: fixed;
    top: 67px;
    left: 0;
    width: 100%;
    height: calc(100% - 67px);
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
  }

  .drawer-menu-title {
    display: block;
    width: 100%;
    font-size: 16px;
    padding: 14px 20px;
    border-bottom: 1px solid #555;
    margin-bottom: 11px;
  }

  .menu-title {
    display: block;
    font-size: 24px;
    line-height: 13px;
    font-weight: 400;
    text-align: center;
    margin-top: 5px;
    font-family: "EB Garamond", serif;
  }

  .menu-subtitle {
    display: block;
    font-size: 12px;
    text-align: center;
    color: #aaa;
    margin-bottom: 0px;
    padding-top: 5px;
  }

  .text-link {
    width: 100% !important;
    position: relative;
  }

  .text-link a {
    padding: 14px 20px;
    font-size: 16px;
    border-top: 1px solid #555;
    display: block;
    position: relative;
  }

  .text-link a:after {
    position: absolute;
    content: "\f345";
    font-family: dashicons;
    right: 10px;
  }

  /* ニュースセクション */
  .news-grid {
    display: block;
  }

  .news-grid__title {
    text-align: left;
    margin-bottom: 1rem;
  }

  #news-title {
    font-size: 1.2rem;
  }

  .news-list__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.95rem;
    padding: 10px 0;
    margin: 0;
  }

  .news-list__item time {
    order: 2;
    flex-shrink: 0;
    margin-left: 1rem;
    margin: 0;
    width: 60px;
    color: #999;
    font-size: 0.8rem;
  }

  .news-list__item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    gap: 1rem;
    text-decoration: none;
    color: #333;
    max-width: 100%;
  }

  .news-grid__link {
    text-align: right;
    margin-top: 1rem;
  }

  .news-grid__link span {
    padding-left: 0px;
  }

  .news-more {
    font-size: 0.9rem;
    text-decoration: none;
    color: #333;
  }

  .news-title {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: middle;
  }

  /* 新着商品 */
  .new-products-title-en {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  #new-products-title {
    font-size: 0.9rem;
    display: block;
    text-align: center;
    margin-bottom: 20px;
  }

  .arrival-item {
    padding: 0px;
  }

  .arrival-link {
    flex: 1 1 calc(50% - 1rem);
  }

  .slick-new-arrivals .slick-prev {
    left: -13px;
    top: 27%;
  }

  .slick-new-arrivals .slick-next {
    right: -10px;
    top: 27%;
  }

  /* 商品紹介 */
  .product-intro__nav .product-intro__list {
    gap: 10px;
    margin: 0 0 30px;
  }

  .product-intro__category {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
  }

  .product-intro__text {
    order: 2;
    width: 100%;
    padding-right: 0px;
  }

  .product-intro__image {
    order: 1;
    width: 100%;
  }

  .product-intro__item img {
    width: 65%;
    height: auto;
  }

  .product-intro__nav .product-intro__item {
    flex: 1;
    text-align: center;
  }

  .product-intro__item div {
    font-size: 0.7rem;
  }

  .product-intro__image .slick-prev {
    left: 0;
  }

  .product-intro__image .slick-next {
    right: 16px;
  }

  .slick-dots {
    bottom: 6px;
  }

  .product-intro__category-name {
    font-size: 0.9rem;
    color: #333;
    margin: 0 0 6px;
    padding-top: 10px;
    padding-bottom: 6px;
    padding-left: 15px;
  }

  .product-intro__title {
    font-size: 1.8rem;
    margin: 0 0 10px;
    padding-left: 15px;
  }

  .product-intro__description {
    margin: 0 0 25px;
    color: #666;
    line-height: 1.6;
    padding-top: 4px;
    font-size: 0.9rem;
    padding-left: 15px;
  }

  .btn--outline {
    font-size: 1rem;
    width: 100%;
  }

  /* シミュレーター */
  #simulator-title {
    font-size: 1.5rem;
    font-weight: 400;
  }

  #simulator p {
    padding: 20px 0px;
    font-size: 0.9rem;
    text-align: left;
  }

  .simulator-banner {
    padding: 0px 0px;
  }

  /* セクション */
  .section {
    position: relative;
    padding: 40px 15px;
  }

  .fix-menu-contact {
    display: none;
  }

  /* フッター */
  .footer-widgets {
    flex-direction: column;
    gap: 0;
    padding: 40px 15px;
  }

  .footer-column {
    margin-bottom: 20px;
  }

  .footer-nav__list {
    display: block;
  }

  .footer-nav__col h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    margin-bottom: 0;
  }

  .footer-nav__col--accordion h4::after {
    font-family: dashicons;
    content: "\f345";
    transform: rotate(0deg);
    transition: transform 0.3s;
    font-size: 0.9em;
  }

  .footer-nav__col--accordion.active h4::after {
    transform: rotate(90deg);
  }

  .footer-nav__col--accordion ul {
    display: none;
    padding: 0 1em 1em;
  }

  .footer-nav__col ul li {
    font-size: 1rem;
  }

  .footer-nav__col--sns ul {
    display: flex;
    padding: 0 1rem 1rem;
  }

  .footer-nav__col--sns h4::after {
    content: none;
  }

  .site-footer__copyright {
    font-size: 0.55rem;
  }

  /* 商品詳細 */
  .product-title {
    padding: 10px 10px;
    display: block;
    font-size: 1.5rem;
  }

  .product-catchcopy {
    padding-top: 10px;
    font-size: 1.4rem;
    line-height: 2rem;
    font-weight: 700;
  }

  .product-detail p {
    font-size: 14px;
    line-height: 25px;
  }

  .feature-item {
    width: calc(100%);
  }

  .features-heading {
    font-size: 1.4rem;
    line-height: 2.5rem;
    margin-top: 10px;
    text-align: left;
    padding-bottom: 15px;
    border-bottom: 1px solid #666;
  }

  .product-hero-fullwidth {
    width: 100%;
    height: 26vh;
    margin-bottom: 0px;
  }

  .product-pdf a {
    width: 100%;
  }

  .product-content {
    padding-bottom: 40px;
  }

  /* ページヒーロー */
  .page-hero__overlay .page-hero__title {
    text-align: center;
    font-size: 1.5rem;
  }

  .page-hero {
    height: 90px;
    margin-bottom: 0px;
  }

  /* アーカイブ */
  .archive-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
    margin-top: 25px;
    padding-bottom: 50px;
    padding: 0px 15px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .archive-title {
    font-size: 1.5rem;
    margin-bottom: 32px;
    border-bottom: 1px solid #666;
    padding-bottom: 20px;
    color: #333;
    padding-top: 30px;
  }

  /* 商品グリッド */
  .products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 2rem;
    padding: 10px 15px;
  }

  .product-card {
    flex: none;
    width: calc(100% / 2 - 7px);
    max-width: 100%;
    text-align: center;
    background: #fff;
    overflow: hidden;
  }

  .product-card img {
    height: 180px !important;
  }

  .product-card-title {
    margin: 10px 0px;
    font-size: 1rem;
    color: #333;
    line-height: 1.4;
    font-weight: 700;
  }

  .product-card__title {
    line-height: 1.4rem;
  }

  .search-results .product-card {
    width: calc(100% / 2 - 7px) !important;
  }

  /* 記事 */
  .entry-header h1 {
    margin-top: 10px !important;
    font-size: 1.4rem !important;
    line-height: 1.6rem !important;
  }

  .entry-content h2 {
    font-size: 1.2rem !important;
    font-weight: 700;
  }

  .entry-content h3 {
    font-size: 1.1rem !important;
    font-weight: 700;
  }

  .entry-footer .btn--outline {
    width: 100%;
  }

  .site-main article h1 {
    font-size: 2em;
  }

  /* レイアウト */
  .layout-2col {
    display: flex;
    flex-direction: column;
    gap: 0px;
  }

  .col-sidebar {
    padding: 15px;
    padding-top: 0px;
  }

  /* 会社情報 */
  .company-message .message-inner {
    display: flex;
    gap: 0px;
    align-items: flex-start;
    padding-top: 0px;
    flex-direction: column;
  }

  .company-message .message-photo img {
    width: 100%;
    display: block;
    height: 510px;
  }

  .company-message .message-text .catchcopy {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #222;
    margin-top: 9px;
  }

  .company-message .message-text .signature img {
    height: 41px;
    width: auto;
    max-width: 100%;
    margin: 0;
    display: inline-block;
  }

  .company-section table {
    width: 100%;
    border-collapse: collapse;
  }

  .company-section table tr {
    display: block;
    margin-bottom: 1em;
    border-bottom: 1px solid #666;
    padding-bottom: 15px;
  }

  .company-section table th,
  .company-section table td {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.3em 0;
  }

  .company-section table th {
    font-weight: bold;
  }

  .company-overview tr:first-child th,
  .company-overview tr:first-child td,
  .company-factory tr:first-child th,
  .company-factory tr:first-child td {
    border-top: 0px solid #666 !important;
  }

  .company-overview tr th,
  .company-overview tr td,
  .company-factory tr th,
  .company-factory tr td {
    border-top: 0px solid #666 !important;
  }

  /* カタログ */
  .page-catalog .section__title {
    margin-top: 0px;
    margin-bottom: 30px;
    font-weight: 400;
  }

  .catalog-list__name {
    font-size: 2rem;
  }

  .catalog-list {
    gap: 1rem;
    list-style: none;
  }

  .catalog-list__item {
    flex: 1 1 100%;
    max-width: 100%;
  }

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

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

  .page-catalog-detail .section--01 h1 {
    font-size: 2rem;
    padding-bottom: 20px;
    line-height: 2.25rem;
  }

  .catalog-detail-modal h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.3rem;
  }

  .gallery-trigger {
    position: relative;
    color: #333;
    text-decoration: none;
  }

  .gallery-trigger .fa-search-plus {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 25px;
  }

  /* ニュースアーカイブ */
  .news-archive-grid {
    grid-template-columns: 1fr;
  }

  /* パンくず */
  .breadcrumb {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    display: block;
    max-width: 100%;
    padding-bottom: 0.5em;
    padding-top: 10px;
  }

  .breadcrumb ul {
    display: inline-flex;
    flex-wrap: nowrap;
    padding: 0;
    margin: 0;
    list-style: none;
    white-space: nowrap;
  }

  .breadcrumb li {
    display: inline;
    white-space: nowrap;
  }

  .breadcrumb li + li::before {
    content: "›";
    margin: 0 0.5em;
    color: #999;
  }

  .section-wrap {
    padding: 0px 15px;
  }

  /* 固定ボトムボタン */
  .fixed-bottom-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 1000;
    font-size: 16px;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
  }

  .fixed-bottom-buttons a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }

  .fixed-bottom-buttons i {
    margin-right: 8px;
    font-size: 18px;
  }

  .foot-btn-catalog {
    background-color: #007a33;
  }

  .foot-btn-contact {
    background-color: #000;
  }

  .fixed-bottom-buttons img {
    width: 24px;
    height: 24px;
    margin-bottom: 5px;
  }

  /* お問い合わせ */
  .page-contact .section__content p {
    margin: 0 0 3em;
  }

  .page-contact .entry-content section {
    padding-top: 20px;
    padding-bottom: 0px;
  }

  .wpcf7-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
  }

  .c-title {
    font-size: 1rem;
    font-weight: 700;
    padding-top: 10px;
    display: inline-block;
  }

  .in-type .wpcf7-list-item {
    display: block !important;
    margin: 0 !important;
  }

  .wpcf7-acceptance .wpcf7-list-item {
    margin: 0 !important;
  }

  .submit-button .wpcf7-submit {
    width: 100%;
  }

  .social-icons li {
    list-style: none;
    display: inline-block;
    padding: 0px 0px;
  }

  .social-icons li a {
    font-size: 1rem;
  }

  .two-columns {
    display: flex;
    gap: 3px;
  }

  .section__form input,
  .section__form textarea,
  .section__form select,
  .section__form button {
    font-family: inherit;
    font-size: 1em;
    padding: 0.75em;
    margin: 0.5em 0;
    border: 1px solid #666;
    border-radius: 4px;
    box-sizing: border-box;
  }

  /* スマホ版検索フォーム */
  .global-search-form-sp {
    display: none;
    position: fixed;
    top: 66px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 10px;
    z-index: 1002;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
  }

  #global-s-sp {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    box-sizing: border-box;
  }
}
