@charset "UTF-8";
.pankzu {
  margin: 0 auto;
  max-width: 1240px;
}
.pankzu__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.25rem;
}
.pankzu__item {
  position: relative;
  font-size: 10px;
  color: #c1c1c1;
  padding: 0 1.5em;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  white-space: normal;
  min-width: 0;
  flex-shrink: 1;
  text-align: center;
  line-height: 1.45;
}
.pankzu__item a {
  color: #c1c1c1;
  text-decoration: none;
  transition: color 0.2s;
}
.pankzu__item a:hover {
  color: #bfa046;
}
.pankzu__item::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: #bfa046;
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
}
.pankzu__item:last-child::after {
  display: none;
}
.pankzu__item:last-child {
  white-space: normal;
  min-width: 0;
  flex-shrink: 1;
  text-align: left;
  word-break: break-all;
}

.firstview {
  padding: 0 3%;
}
.firstview__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 6% 0;
  align-items: center;
  text-align: center;
}
.firstview__inner h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .firstview__inner h1 {
    font-size: 24px;
    margin-bottom: 10px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.firstview__inner p {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-style: normal;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .firstview__inner p {
    font-size: 12px;
    line-height: 0;
    transition-property: all;
    transition-duration: 0.3s;
  }
}

.nav {
  background: linear-gradient(to bottom, #FFF 0%, #FFF 50%, #F0EBE9 50%, #F0EBE9 100%);
  padding: 0 3%;
}
.nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  background-color: #fff;
  padding: 3% 3%;
  border-radius: 10px;
  border: 1px solid #E5E0D8;
}
.nav__list {
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 24px;
  padding: 24px 0;
}
@media screen and (max-width: 768px) {
  .nav__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 12px;
    padding: 16px 0;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.nav__item {
  list-style: none;
}
.nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f2ec;
  border-radius: 3px;
  font-size: 14px;
  color: #222;
  padding: 1.2em 1.5em;
  text-decoration: none;
  position: relative;
  transition: background 0.2s, box-shadow 0.2s;
  min-height: 60px;
  box-shadow: none;
}
@media screen and (max-width: 768px) {
  .nav__link {
    font-size: 2.2vw;
    padding: 1em 1em;
    min-height: 48px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.nav__link:hover, .nav__link:focus {
  background: #f0ebe9;
  box-shadow: 0 2px 8px rgba(191, 160, 70, 0.08);
}
.nav__arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .nav__arrow {
    right: 10px;
    width: 12px;
    height: 12px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}

.price-table-section {
  padding: 4% 3%;
  background-color: #F0EBE9;
}
@media screen and (max-width: 768px) {
  .price-table-section {
    padding: 8% 3%;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.price-table-section .price-table-section__inner {
  padding: 0 6%;
  background-color: #fff;
  border-radius: 16px;
  margin: 0 auto;
}
.price-table-section .price-table-section__inner .price-table-section__inner-box {
  max-width: 940px;
  margin: 0 auto;
  padding: 4% 0;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .price-table-section .price-table-section__inner .price-table-section__inner-box {
    padding: 8% 0;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.price-table-section .price-table__title {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 1em;
}
.price-table-section .price-table__title .price-table__icon {
  width: 64px;
  height: auto;
  flex-shrink: 0;
  display: block;
}
@media screen and (max-width: 768px) {
  .price-table-section .price-table__title .price-table__icon {
    width: 48px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.price-table-section .price-table__title .price-table__texts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
  position: relative;
}
.price-table-section .price-table__title .price-table__texts .price-table__ja {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-style: normal;
  font-size: 16px;
  color: #222;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .price-table-section .price-table__title .price-table__texts .price-table__ja {
    font-size: 14px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.price-table-section .price-table__title .price-table__texts .price-table__en {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-style: normal;
  font-size: 24px;
  color: #bfa046;
  font-weight: bold;
  letter-spacing: 0.15em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .price-table-section .price-table__title .price-table__texts .price-table__en {
    font-size: 16px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.price-table-section .price-table__title .price-table__texts .price-table__en::before {
  content: "";
  position: absolute;
  bottom: 20%;
  right: -50%;
  width: 40%;
  height: 2px;
  background: #bfa046;
}
.price-table-section .price-table__title .price-table__line {
  display: inline-block;
  height: 2px;
  background: #bfa046;
  width: 50px;
  margin-left: 1.5em;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .price-table-section .price-table-list {
    overflow-x: scroll;
  }
}

.price-table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  padding-bottom: 1em;
}

.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  font-family: "Noto Serif JP", serif;
  border-top: none;
}
@media screen and (max-width: 768px) {
  .price-table {
    width: auto;
    min-width: -moz-max-content;
    min-width: max-content;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.price-table th, .price-table td {
  padding: 1.2em 1em;
  text-align: center;
  vertical-align: middle;
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  border: 1px solid #eeeeee;
}
.price-table th {
  background: #bfa046;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.price-table td {
  border-bottom: none !important;
}
.price-table td:last-child:not([rowspan]) {
  width: auto !important;
  max-width: 100%;
}
.price-table .special {
  display: block;
  width: 75px;
  text-align: center;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 1em;
  background: #e75699;
  color: #FFF;
  padding: 8px 6px;
  border-radius: 6px;
}
.price-table .price-table__subject {
  text-align: left;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
  width: 330px;
  background-color: #fffef6;
}
.price-table .price-table__subject small {
  font-size: 10px;
}
@media screen and (max-width: 768px) {
  .price-table .price-table__subject {
    width: 160px;
    font-size: 14px;
    transition-property: all;
    transition-duration: 0.3s;
  }
  .price-table .price-table__subject small {
    font-size: 8px;
  }
}
.price-table .price-table__count {
  width: 100px;
  text-align: center;
  border-left: none;
}
@media screen and (max-width: 768px) {
  .price-table .price-table__count {
    width: 80px;
    font-size: 12px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.price-table .price-table__price {
  text-align: right;
  border-left: none;
}
@media screen and (max-width: 768px) {
  .price-table .price-table__price {
    width: 120px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.price-table .price-table__price {
  display: flex;
  flex-direction: column;
  text-align: right;
  max-width: none;
}
.price-table .price-table__price .price-table__price-ex {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  text-align: right;
  font-family: "Noto Serif JP", serif;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .price-table .price-table__price .price-table__price-ex {
    font-size: 14px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.price-table .price-table__price .price-table__price-in {
  font-size: 12px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .price-table .price-table__price .price-table__price-in {
    font-size: 8px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.price-table .price-table__description {
  border-left: none;
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
  width: auto;
  max-width: 240px;
}
@media screen and (max-width: 768px) {
  .price-table .price-table__description {
    width: auto;
    font-size: 12px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}

.price-table-scroll-hint {
  display: none;
  align-items: center;
  color: #bfa046;
  font-size: 13px;
  margin-bottom: 0.5em;
  gap: 0.5em;
}
.price-table-scroll-hint svg {
  animation: hint-move 1.2s infinite alternate;
}
@keyframes hint-move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(10px);
  }
}

@media (max-width: 1024px) {
  .price-table-scroll-hint {
    display: flex;
  }
}
/* 料金表グループ用のスタイル */
.price-group-section {
  margin-bottom: 60px;
}
.price-group-section__title {
  font-size: 21px;
  padding-left: 10px;
  border-left: 4px solid #bfa046;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .price-group-section__title {
    font-size: 18px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}

.price-category-section {
  margin-bottom: 30px;
}
.price-category-section__title {
  font-size: 18px;
  margin-bottom: 0;
  padding: 15px 0;
  border-bottom: 1px solid #bfa046;
  line-height: 1.2;
  background: none;
  border: none;
  border-bottom: 1px solid #bfa046;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-family: inherit;
  color: black;
}
.price-category-section__title:hover {
  background-color: #f9f9f9;
}
.price-category-section__title.is-active {
  border-bottom-color: #bfa046;
  color: black;
}
@media screen and (max-width: 768px) {
  .price-category-section__title {
    font-size: 14px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.price-category-section__content {
  display: none;
  padding: 20px 0;
}
.price-category-section__content.is-open {
  display: block;
}

.accordion-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.price-category-section__title.is-active .accordion-arrow {
  transform: rotate(90deg);
}