@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(15 / 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 #0B2B38;
  color: #222;
  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;
}
@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(6 / 375 * 100vw);
  }
}
@media only screen and (min-width: 768px) {
  .equipTabNav__btn:hover {
    background: #0B2B38;
    color: #fff;
  }
}
@media (hover: hover) and (pointer: fine) {
  .equipTabNav__btn:hover {
    background: #0B2B38;
    color: #fff;
  }
}
.equipTabNav__btn.is-active {
  background: #0B2B38;
  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(14 / 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;
}
@media only screen and (min-width: 768px) {
  .equipTabPanel__copy + .equipmentList {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .equipTabPanel__copy + .equipmentList {
    margin-top: calc(56 / 375 * 100vw);
  }
}
@media only screen and (min-width: 768px) {
  .equipTabPanel__copy .headingLv2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .equipTabPanel__copy .headingLv2 {
    font-size: calc(22 / 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(32 / 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--wide {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .equipmentList__item--wide {
    width: 100%;
  }
}

.equipmentCard {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .equipmentCard {
    gap: calc(18 / 375 * 100vw);
  }
}
.equipmentCard__visual {
  position: relative;
}
.equipmentCard__visual:after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #ccc;
  pointer-events: none;
}
.equipmentCard__visual--noBorder:after {
  content: none;
}
.equipmentCard__desc {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .equipmentCard__desc {
    gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .equipmentCard__desc {
    gap: calc(14 / 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: 2;
  }
}
@media only screen and (max-width: 767px) {
  .equipmentCard__desc .txt {
    font-size: calc(12 / 375 * 100vw);
  }
}
.equipmentCard__ttl {
  color: #7A6A44;
  line-height: 1.7;
  letter-spacing: 0.05em;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .equipmentCard__ttl {
    align-items: center;
    display: flex;
    font-size: 16px;
    height: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .equipmentCard__ttl {
    font-size: calc(14 / 375 * 100vw);
    padding-bottom: calc(10 / 375 * 100vw);
  }
}
.equipmentCard__ttl::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #D0BA7E, #9C7E32);
}
.equipmentCard__ttl sup {
  font-size: 0.6em;
  vertical-align: super;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  .equipmentCard--wide {
    display: grid;
    grid-template-columns: 630px 1fr;
    gap: 30px;
    align-items: flex-start;
  }
}
@media only screen and (min-width: 768px) {
  .equipmentCard--wide .equipmentCard__visual .photo__image {
    height: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .equipmentCard--wide .equipmentCard__visual .photo__image {
    height: calc(180 / 375 * 100vw);
  }
}/*# sourceMappingURL=equipment.css.map */