@charset "UTF-8";

/***************************************
追加カスタムcss 202604～
****************************************/

/* ==========================================================
  料金一覧
    ========================================================== */
.pricelist * {
  font-family: "Noto Serif JP", serif;
}

@media screen and (min-width: 375px) {
  .pricelist__mini_only {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .pricelist__sp_only {
    display: none;
  }
}

/* ---- アンカーリンク---- */
.pricelist-nav {
  background: #fff;
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .pricelist-nav {
    padding: 130px 0 140px;
  }
}

.pricelist-nav__inner {
  width: 90.66666666%;
  max-width: 1120px;
  margin-inline: auto;
}

.pricelist-nav__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .pricelist-nav__list {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.25rem, -0.114rem + 2.84vw, 1.875rem) clamp(1rem, -0.162rem + 2.42vw, 1.5rem);
  }
}
.pricelist-nav__link {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d9d9d9;
  color: #1a1a1a;
  border: 3px solid #be9156;
  padding: 16px 5px;
  font-size: clamp(0.75rem, 0.482rem + 1.34vw, 1.125rem);
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  text-align: center;
  position: relative;
  min-height: 70px;
}
@media screen and (min-width: 768px) {
  .pricelist-nav__link {
    font-size: clamp(1rem, 0.727rem + 0.57vw, 1.125rem);
    min-height: 3.5em;
  }
}
.pricelist-nav__link:hover {
  background: #be9156;
  color: #fff;
}
.pricelist-nav__link::after {
  position: absolute;
  content: "";
  right: calc(50% - 5px);
  bottom: 4px;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-left: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(-45deg);
  flex-shrink: 0;
  margin-bottom: 2px;
}

/* ---- アコーディオンメニュー ---- */
.pricelist-section__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #1a1a1a;
  border: 3px solid #be9156;
  font-weight: 700;
  text-align: center;
  font-size: clamp(1rem, 0.881rem + 0.51vw, 1.125rem);
  padding: 10px 5px;
  margin-bottom: 0;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  position: relative;
  min-height: 3em;
  height: 100%;
  transition: background 0.3s ease, color 0.3s ease;
}

