@charset "UTF-8";

.sub_head {
  margin-bottom: 0px;
  background: url(../images/equipment/mv.webp);
  background-position: center;
  background-size: cover;
}
@media (max-width: 1024px) {
}
.content {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.15em;
  font-size: 18px;
}
h3 {
  padding: 0;
  font-size: clamp(2rem, 3vw, 40px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.eq_lead {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0;
  margin: 0 auto 80px;
}
@media (max-width: 1024px) {
}
.eq_wrap {
  max-width: 1200px;
  padding: 0 20px;
  margin: 30px auto 0;
}

.eq_box {
  margin-bottom: 30px;
}
.box_ttl {
  font-weight: normal;
  margin-bottom: 20px;
  padding: 10px 0 10px 20px;
  font-size: 1.8rem;
  color: #fff;
  background: #093d27;
  line-height: 1.5;
  font-weight: bold;
  font-family: 'Yu Gothic', 'Hiragino Sans', 'Meiryo', sans-serif;
}

.eq_culumn.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 20px;
}

.eq_culumn.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
}
.eq_culumn.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
}

.eq_item_wide {
  grid-column: span 2;
}

.img_2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.img_2col img {
  width: 100%;
  display: block;
}

.item_ttl {
  color: #093d27;
  padding-bottom: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-bottom: #000 1px solid;
  font-size: 1.3rem;
  font-weight: bold;
  font-family: 'Yu Gothic', 'Hiragino Sans', 'Meiryo', sans-serif;
}
.item_ttl span {
  font-size: 14px;
}
.txt {
  line-height: 2.2;
}
@media (max-width: 1024px) {
  .eq_culumn.grid4 {
    grid-template-columns: 1fr;
  }

  .eq_culumn.grid3 {
    grid-template-columns: repeat(1, 1fr);
  }
  .eq_culumn.grid2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .eq_item_wide {
    grid-column: span 1;
  }
}
.eq_culumn.kitchen {
  display: grid;
  grid-template-columns: 48% 1fr;
  gap: 30px;
  align-items: start;
}

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

.eq_small_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.eq_small_wrap .eq_item {
  width: 100%;
}
@media (max-width: 1024px) {
  .eq_culumn.kitchen {
    grid-template-columns: 1fr;
  }
  .eq_small_wrap {
    grid-template-columns: 1fr;
  }
}
.eq_nav {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;

  max-width: 1200px;
  padding: 0 20px;
  margin: 80px auto 30px;
}

.eq_nav a {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 60px;

  background: #f3f3f3;
  color: #333;
  text-decoration: none;

  transition: 0.3s;
  font-family: 'Yu Gothic', 'Hiragino Sans', 'Meiryo', sans-serif;
  font-weight: bold;

  font-size: 1.3rem;
}

.eq_nav a.active {
  background: #093d27;
  color: #fff;
}
@media (max-width: 1024px) {
  .eq_nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =======================
   タブボタン
======================= */
.tab_btns {
  display: flex;
  gap: 16px;
  max-width: 960px;
  margin: 80px auto;
  padding: 0 20px;
}

.bottom_tab {
  margin-top: 50px;
}

.tab_btn {
  font-style: normal;
  font-weight: 300;
  font-feature-settings: 'palt';
  text-size-adjust: 100%;
  flex: 1;
  padding: 20px 0px;

  border-width: 1px;
  border-style: solid;
  background: #fff;

  font-size: 1.25rem;
  line-height: 1.7;
  letter-spacing: 0.08em;

  cursor: pointer;
  transition: 0.35s ease;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  border: 1px solid #093d27;
  color: #093d27;
  gap: 8px; /* テキストと矢印の間隔 */
  /* 既存スタイルに追記 */
  font-family: 'Yu Gothic', 'Hiragino Sans', 'Meiryo', sans-serif;
  font-weight: bold;
}

/* ========================================
   矢印（::after 疑似要素）
======================================== */
.tab_btn::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translateX(0);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

/* ========================================
   ホバー時：矢印を右へ 5px 移動
======================================== */
/* 通常時：#093d27 */
.tab_btn::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23093d27' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E");
}

/* ホバー時：#fff ＋ 右へ移動 */
.tab_btn:hover::after {
  transform: translateX(5px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E");
}

/* アクティブ時：#fff */
.tab_btn.active::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E");
}

.tab_btn:hover,
.tab_btn.active {
  background: #093d27;
  color: #fff;
}

/* =======================
   コンテンツ
======================= */

.tab_content {
  display: none;
  animation: fadeTab 0.4s ease;
}

.tab_content.active {
  display: block;
}

@keyframes fadeTab {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1024px) {
  .tab_btns {
    flex-direction: column;
    margin: 50px auto;
  }
}

#specification .item_ttl {
  color: #fff;
  background-color: #093d27;
  padding: 10px;
  margin: 0 auto 20px;
  font-size: 1.3rem;
  padding: 10px 0 10px 1rem;
  color: #fff;
  background: #093d27;
  line-height: 1.5;
  font-weight: bold;
  font-family: 'Yu Gothic', 'Hiragino Sans', 'Meiryo', sans-serif;
}
#specification .img_cap {
  color: #000;
  text-shadow: none;
}
#specification .eq_culumn + .eq_culumn {
  margin-top: 30px;
}
@media (max-width: 1024px) {
}
@media (max-width: 1024px) {
}
