.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;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10%;
}
@media screen and (max-width: 768px) {
  .firstview__inner {
    display: block;
    gap: 0;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.firstview__image {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .firstview__image {
    width: 100%;
    margin-bottom: 2em;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.firstview__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.firstview__texts {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .firstview__texts {
    width: 100%;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.firstview__title h1 {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-size: 32px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.25em;
}
@media screen and (max-width: 768px) {
  .firstview__title h1 {
    font-size: 24px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.firstview__title h2 {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.25em;
}
@media screen and (max-width: 768px) {
  .firstview__title h2 {
    font-size: 14px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.firstview__description {
  margin-top: 40px;
}
.firstview__description-title {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 20px;
}
.firstview__description-title h3 {
  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;
  margin: 0;
  position: relative;
  background: none;
}
@media screen and (max-width: 768px) {
  .firstview__description-title h3 {
    font-size: 16px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.firstview__description-title::after {
  content: "";
  display: block;
  height: 2px;
  width: 120px;
  background: #bfa046;
  margin-left: 1em;
}
@media screen and (max-width: 768px) {
  .firstview__description-title::after {
    width: 60px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.firstview__description-text {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .firstview__description-text {
    font-size: 14px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.firstview__description-text h4 {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .firstview__description-text h4 {
    font-size: 16px;
    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: 12px;
    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;
  }
}

.features {
  padding: 4% 3%;
  background-color: #F0EBE9;
}
@media screen and (max-width: 768px) {
  .features {
    padding: 8% 3%;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.features__inner {
  padding: 0 6%;
  max-width: 1240px;
  background-color: #fff;
  border-radius: 16px;
  margin: 0 auto;
}
.features__inner-box {
  max-width: 1024px;
  margin: 0 auto;
  padding: 4% 0;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .features__inner-box {
    padding: 8% 0;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.features__title {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 2em;
}
.features__icon {
  width: 64px;
  height: auto;
  flex-shrink: 0;
  display: block;
}
@media screen and (max-width: 768px) {
  .features__icon {
    width: 48px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.features__texts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
  position: relative;
}
.features__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) {
  .features__ja {
    font-size: 14px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.features__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) {
  .features__en {
    font-size: 16px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.features__en::before {
  content: "";
  position: absolute;
  bottom: 20%;
  right: -50%;
  width: 40%;
  height: 2px;
  background: #bfa046;
}

.features__list {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  margin-top: 2em;
}
.features__list .features__main-title {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .features__list .features__main-title {
    font-size: 18px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}

.features__item {
  background: #fff;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: none;
  padding: 2em 1.5em 1em 1.5em;
  position: relative;
}
.features__item:last-child {
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .features__item {
    padding: 0;
    transition-property: all;
    transition-duration: 0.3s;
  }
}

.features__item-title {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-size: 20px;
  color: #bfa046;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin: 0 0 1em 0;
  padding-bottom: 0.2em;
  position: relative;
  display: block;
  line-height: 1.5;
  padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .features__item-title {
    font-size: 18px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.features__item-title::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #bfa046 0%, #bfa046 30%, #f3f0eb 30%, #f3f0eb 100%);
  border-radius: 2px;
  z-index: 1;
}

.features__item-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: 15px;
  color: #222;
  margin: 0;
  line-height: 2;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .features__item-desc {
    font-size: 12px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}

.recommend {
  padding: 4% 3%;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .recommend {
    padding: 8% 3%;
    padding-bottom: 0;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.recommend__inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 4% 0;
  border-radius: 10px;
  overflow: hidden;
  padding-bottom: 0;
}
.recommend__title {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 2em;
}
.recommend__icon {
  width: 64px;
  height: auto;
  flex-shrink: 0;
  display: block;
}
@media screen and (max-width: 768px) {
  .recommend__icon {
    width: 48px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.recommend__texts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
  position: relative;
}
.recommend__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) {
  .recommend__ja {
    font-size: 14px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.recommend__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) {
  .recommend__en {
    font-size: 16px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.recommend__en::before {
  content: "";
  position: absolute;
  bottom: 20%;
  right: -50%;
  width: 40%;
  height: 2px;
  background: #bfa046;
}
.recommend__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5em 2em;
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  .recommend__list {
    grid-template-columns: unset;
    gap: 0.5em 2em;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.recommend__item {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #f2e9d9;
  border-radius: 10px;
  padding: 1.2em 1.5em;
  font-size: 16px;
  box-sizing: border-box;
  min-height: 56px;
  box-shadow: none;
  transition: box-shadow 0.2s;
}
@media screen and (max-width: 768px) {
  .recommend__item {
    font-size: 14px;
    padding: 1em 1em;
    min-height: 44px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.recommend__item::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e0d2b2;
  margin-right: 1em;
  flex-shrink: 0;
}
.recommend__item p {
  margin: 0;
  line-height: 1.7;
  font-size: inherit;
}

.cases {
  padding: 4% 3%;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .cases {
    padding: 8% 3%;
    padding-bottom: 0;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.cases .cases__inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 4% 0;
  border-radius: 10px;
  overflow: hidden;
  padding-bottom: 0;
}
.cases .cases__title {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 2em;
}
.cases .cases__title .cases__icon {
  width: 64px;
  height: auto;
  flex-shrink: 0;
  display: block;
}
@media screen and (max-width: 768px) {
  .cases .cases__title .cases__icon {
    width: 48px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.cases .cases__title .cases__texts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
  position: relative;
}
.cases .cases__title .cases__texts .cases__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) {
  .cases .cases__title .cases__texts .cases__ja {
    font-size: 14px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.cases .cases__title .cases__texts .cases__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) {
  .cases .cases__title .cases__texts .cases__en {
    font-size: 16px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.cases .cases__title .cases__texts .cases__en::before {
  content: "";
  position: absolute;
  bottom: 20%;
  right: -50%;
  width: 40%;
  height: 2px;
  background: #bfa046;
}

.cases-list {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.cases-row {
  display: flex;
  gap: 2em;
  margin-bottom: 2em;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .cases-row {
    flex-direction: column;
    gap: 2.5em;
  }
}

.case-item {
  width: 48%;
  min-width: 320px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .case-item {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
}

.case-item__images {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 0.5em;
}

.case-item__block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 50%;
}

.case-item__imgwrap {
  width: 100%;
  position: relative;
  background: #ede9e3;
  margin-bottom: 0.7em;
  overflow: hidden;
}
.case-item__imgwrap::before {
  content: "";
  display: block;
  padding-top: 61.74%;
}
.case-item__imgwrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.case-item__label {
  font-size: 14px;
  font-weight: bold;
  color: #bfa046;
  margin-bottom: 0.3em;
  letter-spacing: 0.1em;
  text-align: center;
}

.case-item__desc {
  font-size: 13px;
  color: #222;
  margin-top: 0.5em;
  text-align: left;
  line-height: 1.5;
}

.overview {
  padding: 4% 3%;
}
@media screen and (max-width: 768px) {
  .overview {
    padding: 8% 3%;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.overview .overview__inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 4% 0;
  border-radius: 10px;
  overflow: hidden;
}
.overview .overview__title {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 1em;
}
.overview .overview__title .overview__icon {
  width: 64px;
  height: auto;
  flex-shrink: 0;
  display: block;
}
@media screen and (max-width: 768px) {
  .overview .overview__title .overview__icon {
    width: 48px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.overview .overview__title .overview__texts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
  position: relative;
}
.overview .overview__title .overview__texts .overview__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) {
  .overview .overview__title .overview__texts .overview__ja {
    font-size: 14px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.overview .overview__title .overview__texts .overview__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) {
  .overview .overview__title .overview__texts .overview__en {
    font-size: 16px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.overview .overview__title .overview__texts .overview__en::before {
  content: "";
  position: absolute;
  bottom: 20%;
  right: -50%;
  width: 40%;
  height: 2px;
  background: #bfa046;
}
.overview__table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .overview__table {
    margin-top: 20px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.overview thead {
  border-top: 2px solid #F2EFE9;
  border-bottom: 2px solid #F2EFE9;
  line-height: 1.5;
}
.overview thead th, .overview thead td {
  font-size: 16px;
  font-weight: 600;
  padding: 1% 0;
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  text-align: left;
  padding-left: 6%;
}
@media screen and (max-width: 768px) {
  .overview thead th, .overview thead td {
    font-size: 14px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.overview tbody tr {
  border-bottom: 1px solid #F2EFE9;
  padding: 1% 0;
}
.overview tbody td {
  font-size: 14px;
  font-weight: 600;
  padding: 2% 0;
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  text-align: left;
  padding-left: 6%;
}
@media screen and (max-width: 768px) {
  .overview tbody td {
    font-size: 12px;
    padding: 4% 0;
    padding-left: 6%;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.overview tbody td:first-child {
  width: 40%;
  line-height: 1.5;
}
.overview tbody td:last-child {
  width: 60%;
  line-height: 1.5;
}

.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;
  }
}
.faq {
  margin: 6% 6%;
}
.faq__inner {
  max-width: 1024px;
  margin: 0 auto;
}
.faq__title {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 1em;
}
.faq__title .faq__icon {
  width: 64px;
  height: auto;
  flex-shrink: 0;
  display: block;
}
@media screen and (max-width: 768px) {
  .faq__title .faq__icon {
    width: 48px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.faq__title .faq__texts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
  position: relative;
}
.faq__title .faq__texts .faq__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) {
  .faq__title .faq__texts .faq__ja {
    font-size: 14px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.faq__title .faq__texts .faq__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) {
  .faq__title .faq__texts .faq__en {
    font-size: 16px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.faq__title .faq__texts .faq__en::before {
  content: "";
  position: absolute;
  bottom: 20%;
  right: 0;
  width: 30%;
  height: 2px;
  background: #bfa046;
}
.faq-list {
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  .faq-list {
    margin-top: 1em;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.faq .faq-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 1em;
  padding: 1em 0;
  font-family: "Noto Serif JP", serif;
  font-style: normal;
}
.faq .faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  cursor: pointer;
  text-align: left;
  padding: 0;
  margin: 0;
  outline: none;
  transition: color 0.2s;
}
.faq .faq-item__q span {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .faq .faq-item__q {
    font-size: 14px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.faq .faq-item__q .faq-item__arrow {
  width: 24px;
  height: 24px;
  margin-left: 1em;
  transition: transform 0.3s;
}
@media screen and (max-width: 768px) {
  .faq .faq-item__q .faq-item__arrow {
    width: 16px;
    height: 16px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.faq .faq-item__q[aria-expanded=true] .faq-item__arrow {
  transform: rotate(90deg);
}
.faq .faq-item__a {
  margin-top: 1em;
  color: #444;
  font-size: clamp(12px, 2vw, 14px);
  line-height: 2;
  background: #fffcfa;
  letter-spacing: 0.05em;
  border-radius: 6px;
  padding: 1em;
  border: 1px solid #f0e6d2;
  transition: max-height 0.3s;
}
@media screen and (max-width: 768px) {
  .faq .faq-item__a {
    font-size: 12px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}

.custom-banner {
  max-width: 600px;
  height: auto;
  margin: 2rem auto;
  margin-bottom: 2em;
  padding: 0 3%;
}
.custom-banner img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}