/*
* guestprice.css
*
*/
:root {
  --color-black: #231200;
  --color-white: #fff;
  --color-ktn-yellow: #ffbf00;
  --color-yellow-01: #ffcb31;
  --color-yellow-02: #ffdb4f;
  --color-yellow-03: #ffe84f;
  --color-yellow-04: #fff8b5;
  --color-orange: #ff8f00;
  --color-orange-01: #ff4c00;
  --color-bg: #fff5e1;
  --color-bg-overlay: color-mix(in srgb, var(--color-black-btn) 30%, transparent);
  --color-line-dashed: #999;
  --color-line-solid: #d6d5d5;
  --color-panel: #f3f3f3;
  --color-black-btn: #333;
  --color-black-txt: #666;
  --color-accent-red: #ff4949;
  --color-accent-pink: #e23a9a;
  --color-accent-yellowgreen: #95d542;
  --color-accent-emerald: #09cd96;
  --color-accent-turquoise: #26d1db;
  --color-accent-blue: #3139e8;
  --color-accent-bluegray: #c5cfd6;
  --color-error: #c00;
  --weight-thin: 100;
  --weight-extra-light: 200;
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semi-bold: 600;
  --weight-bold: 700;
  --weight-extra-bold: 800;
  --weight-black: 900;
  --color-hover-gray: #f2f0f0;
}

