@charset "UTF-8";
/* =============================================================
   equipment page
============================================================= */

@media only screen and (min-width: 768px) {
  .equipmentSect {
    padding: 120px 0;
  }
}
@media only screen and (max-width: 767px) {
  .equipmentSect {
    padding: calc(80 / 375 * 100vw) 0;
  }
}

/* タブ切り替えナビ
---------------------------------------------- */
.equipTabNav {
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .equipTabNav {
    gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .equipTabNav {
    flex-direction: column;
    align-items: center;
    gap: calc(20 / 375 * 100vw);
  }
}
@media only screen and (min-width: 768px) {
  .equipTabNav--bottom {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .equipTabNav--bottom {
    margin-top: calc(64 / 375 * 100vw);
  }
}
.equipTabNav__btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  border: 1px solid #253654;
  color: #253654;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
@media only screen and (min-width: 768px) {
  .equipTabNav__btn {
    width: 298px;
    height: 58px;
    gap: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .equipTabNav__btn {
    width: calc(298 / 375 * 100vw);
    height: calc(58 / 375 * 100vw);
    gap: calc(10 / 375 * 100vw);
  }
}
@media (hover: hover) and (pointer: fine) {
  .equipTabNav__btn:hover {
    background: #253654;
    border-color: #253654;
    color: #fff;
  }
}
.equipTabNav__btn.is-active {
  background: #253654;
  border-color: #253654;
  color: #fff;
  pointer-events: none;
}
.equipTabNav__btn .jp {
  line-height: 1;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 768px) {
  .equipTabNav__btn .jp {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .equipTabNav__btn .jp {
    font-size: calc(16 / 375 * 100vw);
  }
}
.equipTabNav__btn .en {
  font-family: "EB Garamond", "Cormorant Garamond", serif;
  line-height: 0.7;
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 768px) {
  .equipTabNav__btn .en {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .equipTabNav__btn .en {
    font-size: calc(11 / 375 * 100vw);
  }
}

/* タブパネル
---------------------------------------------- */
.equipTabPanel {
  display: none;
}
.equipTabPanel.is-active {
  display: block;
}
@media only screen and (min-width: 768px) {
  .equipTabPanel {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .equipTabPanel {
    margin-top: calc(56 / 375 * 100vw);
  }
}
.equipTabPanel__copy {
  text-align: center;
}
/* リードコピーはFigma pc/h2-pc = 32px（=headingLv3既定 PC32 / SP22）をそのまま使う */
.equipTabPanel__copy .headingLv3 {
  text-align: center;
}

/* カテゴリ（ダークバー見出し + カードリスト）
---------------------------------------------- */
@media only screen and (min-width: 768px) {
  .equipTabPanel__copy + .equipmentCat {
    margin-top: 60px;
  }
  .equipmentCat + .equipmentCat {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .equipTabPanel__copy + .equipmentCat {
    margin-top: calc(48 / 375 * 100vw);
  }
  .equipmentCat + .equipmentCat {
    margin-top: calc(64 / 375 * 100vw);
  }
}
.equipmentCat__head {
  background: #253654;
  color: #fff;
  display: flex;
  align-items: center;
  font-family: "EB Garamond", "Cormorant Garamond", serif;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  .equipmentCat__head {
    font-size: 16px;
    height: 40px;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  .equipmentCat__head {
    font-size: calc(14 / 375 * 100vw);
    height: calc(40 / 375 * 100vw);
    padding: 0 calc(16 / 375 * 100vw);
  }
}
@media only screen and (min-width: 768px) {
  .equipmentCat__head + .equipmentList {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .equipmentCat__head + .equipmentList {
    margin-top: calc(32 / 375 * 100vw);
  }
}

/* カードリスト
---------------------------------------------- */
.equipmentList {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .equipmentList {
    gap: 40px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .equipmentList {
    gap: calc(40 / 375 * 100vw) calc(15 / 375 * 100vw);
  }
}
@media only screen and (min-width: 768px) {
  .equipmentList__item {
    width: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .equipmentList__item {
    width: calc((100% - 15 / 375 * 100vw) / 2);
  }
}
@media only screen and (min-width: 768px) {
  .equipmentList__item--large {
    width: 630px;
  }
}
@media only screen and (max-width: 767px) {
  .equipmentList__item--large {
    width: 100%;
  }
  .equipmentList__item--logo .equipmentCard__ttl {
    letter-spacing: -0.02em;
  }
}
.equipmentList__item--wide {
  width: 100%;
}

/* カード
---------------------------------------------- */
.equipmentCard {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .equipmentCard {
    gap: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .equipmentCard {
    gap: calc(20 / 375 * 100vw);
  }
}
.equipmentCard__visual {
  position: relative;
}
.equipmentCard__visual .photo__image {
  display: block;
  width: 100%;
}
.equipmentCard__visual:after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #ccc;
  pointer-events: none;
}
.equipmentCard__visual--noBorder:after {
  content: none;
}
/* カード内キャプション（参考写真/概念図）はFigma準拠で10px */
.equipmentCard__visual .cap {
  font-size: 10px;
}
/* カード内キャプション:
   写真は data-color="shadow"（白＋影）で写真上に、
   概念図など明るい背景の図は data-color 無し＝.cap既定のグレー(#999)で視認性を確保する。 */
.equipmentCard__desc {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .equipmentCard__desc {
    gap: 20px;
  }
  /* Figmaはタイトル→本文=24px、本文→注記=20px。gap20に+4して24を作る */
  .equipmentCard__desc .equipmentCard__ttl + .txt {
    margin-top: 4px;
  }
}
@media only screen and (max-width: 767px) {
  .equipmentCard__desc {
    gap: calc(20 / 375 * 100vw);
  }
}
.equipmentCard__desc .txt {
  color: #222;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 768px) {
  .equipmentCard__desc .txt {
    font-size: 14px;
    line-height: 1.8;
  }
}
@media only screen and (max-width: 767px) {
  .equipmentCard__desc .txt {
    font-size: calc(12 / 375 * 100vw);
    line-height: 1.5;
  }
}
.equipmentCard__desc .cap {
  color: #999;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 768px) {
  .equipmentCard__desc .cap {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .equipmentCard__desc .cap {
    font-size: 10px;
  }
}
.equipmentCard__ttl {
  color: #7a6a44;
  line-height: 1.8;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 14px;
}
@media only screen and (min-width: 768px) {
  .equipmentCard__ttl {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .equipmentCard__ttl {
    font-size: calc(14 / 375 * 100vw);
    padding-bottom: calc(14 / 375 * 100vw);
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}
.equipmentCard__ttl::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #7a6a44;
}
.equipmentCard__ttl sup {
  font-size: 0.6em;
  vertical-align: super;
  line-height: 1;
}

/* wideカード（630px画像 + テキスト横並び）
---------------------------------------------- */
@media only screen and (min-width: 768px) {
  .equipmentCard--wide {
    display: grid;
    grid-template-columns: 630px 1fr;
    gap: 30px;
    align-items: flex-end;
  }
}
/* wideカードの画像は概念図/表のため切り抜かず自然な高さで表示（内容欠けを防ぐ） */
.equipmentCard--wide .equipmentCard__visual .photo__image {
  height: auto;
}
