/* コピペ用コード */
.font-size-dummy {
  font-size: 0.5rem; /* 8px */
  font-size: 0.5625rem; /* 9px */
  font-size: 0.625rem; /* 10px */
  font-size: 0.6875rem; /* 11px */
  font-size: 0.75rem; /* 12px */
  font-size: 0.8125rem; /* 13px */
  font-size: 0.875rem; /* 14px */
  font-size: 0.9375rem; /* 15px */
  font-size: 1rem; /* 16px */
  font-size: 1.25rem; /* 20px */
  font-size: 1.375em; /* 22px */
  font-size: 1.75rem; /* 28px */
  font-size: 2rem; /* 32px */
}
/* proxima-nova, */
/* font-family: proxima-nova, sans-serif; */

/* ==========================================================================
1. Common
2. TOP page
3. Detail page
========================================================================== */

/* ==========================================================================
1. Common
========================================================================== */
body {
  background-color: #eff3f4;
  color: #2e2e22;
  font-family: proxima-nova, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}
body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover,
a:focus,
a:visited {
  color: inherit;
}
img {
  max-width: 100%;
}
.section_title {
  color: #354e57;
  font-size: 1.375em; /* 22px */
  font-weight: bold;
  letter-spacing: 0.2rem;
  margin-bottom: 10px;
  margin-top: 20px;
}
.fa-chevron-right:before {
  content: "\f054";
  margin-left: 1rem;
}

/* Header --------------------------- */
header {
  width: 100%;
  height: 80px;
  background-color: #354e57;
  position: sticky;
  top: 0;
  z-index: 2;
}
header .wng_title {
  font-size: 2rem; /* 32px */
  font-weight: normal;
}

/* Hamburger --------------------------- */
.hamburger {
  background-color: transparent;
  border-color: transparent;
  height: 100%;
  position: absolute;
  right: 20px;
  top: 0;
  width: 50px;
  z-index: 9;
}
/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: relative;
  transition: ease 0.4s;
  display: block;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}

/* header__nav --------------------------- */
.header__nav {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 100px 30px 40px;
  transform: translateX(100%);
  background-color: rgba(0, 0, 0, 0.8);
  transition: ease-in-out 0.8s;
  overflow-y: scroll;
  z-index: 3;
}
/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}

/* side-bar --------------------------- */
.accordion-item {
  margin-bottom: 20px;
  border-radius: 0;
  border: 0;
}
.accordion-item .accordion-button,
.accordion-item:first-of-type .accordion-button {
  background: #eff3f4;
  border: 1px solid #354e57;
  border-radius: 0;
  font-weight: bold;
}
.accordion-item .accordion-button:not(.collapsed) {
  color: #2e2e22;
}
.check_item {
  margin-bottom: 15px;
}
.search_btn {
  width: 100%;
  background-color: #f88700;
  display: inline-block;
  font-weight: normal;
  color: #fff !important;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  padding: 0.625rem 1.25rem;
  margin: 20px 0 60px;
}
.search_btn:hover {
  color: #fff;
}

.header__nav .accordion-item .accordion-button,
.header__nav .accordion-item:first-of-type .accordion-button {
  border: 1px solid #eff3f4;
}
.control--checkbox {
  font-size: 1rem;
}

/* footer --------------------------- */
footer {
  background-color: #354e57;
  color: #fff;
  margin-top: 120px;
  padding: 10px;
  text-align: center;
  width: 100%;
}

/* ==========================================================================
2. TOP page
========================================================================== */
/* Item list ----------------------------------*/
.item_wrap {
  background-color: #fff;
  width: 100%;
  padding: 40px;
}
.item_wrap .item_box .refno {
  font-size: 0.875rem; /* 14px */
}
.item_wrap .item_box .item_condition {
  margin-bottom: 5px;
  padding: 2px 6px;
  color: #fff;
  font-size: 0.75rem; /* 12px */
}
.item_wrap .item_box .item_condition.item_condition_used {
  background-color: #2962d1;
}
.item_wrap .item_box .item_condition.item_condition_new {
  background-color: #de3b35;
}
.item_wrap .item_box a.img_wrap {
  display: block;
  aspect-ratio: 4/3;
}
.item_wrap .item_box img {
  width: 100%;
  object-fit: cover;
}
/* item_description */
.item_description h3.item_model {
  font-size: 1.25rem; /* 20px */
  font-weight: bold;
}
.item_description h3.item_model a {
  color: #354e57;
  text-decoration: underline;
}
.item_description td {
  font-size: 0.875rem; /* 14px */
  padding: 0.25rem;
}
.item_description td.pcs_td_left,
.item_description td.shaft_td_left {
  width: 30%;
  background-color: #e6e6e6;
}
.item_description td.pcs_td_left,
.item_description td.pcs_td_right {
  border-bottom: 0.5px solid #aeaeae;
}
.item_description td.pcs_td_right {
  font-weight: bold;
}
.item_cost {
  color: #de3b35;
  font-size: 1.25rem; /* 20px */
  font-weight: bold;
}
.item_location {
  font-size: 0.75rem; /* 12px */
  padding: 2px 8px;
  width: fit-content;
}
.item_location_a {
  border: 1px solid #354e57;
  color: #354e57;
}
.item_location_s {
  border: 1px solid #2962d1;
  color: #2962d1;
}
.item_location_j {
  border: 1px solid #de3b35;
  color: #de3b35;
}
.xxs {
  padding: 0 1.25%;
}
.views-field {
  border-bottom: solid 1px;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
/* ==========================================================================
3. Detail page
========================================================================== */
.detail_item_refno {
  font-size: 0.875rem; /* 14px */
}
.detail_img {
  aspect-ratio: 4/3;
}
.detail_img img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.d_model {
  font-size: 2rem; /* 32px */
  font-weight: bold;
}
.condition1_1 {
  color: #2962d1;
  margin-right: 0.5rem;
}
.condition1_2 {
  color: #de3b35;
  margin-right: 0.5rem;
}
.condition2 {
  margin-left: 0.5rem;
}
.d_cost_cont {
  font-size: 1.25rem; /* 20px */
  font-weight: bold;
}
.d_cost_right {
  color: #de3b35;
}
.detail_right_top .d_cost_left::after {
  content: "：";
  margin: 0 5px;
  color: #999999;
  font-size: 1rem;
}
.view-related-item {
  display: -webkit-box;
}
/* table */
.detail_right_center table {
  font-size: 0.875rem; /* 14px */
}
.detail_right_center table .td_left {
  width: 30%;
  background-color: #e6e6e6;
}
.detail_right_center table tr {
  border: 0.5px solid #aeaeae;
}
/* Sales note,etc */
.d_sales {
  margin-top: 20px;
  color: #354e57;
}
.d_sales p {
  font-size: 0.875rem; /* 14px */
}
.note_title {
  font-size: 1rem; /* 16px */
  font-weight: bold;
}

.back_btn {
  width: fit-content;
  min-width: 200px;
  background-color: #eff3f4;
  border: 1px solid #354e57;
  font-size: 1rem;
  font-weight: bold;
  color: #2e2e22;
  text-decoration: none;
  padding: 0.625rem 1.25rem;
}