@media screen and (min-width: 768px) {
  .pricelist-section__heading:hover {
    background: #be9156;
    color: #fff;
    transition: background 0.3s ease, color 0.3s ease;
  }

  .pricelist-section__heading {
    font-size: clamp(1rem, 0.727rem + 0.57vw, 1.125rem);
  }
}
/* details/summary のデフォルトマーカーを非表示 */
summary.pricelist-section__heading {
  list-style: none;
}
summary.pricelist-section__heading::-webkit-details-marker {
  display: none;
}
.pricelist-section__heading::after {
  position: absolute;
  content: "";
  top: calc(50% - 8px);
  right: 8px;
  display: inline-block;
  width: 16px;
  height: 16px;
  mask-image: url(../img/page/price/price_arrow.png);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1a1a1a;
  flex-shrink: 0;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
details.is-open .pricelist-section__heading::after {
  transform: rotate(-90deg);
}
@media screen and (min-width: 768px) {
  .pricelist-section__heading::after {
    top: calc(50% - 12px);
    right: 12px;
    width: 24px;
    height: 24px;
  }
  .pricelist-section__heading:hover::after {
    background-color: #fff;
    transition: all 0.3s ease;
  }
}

.pricelist-section__body {
  padding-top: 16px;
}

.pricelist-table {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .pricelist-table { margin-bottom: 28px; }
}
.pricelist-table:last-of-type {
  margin-bottom: 0;
}

.pricelist-table table {
  display: block;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .pricelist-table table { 
    display: table;
  }
}

.pricelist-table thead {
  display: block;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .pricelist-table thead { 
    display: table-header-group;
  }
}

.pricelist-table tbody {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #1a1a1a;
  border-top: none;
}
@media screen and (min-width: 768px) {
  .pricelist-table tbody { 
    display: table-row-group;
    border: none;
  }
}

.pricelist-table thead tr,
.pricelist-table tbody tr {
  display: block;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .pricelist-table thead tr { 
    display: table-row;
  }
}

.pricelist-table tbody tr {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid #1a1a1a;
}
.pricelist-table tbody tr:last-child {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .pricelist-table tbody tr { 
    display: table-row;
    border: none;
  }
}

.pricelist-table__th {
  background: #e8cf91;
  color: #1a1a1a;
  font-size: clamp(1rem, 0.881rem + 0.51vw, 1.125rem);
  padding: 16px 5px;
  text-align: center;
  border: 1px solid #1a1a1a;
  font-weight: 700;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .pricelist-table__th {
    font-size: clamp(1rem, 0.727rem + 0.57vw, 1.125rem);
    min-height: 3.5em;
  }
}

.pricelist-table__td {
  display: block;
  width: 100%;
  border: none;
  box-sizing: border-box;
  font-size: clamp(1rem, 0.881rem + 0.51vw, 1.125rem);
  color: #1a1a1a;
  padding: 10px 5px 0;      
  background: #fff;
  text-align: center;
  font-weight: 700;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .pricelist-table__td {
    display: table-cell;
    font-size: clamp(0.875rem, 0.33rem + 1.14vw, 1.125rem);
    border: 1px solid #1a1a1a;
    padding: 16px;
    min-height: 3.5em;
  }
}

.pricelist-table__th--name,
.pricelist-table__td--name {
  display: block;
  width: 100%;
  box-sizing: border-box;
}
.pricelist-table__td--name {
  color: #be9156;
}
@media screen and (min-width: 768px) {
  .pricelist-table__th--name,
  .pricelist-table__td--name {
    display: table-cell;
    width: 61.5%;
  }
  .pricelist-table__td--name {
    color: #1a1a1a;
  }
}

/* thead：「金額」th を非表示、名称 th を全幅のヘッダーバーに */
.pricelist-table__th--price {
  display: none;
}
@media screen and (min-width: 768px) {
  .pricelist-table__th--price {
    display: table-cell;
    width: calc(100% - 61.5%);
  }
}

.pricelist-table__td--price {
  padding: 5px 5px 10px;
}
@media screen and (min-width: 768px) {
  .pricelist-table__td--price {
    width: calc(100% - 61.5%);
    text-align: start;
    padding: 16px;
  }
}

.pricelist-table__campaign {
  color: #ff3131;
}
.pricelist-table__subheading {
  margin-right: 1em;
}

/* ---- pricelist-note ---- */
.pricelist-note {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .pricelist-note {
    margin-top: 20px;
  }
}

.pricelist-note li {
  font-size: clamp(0.75rem, 0.571rem + 0.89vw, 1rem);
  line-height: 1.4;
  text-align: left;
  position: relative;
  padding-left: 1.25em;
}
@media screen and (min-width: 768px) {
  .pricelist-note li {
    font-size: clamp(0.875rem, 0.33rem + 1.14vw, 1.125rem);
  }
}

.pricelist-note li::before {
  position: absolute;
  content: "※";
  left: 0;
  top: 0;
}

/* ---- 料金ページ メインビュー背景 ---- */
.pricelist .price_banner {
  background: center / cover no-repeat url(../img/page/price/price_mv.png);
  height: 30vh;
  max-height: 450px;
}
@media screen and (min-width: 992px) {
  .pricelist .price_banner {
    height: 40vh;
    max-height: 520px;
  }
}

.price__mv-textarea {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  height: 100%;
}

.price__mv-textarea span {
  color: #fff;
  font-size: clamp(1rem, 0.881rem + 0.51vw, 1.125rem);
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .price__mv-textarea span {
    font-size: clamp(1rem, 0.881rem + 0.51vw, 1.125rem);
  }
}

.price__mv-title {
  font-size: clamp(1.5rem, 1.143rem + 1.79vw, 2rem);
  text-align: center;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .price__mv-title {
    font-size: clamp(2rem, -0.007rem + 4.18vw, 3.125rem);
  }
}

/* ---- 丸数字リスト ---- */
.pricelist-table__num-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricelist-table__num-list li {
  position: relative;
  padding-left: 1.5em;
  text-align: left;
}
.pricelist-table__num-list li::before {
  position: absolute;
  left: 0;
}
.pricelist-table__num-list li:nth-child(1)::before { content: "①"; }
.pricelist-table__num-list li:nth-child(2)::before { content: "②"; }
.pricelist-table__num-list li:nth-child(3)::before { content: "③"; }
.pricelist-table__num-list li:nth-child(4)::before { content: "④"; }
.pricelist-table__num-list li:nth-child(5)::before { content: "⑤"; }
.pricelist-table__num-list li:nth-child(6)::before { content: "⑥"; }
.pricelist-table__num-list li:nth-child(7)::before { content: "⑦"; }
.pricelist-table__num-list li:nth-child(8)::before { content: "⑧"; }
.pricelist-table__num-list li:nth-child(9)::before { content: "⑨"; }
.pricelist-table__num-list li:nth-child(10)::before { content: "⑩"; }
