@charset "UTF-8";

.sp {
  display: block;
}

.pc {
  display: none !important;
}
.plan-price {
  margin: 0 auto 6rem;
}

/* 3プラン */
.table-sp {
  margin: 0 auto 6rem;
}

.table-sp ul {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.toggle__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  margin-bottom: 2rem;
}

.bkbubble {
  width: 24rem;
  position: relative;
  display: inline-block;
  margin: 0 auto 1.4rem;
  padding: 1.2rem 1.6rem;
  background-color: #131313;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 120%;
  color: #ffffff;
  text-align: center;
}

.bkbubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 14px 7.5px 0 7.5px;
  border-color: #131313 transparent transparent;
  translate: -50% 100%;
}

.toggle__title h4 {
  color: var(--main-color-e-60000, #e60000);
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 100%;
}

.toggle__title h4 span {
  color: #000;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 100%;
}

.toggle_btn {
  background: var(--main-color-e-60000, #e60000);
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
}

.toggle_btn::before {
  display: block;
  content: "";
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.2rem;
  height: 1.4rem;
  transition: 0.2s ease-out;
}

.toggle_btn::after {
  display: block;
  content: "";
  background-color: #fff;
  position: absolute;
  width: 1.4rem;
  height: 0.2rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.1s ease-out;
}

.toggle__title.show .toggle_btn:before {
  content: normal;
}

.toggle__content {
  display: none;
}

table.table-sp_1 {
  border-collapse: separate;
  border-spacing: 1rem 0;
  width: 100%;
}

table.table-sp_1 td {
  height: 6.8rem;
  padding: 0 2rem;
}

table.table-sp_1 td:nth-child(1) {
  text-align: left;
  width: 15rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 130%;
}

table.table-sp_1 td:nth-child(2) {
  text-align: center;
  width: 18rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 130%;
}

table.table-sp_1 td.price:nth-child(2) {
  color: var(--main-color-e-60000, #e60000);
  font-size: 2rem;
  font-weight: 700;
  line-height: 150%;
}

table.table-sp_1 td.price:nth-child(2) span {
  font-family: "Barlow", sans-serif;
  font-size: 2rem;
}

table.table-sp_1 td span {
  font-size: 1.1rem;
  line-height: 130%;
}

table.table-sp_1 td img {
  width: 2rem;
}

table.table-sp_1 tr {
}

table.table-sp_1 tr:nth-child(odd) {
  background-color: var(--gray1, #faf8f5);
}

table.table-sp_1 tr:nth-child(even) {
  background-color: #ffffff;
}

@media screen and (min-width: 1024px) {
  .sp {
    display: none !important;
  }

  .pc {
    display: block !important;
  }
  .table-pc {
    margin: 0 auto 4rem;
  }

  .bkbubble {
    font-size: 1.6rem;
    margin: 0 auto 2.5rem;
  }

  th h4 {
    color: var(--main-color-e-60000, #e60000);
    font-size: 2.3rem;
    margin-bottom: 3rem;
    line-height: 100%;
    font-weight: 700;
    text-align: center;
  }

  th h4 span {
    font-size: 1.2rem;
    color: #131313;
  }

  .plan-price {
    max-width: 128rem;
  }

  .table-pc table {
    border-collapse: separate;
    border-spacing: 1rem 0;
    max-width: 104rem;
    margin: 0 auto;
  }

  .table-pc table td {
    height: 6.8rem;
    padding: 0 2rem;
  }

  .table-pc table td:nth-child(1) {
    text-align: left;
    width: 26rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 130%;
  }

  .table-pc table td:nth-child(1) span {
    font-size: 1.4rem;
  }

  .table-pc table td:nth-child(2),
  .table-pc table td:nth-child(3),
  .table-pc table td:nth-child(4) {
    text-align: center;
    width: 24.5rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 130%;
  }

  .table-pc table tr:nth-child(odd) {
    background-color: var(--gray1, #faf8f5);
  }

  .table-pc table tr.bg-w:nth-child(odd) {
    background-color: #ffffff;
  }

  .table-pc table tr:nth-child(even) {
    background-color: #ffffff;
  }

  .table-pc table td.price {
    color: var(--main-color-e-60000, #e60000);
    font-size: 2.4rem;
    font-weight: 700;
  }

  .table-pc table td.price span {
    font-family: "Barlow", sans-serif;
    font-size: 4.4rem;
  }
}

/* 料金目安表 */
.reference {
  padding: 0 1.4rem;
}

.reference h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0 auto 3rem;
}

.reference h4 .dots {
  width: 1rem;
  height: 1rem;
  background-color: var(--main-color-e-60000, #e60000);
  border-radius: 50%;
  display: inline-block;
}

.reference p {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 2rem;
}

.reference table {
  border-collapse: collapse;
  width: 100%;
  margin: 0 auto 2rem;
}

.reference td {
  border: 1px solid #ccc;
  padding: 1rem 0.8rem 0.8rem;
  color: var(--main-color-e-60000, #e60000);
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 150%;
}

.reference td .price {
  font-family: "Barlow", sans-serif;
}

.reference td .per-person {
  color: var(--text, #131313);
  font-size: 1rem;
  font-weight: 700;
  line-height: 150%;
  display: inline;
  background: linear-gradient(to top, #fff03e 30%, transparent 30%);
}

/* 1行目：赤背景 */
.reference tr:first-child td {
  width: 8.9rem;
  height: 7rem;
  padding: 2.1rem 0.5rem;
  background-color: #e60000;
  color: var(--white, #fff);
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 130%;
}

/* 1列目：黒背景 */
.reference td:first-child {
  width: 7rem;
  height: 6.8rem;
  background-color: #131313;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 100%;
  border: 1px solid #fff;
}

/* 左上セル */
.reference tr:first-child td:first-child {
  background-color: transparent;
  border: none;
  color: inherit;
}

@media screen and (min-width: 1024px) {
  .reference {
    padding: 2rem 0;
    max-width: 104rem;
    margin: 0 auto;
  }

  .reference h4 {
    font-size: 3.2rem;
  }

  .reference p {
    text-align: center;
    font-size: 1.6rem;
  }

  .reference small {
    font-size: 1.4rem;
  }

  .reference td {
    font-size: 1.4rem;
  }

  .reference td .price {
    font-size: 2.8rem;
  }

  .reference td .per-person {
    font-size: 1.2rem;
  }

  /* 1行目：赤背景 */
  .reference tr:first-child td {
    max-width: 28.2rem;
    font-size: 2rem;
  }

  /* 1列目：黒背景 */
  .reference td:first-child {
    max-width: 19rem;
    font-size: 2rem;
  }

  /* 左上セル */
  .reference tr:first-child td:first-child {
  }
}
