@charset "utf-8";
/* CSS Document */

.price-notice {
  margin: 40px auto;
  padding: 48px 48px 56px;
  background: #fff;
  color: #4a4a4a;
  font-family: "Helvetica Neue", Arial, "Yu Gothic", "YuGothic", sans-serif;
  text-align: center;
  box-sizing: border-box;
}

.notice-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.notice-header .line {
  flex: 1;
  border-top: 1px solid #555;
  border-bottom: 1px solid #555;
  height: 5px;
}

.icon {
  width: 42px;
  height: 42px;
  border: 2px solid #555;
  border-radius: 50%;
  line-height: 38px;
  font-size: 28px;
  font-family: serif;
  color: #555;
}

.price-notice h1 {
  margin: 0;
  font-size: 54px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1px;
  color: #4b4b4b;
}

.price-notice h2 {
  margin: 14px 0 28px;
  font-size: 24px;
  font-weight: 700;
  color: #555;
}


.border-line {
  border-top: 1px solid #555;
  border-bottom: 1px solid #555;
  height: 6px;
  margin-bottom: 44px;
}

.notice-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
  margin-bottom: 42px;
}

.notice-text p {
  margin: 0 0 26px;
}

.date-bar {
  background: #555;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 9px 16px;
  margin-bottom: 0;
}

.price-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 18px;
	table-layout: fixed;
	margin: 3% auto;
}

.price-table th,
.price-table td {
  padding: 13px 12px;
  border-bottom: 1px solid #ccc;
  text-align: center;
}

.price-table th:nth-child(1),
.price-table td:nth-child(1) {
  width: 32%;
}

.<strong>price-table th:nth-child(</strong>2),
.price-table td:nth-child(2) {
  width: 16%;
}

.price-table th:nth-child(3),
.price-table td:nth-child(3) {
  width: 25%;
}

.price-table th:nth-child(4),
.price-table td:nth-child(4) {
  width: 25%;
}

.price-table .category {
  font-weight: 700;
  color: #333;
}
.price-table .category_left {
  font-weight: 700;
  color: #333;
  text-align: left;
  padding-left: 5%;
}


.price-table .old {
  color: #888;
  font-weight: normal;
}

.price-table .new {
  color: #333;
  font-weight: 900;
}

.section-header {
  background: #555;
  color: #fff;
}

.section-header th {
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.section-header .th-title {
  text-align: left;
  padding-left: 4%;
}
.price-table-note {
  margin-bottom: 0;
}

.price-note {
	position: relative;
	margin: 1% 0 3% 4%;
	padding-left: 12px;
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	text-align: left;
}

.price-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 3px;
  background: #ccc;
}

@media (max-width: 640px) {
.old {
	font-size: 1.4em;
  opacity: 0.7;
}

.new {
  font-size: 1.6em;
	  font-weight: 900;
  letter-spacing: 0.5px;
}
  .price-notice {
    margin: 0;
    padding: 20px 8px 28px;
    max-width: 100%;
  }

  .price-table {
    font-size: 13px;
    table-layout: fixed;
  }

  .price-table th,
  .price-table td {
    padding: 8px 4px;
  }

  .price-table th:nth-child(1),
  .price-table td:nth-child(1) {
    width: 28%;
  }

  .price-table th:nth-child(2),
  .price-table td:nth-child(2) {
    width: 17%;
    display: table-cell;
  }

  .price-table th:nth-child(3),
  .price-table td:nth-child(3) {
    width: 25%;
  }

  .price-table th:nth-child(4),
  .price-table td:nth-child(4) {
    width: 30%;
  }

  .price-table td.old {
    font-size: 13px;
    opacity: 0.7;
  }

  .price-table td.new {
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 0;
  }

  .section-header .th-title {
    font-size: 13px;
    line-height: 1.3;
  }

  .price-note {
    margin: 2% 0 5% 4%;
    font-size: 12px;
  }
}