/* --------------------------------
  Guest Price
-------------------------------- */
.guest_table {
  --col-num: 2;
}
.guest_table .table_tooltip_btn {
  display: block;
  position: relative;
  border-radius: 3px;
  width: 14px;
  height: 14px;
  min-height: auto;
  background-color: var(--color-black-txt);
}
@media (min-width: 768px) {
  .guest_table .table_tooltip_btn {
    width: 16px;
    height: 16px;
  }
}
.guest_table .table_tooltip_btn > span {
  display: block;
  position: absolute;
  margin: auto;
  width: 10px;
  height: 10px;
  background-color: var(--color-white);

  inset: 0;
  -webkit-mask: url("/assets_2025/img/common/icon/question.svg") no-repeat center/contain;
          mask: url("/assets_2025/img/common/icon/question.svg") no-repeat center/contain;
}
@media (min-width: 768px) {
  .guest_table .table_tooltip_btn > span {
    width: 12px;
    height: 12px;
  }
}
.guest_table .guest_table_head .table_tooltip_btn,
.guest_table ._sub_head .table_tooltip_btn {
  background-color: var(--color-white);
}
.guest_table .guest_table_head .table_tooltip_btn > span,
.guest_table ._sub_head .table_tooltip_btn > span {
  background-color: var(--color-black-txt);
}
.guest_table table {
  display: grid;

  grid-template-columns: repeat(var(--col-num), 1fr);
  gap: 5px;
  overflow-wrap: break-word;
}
@media (min-width: 768px) {
  .guest_table table {
    grid-template-columns: minmax(auto, 210px) repeat(var(--col-num), 1fr);
    gap: 10px;
  }
}
.guest_table table thead,
.guest_table table tbody,
.guest_table table tfoot,
.guest_table table tr {
  display: contents;
}
.guest_table table th,
.guest_table table td {
  padding: 15px 10px;
  text-align: center;
}
@media (min-width: 768px) {
  .guest_table table th,
  .guest_table table td {
    padding: 20px;
  }
}
.guest_table table th[colspan="2"],
.guest_table table td[colspan="2"] {
  grid-column: auto/span 2;
}
.guest_table table th[colspan="3"],
.guest_table table td[colspan="3"] {
  grid-column: auto/span 3;
}
.guest_table table th[colspan="4"],
.guest_table table td[colspan="4"] {
  grid-column: auto/span 4;
}
.guest_table table th[rowspan="2"],
.guest_table table td[rowspan="2"] {
  grid-row: auto/span 2;
}
.guest_table table th {
  display: grid;
  font-size: 1rem;
  font-weight: var(--weight-bold);
  line-height: 1.5;

  place-items: center;
}
@media (min-width: 768px) {
  .guest_table table th {
    font-size: 1.5rem;
  }
}
.guest_table table td {
  background-color: var(--reversal-color);
}
@media (min-width: 768px) {
  .guest_table table td {
    padding: 20px;
  }
}
.guest_table table td > :not(:first-child) {
  margin-top: 5px;
}
@media (min-width: 768px) {
  .guest_table table td > :not(:first-child) {
    margin-top: 10px;
  }
}
.guest_table table td .txt_sm {
  font-size: 0.75rem;
  font-weight: var(--weight-medium);
  line-height: 1.75;
}
@media (min-width: 768px) {
  .guest_table table td .txt_sm {
    font-size: 1rem;
  }
}
.guest_table table td .txt_md {
  font-size: 0.875rem;
  font-weight: var(--weight-medium);
  line-height: 1.75;
}
@media (min-width: 768px) {
  .guest_table table td .txt_md {
    font-size: 1.25rem;
  }
}
.guest_table table td .txt_lg {
  font-size: 1.25rem;
  font-weight: var(--weight-medium);
  line-height: 1.75;
}
@media (min-width: 768px) {
  .guest_table table td .txt_lg {
    font-size: 1.75rem;
  }
}
.guest_table table td._bg_yellow {
  background-color: var(--color-yellow-04);
}
.guest_table table td._sub_head {
  padding: 10px;
  background-color: var(--color-black-txt);
  text-align: center;
  word-break: keep-all;
  color: var(--color-white);
  font-weight: bold;

  grid-column: auto/span var(--col-num);
}
@media (min-width: 768px) {
  .guest_table table td._sub_head {
    display: grid;
    padding: 20px;

    place-items: center;
    grid-column: initial;
  }
}
.guest_table .guest_table_head {
  background-color: var(--color-ktn-yellow);
}
.guest_table .guest_table_head:first-child {
  display: none;
}
@media (min-width: 768px) {
  .guest_table .guest_table_head:first-child {
    display: block;
    background-color: transparent;
  }
}
.guest_table .guest_table_head:nth-child(2) {
  border-top-left-radius: 10px;
  background-color: var(--color-yellow-03);
}
.guest_table .guest_table_head:last-child {
  border-top-right-radius: 10px;
}
.guest_table .guest_table_head:has(.table_tooltip_btn) {
  position: relative;
}
.guest_table .guest_table_head:has(.table_tooltip_btn) .table_tooltip_btn {
  display: inline-block;
  margin-left: 3px;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .guest_table .guest_table_head:has(.table_tooltip_btn) .table_tooltip_btn {
    margin-left: 5px;
  }
}
@media (min-width: 768px) {
  .guest_table tr:first-child .guest_table_item:first-child {
    border-top-left-radius: 10px;
  }
}
.guest_table tr:last-child .guest_table_item:last-child {
  border-bottom-right-radius: 10px;
}
@media (min-width: 768px) {
  .guest_table tr:last-child .guest_table_item:first-child {
    border-bottom-left-radius: 10px;
  }
}
.guest_table tr:last-child .guest_table_item:nth-child(2) {
  border-bottom-left-radius: 10px;
}
@media (min-width: 768px) {
  .guest_table tr:last-child .guest_table_item:nth-child(2) {
    border-radius: 0;
  }
}
.guest_table tr:last-child .guest_table_item:nth-last-child(4) {
  border-bottom-left-radius: 10px;
}
@media (min-width: 768px) {
  .guest_table tr:last-child .guest_table_item:nth-last-child(4) {
    border-radius: 0;
  }
}
.guest_table .guest_table_item:not(:has(.table_tooltip_btn)) {
  display: grid;

  place-items: center;
}
.guest_table .guest_table_item:has(.table_tooltip_btn) {
  position: relative;
}
.guest_table .guest_table_item:has(.table_tooltip_btn) .table_tooltip_btn {
  position: absolute;
  right: 5px;
  bottom: 5px;
}
@media (min-width: 768px) {
  .guest_table .guest_table_item:has(.table_tooltip_btn) .table_tooltip_btn {
    right: 10px;
    bottom: 10px;
  }
}
.guest_table ._sub_head p:has(.table_tooltip_btn) {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;
}
.guest_table ._sub_head p:has(.table_tooltip_btn) .table_tooltip_btn {
  display: block;
  position: relative;
  margin-left: 3px;

  inset: auto;
}
@media (min-width: 768px) {
  .guest_table ._sub_head p:has(.table_tooltip_btn) .table_tooltip_btn {
    margin-left: 5px;
  }
}