@charset "UTF-8";
/**
 * リセットスタイル
 * 基本的なスタイルのリセットと初期設定
 */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

input,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
}
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px transparent inset !important;
  transition: background-color 5000s ease-in-out 0s;
}

button,
input,
select,
textarea {
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-weight: 400;
  font-family: "Zen Old Mincho", serif;
  color: #ddd7ce;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05rem;
}

h1 {
  font-size: 2.5rem;
  font-family: "Mr Bedfort", cursive, serif;
}
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}
@media (min-width: 992px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-size: 2rem;
  font-family: "Zen Old Mincho", serif;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.8rem;
  }
}
@media (min-width: 992px) {
  h3 {
    font-size: 1.8rem;
  }
}

p {
  font-size: 0.875rem;
  font-weight: 400;
  font-feature-settings: "palt" 1;
  line-height: 1.5;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.15rem;
  color: #ddd7ce;
}
@media (min-width: 768px) {
  p {
    color: #ddd7ce;
    letter-spacing: 0.15rem;
    font-size: 1rem;
    line-height: 1.75;
  }
}
@media (min-width: 992px) {
  p {
    color: #ddd7ce;
    letter-spacing: 0.15rem;
    font-size: 1rem;
    line-height: 1.75;
  }
}

ul, li, ol {
  text-decoration: none;
}

a {
  text-decoration: none;
  color: inherit;
}

input,
textarea,
select {
  color: #ddd7ce;
}

@keyframes a-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}
html {
  height: 100%;
  font-size: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar {
  display: none;
}

body {
  background-color: #16160e;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body::-webkit-scrollbar {
  display: none;
}

ul {
  margin: 0;
  padding: 0;
}

main {
  flex: 1;
}

section {
  padding: 40px 0;
}
@media (min-width: 768px) {
  section {
    padding: 40px 0;
  }
}
@media (min-width: 992px) {
  section {
    padding: 80px 0;
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
textarea,
select {
  color: inherit;
  font-family: inherit;
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  color: rgba(221, 215, 206, 0.6);
  opacity: 1;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid #b99963;
  outline-offset: 2px;
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar {
  display: none;
}

.c-button {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  transition: 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}
@media (min-width: 992px) {
  .c-button {
    padding: 0.8rem 2rem;
  }
}
.c-button i {
  margin-left: 0.25rem;
}
@media (min-width: 992px) {
  .c-button i {
    margin-left: 0.3rem;
  }
}
.c-button--primary {
  background-color: #b99963;
  color: #1a1a1a;
  border: 1px solid #b99963;
}
@media (min-width: 992px) {
  .c-button--primary {
    background-color: #b99963;
  }
}
.c-button--primary:hover {
  transform: translateY(-2px);
  border: 1px solid rgb(200.796460177, 176.017699115, 134.203539823);
  background-color: rgb(200.796460177, 176.017699115, 134.203539823);
}
.c-button--outline {
  background-color: transparent;
  color: #b99963;
  border: 1px solid #b99963;
}
.c-button--ghost {
  background-color: transparent;
  color: #b99963;
}
@media (min-width: 992px) {
  .c-button--ghost {
    color: #b99963;
  }
}
.c-button--cta {
  color: #b99963;
  text-shadow: 0 0 8px black;
  animation: float-cta 10s ease-in-out infinite;
}
@media (min-width: 992px) {
  .c-button--cta {
    color: #b99963;
  }
}
@media (min-width: 992px) {
  .c-button--cta:hover {
    transition: all 2s ease;
    transform: scale(1.5);
  }
}

.c-filter__btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  padding: 0.4rem 0.5rem;
  border-radius: 9999px;
  background-color: rgba(26, 26, 26, 0.3);
  color: #ddd7ce;
  border: 1px solid rgba(185, 153, 99, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  font-size: 0.75rem;
  margin: 0;
}
@media (min-width: 992px) {
  .c-filter__btn {
    padding: 0.5rem 1.5rem;
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }
}
.c-filter__btn i {
  margin-right: 0;
  color: #b99963;
  font-size: 0.75rem;
}
@media (min-width: 992px) {
  .c-filter__btn i {
    color: #b99963;
    margin-right: 0.5rem;
    font-size: 1rem;
  }
}
.c-filter__btn:hover {
  background-color: #b99963;
  border-color: #b99963;
  transform: translateY(-2px);
  color: #1a1a1a;
}
@media (min-width: 992px) {
  .c-filter__btn:hover {
    background-color: rgba(185, 153, 99, 0.1);
    border-color: rgba(185, 153, 99, 0.4);
    transform: translateY(-2px);
    color: #ddd7ce;
  }
}
.c-filter__btn:hover i {
  color: #1a1a1a;
}
@media (min-width: 992px) {
  .c-filter__btn:hover i {
    color: #b99963;
  }
}
.c-filter__btn--active {
  background-color: #b99963;
  color: #1a1a1a;
  border-color: #b99963;
}
@media (min-width: 992px) {
  .c-filter__btn--active {
    background-color: #b99963;
    border-color: #b99963;
  }
}
.c-filter__btn--active i {
  color: #1a1a1a;
}
@keyframes simple-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float-cta {
  0%, 100% {
    transform: translate(0, 0);
  }
  14% {
    transform: translate(-15px, -15px);
  }
  25% {
    transform: translate(-25px, 0px);
  }
  37% {
    transform: translate(-15px, 15px);
  }
  50% {
    transform: translate(0px, 0px);
  }
  64% {
    transform: translate(15px, -15px);
  }
  75% {
    transform: translate(25px, 0px);
  }
  87% {
    transform: translate(15px, 15px);
  }
}
/**
 * Spell Card Component
 * 魔法カードのスタイリング
 * 
 * 命名規則：
 * - c-spell-card (component)
 * - c-spell-card__header (element)
 * - c-spell-card--featured (modifier)
 */
.c-spell-card {
  position: relative;
  height: 230px;
  perspective: 1000px;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(3.75, 3.75, 3.75, 0.9));
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(185, 153, 99, 0.3);
}
@media (min-width: 992px) {
  .c-spell-card {
    height: 400px;
  }
}
.c-spell-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(185, 153, 99, 0.2);
}
.c-spell-card:hover::before {
  opacity: 0.1;
  transform: rotate(10deg);
}
.c-spell-card:hover .c-spell-card__header .spell-level::after {
  width: 100%;
}
.c-spell-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
}
.c-spell-card__inner--flipped {
  transform: rotateY(180deg);
}
.c-spell-card__front, .c-spell-card__back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 1rem;
  padding: 0.5rem;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(42, 42, 42, 0.9));
  z-index: 1;
  overflow: hidden;
}
@media (min-width: 992px) {
  .c-spell-card__front, .c-spell-card__back {
    padding: 2rem;
  }
}
.c-spell-card__back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.c-spell-card__header {
  padding: 0.25rem 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 992px) {
  .c-spell-card__header {
    padding: 0.25rem 0 1.5rem;
  }
}
.c-spell-card__category {
  position: static;
  background-color: rgba(185, 153, 99, 0.2);
  color: #b99963;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  order: 1;
}
@media (min-width: 992px) {
  .c-spell-card__category {
    background-color: rgba(185, 153, 99, 0.2);
    color: #b99963;
  }
}
.c-spell-card__category i {
  margin-right: 0.3rem;
}
.c-spell-card__favorite {
  order: 2;
  background: none;
  border: none;
  color: #b99963;
  cursor: pointer;
  padding: 0.25rem;
  transition: 0.3s ease;
}
@media (min-width: 992px) {
  .c-spell-card__favorite {
    color: #b99963;
  }
}
.c-spell-card__favorite:hover {
  transform: scale(1.1);
}
.c-spell-card__favorite--active i {
  color: #b99963;
}
@media (min-width: 992px) {
  .c-spell-card__favorite--active i {
    color: #b99963;
  }
}
.c-spell-card__favorite i {
  font-size: 1.2rem;
}
.c-spell-card__level {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.8;
  position: relative;
  display: inline-block;
  padding: 1px 4px;
  border-radius: 0.25rem;
}
@media (min-width: 992px) {
  .c-spell-card__level {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    padding: 4px 8px;
  }
}
.c-spell-card__level--beginner {
  background: rgba(131, 219, 227, 0.2);
  color: #83dbe3;
}
.c-spell-card__level--intermediate {
  background: rgba(40, 243, 121, 0.2);
  color: #28f379;
}
.c-spell-card__level--advanced {
  background: rgba(151, 90, 219, 0.2);
  color: #975adb;
}
.c-spell-card__title {
  font-size: 1rem;
  color: #b99963;
  margin-bottom: 0.5rem;
  letter-spacing: -0.08rem;
}
@media (min-width: 992px) {
  .c-spell-card__title {
    color: #b99963;
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}
.c-spell-card__description {
  margin-bottom: 1rem;
  line-height: 1.75;
  color: #ddd7ce;
}
.c-spell-card__effects {
  display: none;
}
@media (min-width: 992px) {
  .c-spell-card__effects {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
  }
}
.c-spell-card__effect {
  background-color: rgba(26, 26, 26, 0.7);
  color: #ddd7ce;
  padding: 2px 8px;
  border-radius: 9999px;
  font-size: 11px;
  border: 1px solid rgba(185, 153, 99, 0.3);
  letter-spacing: 0;
}
@media (min-width: 992px) {
  .c-spell-card__effect {
    font-size: 0.75rem;
    padding: 4px 10px;
  }
}
.c-spell-card__image {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 0.5rem;
}
@media (min-width: 992px) {
  .c-spell-card__image {
    height: 170px;
  }
}
.c-spell-card__ingredients-title {
  font-size: 0.875rem;
  color: #b99963;
  margin-bottom: 0;
  letter-spacing: -0.1rem;
}
@media (min-width: 992px) {
  .c-spell-card__ingredients-title {
    color: #b99963;
    margin-bottom: 1rem;
  }
}
.c-spell-card__ingredients-list {
  margin-bottom: 1.5rem;
}
.c-spell-card__ingredient {
  margin-top: -0.8rem;
  margin-bottom: 0.8rem;
  color: rgba(221, 215, 206, 0.9);
  font-size: 0.75rem;
}
@media (min-width: 992px) {
  .c-spell-card__ingredient {
    font-size: 0.875rem;
    margin-top: -1.5rem;
    margin-bottom: 1.5rem;
  }
}
.c-spell-card__no-ingredients {
  color: rgba(221, 215, 206, 0.9);
  font-style: italic;
  text-align: center;
  margin: 1.5rem 0;
}
.c-spell-card__detail-btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: #b99963;
  color: #1a1a1a;
  border: none;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 0.25rem;
}
@media (min-width: 992px) {
  .c-spell-card__detail-btn {
    background-color: #b99963;
    margin-top: 1.5rem;
  }
}
.c-spell-card__detail-btn:hover {
  background-color: rgb(200.796460177, 176.017699115, 134.203539823);
  transform: translateY(-2px);
}
.c-spell-card__back-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
}
.c-spell-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(185, 153, 99, 0.1), transparent 30%);
  animation: rotate 8s linear infinite;
  z-index: 1;
  pointer-events: none;
}

.c-spell-card__tags {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.c-spell-card__tags .tag {
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  background: rgba(185, 153, 99, 0.1);
  color: rgba(221, 215, 206, 0.7);
  border: 1px solid rgba(185, 153, 99, 0.3);
}
@media (min-width: 992px) {
  .c-spell-card__tags .tag {
    background: rgba(185, 153, 99, 0.1);
  }
}
.c-spell-card__tags .tag:hover {
  background: rgba(185, 153, 99, 0.2);
  color: #ddd7ce;
  transform: translateY(-2px);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/**
 * 魔法の粒子エフェクトコンポーネント
 *
 * BEM構造:
 * Block:     .c-magic-particles
 * Elements:  __particle
 * Modifiers: なし
 *
 * 注意事項:
 * - main.jsと連携して動作
 * - パーティクル数の設定:
 *   - SCSSの@forループ数: 75
 *   - JavaScriptの生成数: 75
 *   ※ 両者の数値は必ず一致させること
 */
.c-magic-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.c-magic-particles__particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #b99963;
  border-radius: 50%;
  opacity: 0;
}
.c-magic-particles__particle:nth-child(1) {
  width: 2px;
  height: 2px;
  left: 23vw;
  animation: c-particles-float 9s 1s infinite;
  animation-delay: 1s;
  opacity: 0.14;
}
.c-magic-particles__particle:nth-child(2) {
  width: 1px;
  height: 1px;
  left: 98vw;
  animation: c-particles-float 13s 1s infinite;
  animation-delay: 1s;
  opacity: 0.19;
}
.c-magic-particles__particle:nth-child(3) {
  width: 1px;
  height: 1px;
  left: 14vw;
  animation: c-particles-float 13s 2s infinite;
  animation-delay: 2s;
  opacity: 0.37;
}
.c-magic-particles__particle:nth-child(4) {
  width: 3px;
  height: 3px;
  left: 17vw;
  animation: c-particles-float 14s 3s infinite;
  animation-delay: 3s;
  opacity: 0.16;
}
.c-magic-particles__particle:nth-child(5) {
  width: 2px;
  height: 2px;
  left: 86vw;
  animation: c-particles-float 10s 1s infinite;
  animation-delay: 1s;
  opacity: 0.37;
}
.c-magic-particles__particle:nth-child(6) {
  width: 1px;
  height: 1px;
  left: 99vw;
  animation: c-particles-float 14s 3s infinite;
  animation-delay: 3s;
  opacity: 0.2;
}
.c-magic-particles__particle:nth-child(7) {
  width: 1px;
  height: 1px;
  left: 51vw;
  animation: c-particles-float 6s 4s infinite;
  animation-delay: 4s;
  opacity: 0.19;
}
.c-magic-particles__particle:nth-child(8) {
  width: 3px;
  height: 3px;
  left: 93vw;
  animation: c-particles-float 6s 3s infinite;
  animation-delay: 3s;
  opacity: 0.15;
}
.c-magic-particles__particle:nth-child(9) {
  width: 1px;
  height: 1px;
  left: 45vw;
  animation: c-particles-float 14s 4s infinite;
  animation-delay: 4s;
  opacity: 0.08;
}
.c-magic-particles__particle:nth-child(10) {
  width: 2px;
  height: 2px;
  left: 84vw;
  animation: c-particles-float 15s 1s infinite;
  animation-delay: 1s;
  opacity: 0.11;
}
.c-magic-particles__particle:nth-child(11) {
  width: 1px;
  height: 1px;
  left: 25vw;
  animation: c-particles-float 6s 5s infinite;
  animation-delay: 5s;
  opacity: 0.36;
}
.c-magic-particles__particle:nth-child(12) {
  width: 2px;
  height: 2px;
  left: 74vw;
  animation: c-particles-float 10s 5s infinite;
  animation-delay: 5s;
  opacity: 0.12;
}
.c-magic-particles__particle:nth-child(13) {
  width: 1px;
  height: 1px;
  left: 45vw;
  animation: c-particles-float 8s 1s infinite;
  animation-delay: 1s;
  opacity: 0.26;
}
.c-magic-particles__particle:nth-child(14) {
  width: 1px;
  height: 1px;
  left: 85vw;
  animation: c-particles-float 15s 4s infinite;
  animation-delay: 4s;
  opacity: 0.09;
}
.c-magic-particles__particle:nth-child(15) {
  width: 4px;
  height: 4px;
  left: 10vw;
  animation: c-particles-float 14s 5s infinite;
  animation-delay: 5s;
  opacity: 0.14;
}
.c-magic-particles__particle:nth-child(16) {
  width: 4px;
  height: 4px;
  left: 59vw;
  animation: c-particles-float 10s 4s infinite;
  animation-delay: 4s;
  opacity: 0.24;
}
.c-magic-particles__particle:nth-child(17) {
  width: 1px;
  height: 1px;
  left: 58vw;
  animation: c-particles-float 9s 4s infinite;
  animation-delay: 4s;
  opacity: 0.08;
}
.c-magic-particles__particle:nth-child(18) {
  width: 2px;
  height: 2px;
  left: 30vw;
  animation: c-particles-float 11s 3s infinite;
  animation-delay: 3s;
  opacity: 0.16;
}
.c-magic-particles__particle:nth-child(19) {
  width: 1px;
  height: 1px;
  left: 39vw;
  animation: c-particles-float 9s 1s infinite;
  animation-delay: 1s;
  opacity: 0.36;
}
.c-magic-particles__particle:nth-child(20) {
  width: 4px;
  height: 4px;
  left: 74vw;
  animation: c-particles-float 15s 1s infinite;
  animation-delay: 1s;
  opacity: 0.01;
}
.c-magic-particles__particle:nth-child(21) {
  width: 2px;
  height: 2px;
  left: 60vw;
  animation: c-particles-float 14s 3s infinite;
  animation-delay: 3s;
  opacity: 0.39;
}
.c-magic-particles__particle:nth-child(22) {
  width: 2px;
  height: 2px;
  left: 65vw;
  animation: c-particles-float 15s 2s infinite;
  animation-delay: 2s;
  opacity: 0.23;
}
.c-magic-particles__particle:nth-child(23) {
  width: 4px;
  height: 4px;
  left: 21vw;
  animation: c-particles-float 10s 3s infinite;
  animation-delay: 3s;
  opacity: 0.14;
}
.c-magic-particles__particle:nth-child(24) {
  width: 2px;
  height: 2px;
  left: 28vw;
  animation: c-particles-float 10s 2s infinite;
  animation-delay: 2s;
  opacity: 0.24;
}
.c-magic-particles__particle:nth-child(25) {
  width: 4px;
  height: 4px;
  left: 31vw;
  animation: c-particles-float 8s 2s infinite;
  animation-delay: 2s;
  opacity: 0.33;
}
.c-magic-particles__particle:nth-child(26) {
  width: 3px;
  height: 3px;
  left: 90vw;
  animation: c-particles-float 11s 4s infinite;
  animation-delay: 4s;
  opacity: 0.29;
}
.c-magic-particles__particle:nth-child(27) {
  width: 1px;
  height: 1px;
  left: 98vw;
  animation: c-particles-float 12s 3s infinite;
  animation-delay: 3s;
  opacity: 0.12;
}
.c-magic-particles__particle:nth-child(28) {
  width: 3px;
  height: 3px;
  left: 24vw;
  animation: c-particles-float 12s 5s infinite;
  animation-delay: 5s;
  opacity: 0.11;
}
.c-magic-particles__particle:nth-child(29) {
  width: 3px;
  height: 3px;
  left: 21vw;
  animation: c-particles-float 7s 2s infinite;
  animation-delay: 2s;
  opacity: 0.24;
}
.c-magic-particles__particle:nth-child(30) {
  width: 4px;
  height: 4px;
  left: 53vw;
  animation: c-particles-float 10s 1s infinite;
  animation-delay: 1s;
  opacity: 0.19;
}
.c-magic-particles__particle:nth-child(31) {
  width: 4px;
  height: 4px;
  left: 17vw;
  animation: c-particles-float 9s 3s infinite;
  animation-delay: 3s;
  opacity: 0.31;
}
.c-magic-particles__particle:nth-child(32) {
  width: 4px;
  height: 4px;
  left: 17vw;
  animation: c-particles-float 7s 1s infinite;
  animation-delay: 1s;
  opacity: 0.17;
}
.c-magic-particles__particle:nth-child(33) {
  width: 2px;
  height: 2px;
  left: 28vw;
  animation: c-particles-float 14s 2s infinite;
  animation-delay: 2s;
  opacity: 0.2;
}
.c-magic-particles__particle:nth-child(34) {
  width: 4px;
  height: 4px;
  left: 50vw;
  animation: c-particles-float 13s 4s infinite;
  animation-delay: 4s;
  opacity: 0.36;
}
.c-magic-particles__particle:nth-child(35) {
  width: 3px;
  height: 3px;
  left: 53vw;
  animation: c-particles-float 13s 5s infinite;
  animation-delay: 5s;
  opacity: 0.14;
}
.c-magic-particles__particle:nth-child(36) {
  width: 3px;
  height: 3px;
  left: 31vw;
  animation: c-particles-float 7s 5s infinite;
  animation-delay: 5s;
  opacity: 0.33;
}
.c-magic-particles__particle:nth-child(37) {
  width: 2px;
  height: 2px;
  left: 19vw;
  animation: c-particles-float 14s 2s infinite;
  animation-delay: 2s;
  opacity: 0.02;
}
.c-magic-particles__particle:nth-child(38) {
  width: 3px;
  height: 3px;
  left: 78vw;
  animation: c-particles-float 12s 1s infinite;
  animation-delay: 1s;
  opacity: 0.21;
}
.c-magic-particles__particle:nth-child(39) {
  width: 2px;
  height: 2px;
  left: 15vw;
  animation: c-particles-float 13s 5s infinite;
  animation-delay: 5s;
  opacity: 0.34;
}
.c-magic-particles__particle:nth-child(40) {
  width: 1px;
  height: 1px;
  left: 70vw;
  animation: c-particles-float 12s 4s infinite;
  animation-delay: 4s;
  opacity: 0.29;
}
.c-magic-particles__particle:nth-child(41) {
  width: 2px;
  height: 2px;
  left: 7vw;
  animation: c-particles-float 11s 2s infinite;
  animation-delay: 2s;
  opacity: 0.4;
}
.c-magic-particles__particle:nth-child(42) {
  width: 4px;
  height: 4px;
  left: 98vw;
  animation: c-particles-float 11s 1s infinite;
  animation-delay: 1s;
  opacity: 0.27;
}
.c-magic-particles__particle:nth-child(43) {
  width: 1px;
  height: 1px;
  left: 28vw;
  animation: c-particles-float 9s 4s infinite;
  animation-delay: 4s;
  opacity: 0.27;
}
.c-magic-particles__particle:nth-child(44) {
  width: 2px;
  height: 2px;
  left: 76vw;
  animation: c-particles-float 6s 4s infinite;
  animation-delay: 4s;
  opacity: 0.07;
}
.c-magic-particles__particle:nth-child(45) {
  width: 1px;
  height: 1px;
  left: 1vw;
  animation: c-particles-float 7s 1s infinite;
  animation-delay: 1s;
  opacity: 0.29;
}
.c-magic-particles__particle:nth-child(46) {
  width: 3px;
  height: 3px;
  left: 15vw;
  animation: c-particles-float 12s 1s infinite;
  animation-delay: 1s;
  opacity: 0.05;
}
.c-magic-particles__particle:nth-child(47) {
  width: 4px;
  height: 4px;
  left: 56vw;
  animation: c-particles-float 9s 3s infinite;
  animation-delay: 3s;
  opacity: 0.02;
}
.c-magic-particles__particle:nth-child(48) {
  width: 1px;
  height: 1px;
  left: 22vw;
  animation: c-particles-float 10s 1s infinite;
  animation-delay: 1s;
  opacity: 0.25;
}
.c-magic-particles__particle:nth-child(49) {
  width: 2px;
  height: 2px;
  left: 14vw;
  animation: c-particles-float 10s 4s infinite;
  animation-delay: 4s;
  opacity: 0.06;
}
.c-magic-particles__particle:nth-child(50) {
  width: 4px;
  height: 4px;
  left: 59vw;
  animation: c-particles-float 9s 4s infinite;
  animation-delay: 4s;
  opacity: 0.02;
}
.c-magic-particles__particle:nth-child(51) {
  width: 2px;
  height: 2px;
  left: 1vw;
  animation: c-particles-float 7s 2s infinite;
  animation-delay: 2s;
  opacity: 0.13;
}
.c-magic-particles__particle:nth-child(52) {
  width: 2px;
  height: 2px;
  left: 13vw;
  animation: c-particles-float 10s 2s infinite;
  animation-delay: 2s;
  opacity: 0.33;
}
.c-magic-particles__particle:nth-child(53) {
  width: 1px;
  height: 1px;
  left: 1vw;
  animation: c-particles-float 14s 1s infinite;
  animation-delay: 1s;
  opacity: 0.17;
}
.c-magic-particles__particle:nth-child(54) {
  width: 4px;
  height: 4px;
  left: 69vw;
  animation: c-particles-float 6s 3s infinite;
  animation-delay: 3s;
  opacity: 0.27;
}
.c-magic-particles__particle:nth-child(55) {
  width: 2px;
  height: 2px;
  left: 53vw;
  animation: c-particles-float 15s 2s infinite;
  animation-delay: 2s;
  opacity: 0.3;
}
.c-magic-particles__particle:nth-child(56) {
  width: 1px;
  height: 1px;
  left: 76vw;
  animation: c-particles-float 8s 4s infinite;
  animation-delay: 4s;
  opacity: 0.24;
}
.c-magic-particles__particle:nth-child(57) {
  width: 1px;
  height: 1px;
  left: 29vw;
  animation: c-particles-float 11s 5s infinite;
  animation-delay: 5s;
  opacity: 0.16;
}
.c-magic-particles__particle:nth-child(58) {
  width: 1px;
  height: 1px;
  left: 27vw;
  animation: c-particles-float 13s 4s infinite;
  animation-delay: 4s;
  opacity: 0.08;
}
.c-magic-particles__particle:nth-child(59) {
  width: 4px;
  height: 4px;
  left: 12vw;
  animation: c-particles-float 14s 3s infinite;
  animation-delay: 3s;
  opacity: 0.17;
}
.c-magic-particles__particle:nth-child(60) {
  width: 4px;
  height: 4px;
  left: 92vw;
  animation: c-particles-float 12s 5s infinite;
  animation-delay: 5s;
  opacity: 0.33;
}
.c-magic-particles__particle:nth-child(61) {
  width: 1px;
  height: 1px;
  left: 25vw;
  animation: c-particles-float 12s 5s infinite;
  animation-delay: 5s;
  opacity: 0.05;
}
.c-magic-particles__particle:nth-child(62) {
  width: 4px;
  height: 4px;
  left: 64vw;
  animation: c-particles-float 14s 4s infinite;
  animation-delay: 4s;
  opacity: 0.08;
}
.c-magic-particles__particle:nth-child(63) {
  width: 2px;
  height: 2px;
  left: 93vw;
  animation: c-particles-float 8s 4s infinite;
  animation-delay: 4s;
  opacity: 0.18;
}
.c-magic-particles__particle:nth-child(64) {
  width: 2px;
  height: 2px;
  left: 19vw;
  animation: c-particles-float 14s 3s infinite;
  animation-delay: 3s;
  opacity: 0.29;
}
.c-magic-particles__particle:nth-child(65) {
  width: 2px;
  height: 2px;
  left: 4vw;
  animation: c-particles-float 12s 1s infinite;
  animation-delay: 1s;
  opacity: 0.31;
}
.c-magic-particles__particle:nth-child(66) {
  width: 4px;
  height: 4px;
  left: 5vw;
  animation: c-particles-float 12s 3s infinite;
  animation-delay: 3s;
  opacity: 0.05;
}
.c-magic-particles__particle:nth-child(67) {
  width: 2px;
  height: 2px;
  left: 30vw;
  animation: c-particles-float 13s 2s infinite;
  animation-delay: 2s;
  opacity: 0.31;
}
.c-magic-particles__particle:nth-child(68) {
  width: 1px;
  height: 1px;
  left: 41vw;
  animation: c-particles-float 9s 1s infinite;
  animation-delay: 1s;
  opacity: 0.38;
}
.c-magic-particles__particle:nth-child(69) {
  width: 3px;
  height: 3px;
  left: 39vw;
  animation: c-particles-float 10s 1s infinite;
  animation-delay: 1s;
  opacity: 0.05;
}
.c-magic-particles__particle:nth-child(70) {
  width: 2px;
  height: 2px;
  left: 52vw;
  animation: c-particles-float 15s 1s infinite;
  animation-delay: 1s;
  opacity: 0.22;
}
.c-magic-particles__particle:nth-child(71) {
  width: 1px;
  height: 1px;
  left: 11vw;
  animation: c-particles-float 15s 1s infinite;
  animation-delay: 1s;
  opacity: 0.16;
}
.c-magic-particles__particle:nth-child(72) {
  width: 4px;
  height: 4px;
  left: 85vw;
  animation: c-particles-float 8s 1s infinite;
  animation-delay: 1s;
  opacity: 0.01;
}
.c-magic-particles__particle:nth-child(73) {
  width: 3px;
  height: 3px;
  left: 68vw;
  animation: c-particles-float 11s 3s infinite;
  animation-delay: 3s;
  opacity: 0.17;
}
.c-magic-particles__particle:nth-child(74) {
  width: 2px;
  height: 2px;
  left: 99vw;
  animation: c-particles-float 15s 3s infinite;
  animation-delay: 3s;
  opacity: 0.04;
}
.c-magic-particles__particle:nth-child(75) {
  width: 3px;
  height: 3px;
  left: 38vw;
  animation: c-particles-float 11s 5s infinite;
  animation-delay: 5s;
  opacity: 0.25;
}

@keyframes c-particles-float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}
/**
 * 魔法的なパターンコンポーネント
 *
 * BEM構造:
 * Block:     .c-magic-pattern, .c-magic-circle
 * Elements:  なし
 * Modifiers: .c-magic-circle--reverse
 */
.c-magic-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, rgba(185, 153, 99, 0.03) 25%, transparent 25%), linear-gradient(-45deg, rgba(185, 153, 99, 0.03) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(185, 153, 99, 0.03) 75%), linear-gradient(-45deg, transparent 75%, rgba(185, 153, 99, 0.03) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.c-magic-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(185, 153, 99, 0.1) 90deg, transparent 180deg, rgba(185, 153, 99, 0.1) 270deg, transparent 360deg);
  border-radius: 50%;
  animation: c-magic-circle-rotate 20s linear infinite;
}
.c-magic-circle::before, .c-magic-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.c-magic-circle::before {
  width: 80%;
  height: 80%;
  border: 1px solid rgba(185, 153, 99, 0.3);
}
.c-magic-circle::after {
  width: 60%;
  height: 60%;
  background: repeating-conic-gradient(from 0deg, transparent 0deg, rgba(185, 153, 99, 0.1) 10deg, transparent 20deg);
}
.c-magic-circle--reverse {
  animation-direction: reverse;
}

@keyframes c-magic-circle-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.c-filter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}
@media (min-width: 992px) {
  .c-filter {
    margin: 0 auto 2rem;
  }
}
.c-filter__group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 992px) {
  .c-filter__group {
    gap: 0.7rem;
    margin-bottom: 1.5rem;
  }
}
.c-filter__heading {
  font-size: 1.125rem;
  font-weight: 700;
}
.c-filter__buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .c-filter__buttons {
    margin-bottom: 0;
    gap: 1rem;
  }
}

@keyframes simple-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/**
 * セクションタイトルコンポーネント
 *
 * BEM構造:
 * Block:     .c-section-title
 * Elements:  __heading, __heading-icon, __description
 * Modifiers: なし
 */
.c-section-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}
@media (min-width: 992px) {
  .c-section-title {
    margin-bottom: 3rem;
  }
}
.c-section-title__heading {
  font-weight: 700;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.5;
  color: #b99963;
  position: relative;
  padding-bottom: 1rem;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
}
@media (min-width: 992px) {
  .c-section-title__heading {
    font-size: 1.875rem;
    color: #b99963;
  }
}
.c-section-title__heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, transparent, #b99963, transparent);
}
@media (min-width: 992px) {
  .c-section-title__heading::after {
    background: linear-gradient(to right, transparent, #b99963, transparent);
  }
}
.c-section-title__heading-icon {
  margin-right: 0;
  font-size: 1.5rem;
}
@media (min-width: 992px) {
  .c-section-title__heading-icon {
    font-size: 1.875rem;
  }
}
.c-section-title__heading-icon:hover {
  animation: c-section-title-icon 0.5s ease-in;
}
.c-section-title__description {
  max-width: 800px;
  text-align: center;
}
@media (min-width: 992px) {
  .c-section-title__description {
    font-size: 1.125rem;
  }
}
.c-section-title__description-text {
  font-size: 1rem;
}
@media (min-width: 992px) {
  .c-section-title__description-text {
    font-size: 1.125rem;
  }
}
.c-section-title::before, .c-section-title::after {
  content: "✦";
  position: absolute;
  font-size: 1.5rem;
  color: #b99963;
  opacity: 0.5;
  animation: c-section-title-rotate 10s linear infinite;
}
.c-section-title::before {
  left: 0.5rem;
  animation-direction: reverse;
}
@media (min-width: 992px) {
  .c-section-title::before {
    left: -2rem;
  }
}
.c-section-title::after {
  right: 0.5rem;
}
@media (min-width: 992px) {
  .c-section-title::after {
    right: -2rem;
  }
}

@keyframes c-section-title-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes c-section-title-glow {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes c-section-title-icon {
  from {
    transform: translate(0) rotate(0deg);
  }
  to {
    transform: translate(0) rotate(360deg);
  }
}
/**
 * ページヘッダーコンポーネント
 *
 * BEM構造:
 * Block:     .p-page-header
 * Elements:  __container, __title, __breadcrumbs, __breadcrumbs-link, __breadcrumbs-current
 * Modifiers: なし
 */
.p-page-header {
  position: relative;
  background: transparent;
  margin-top: 35px;
  overflow: hidden;
  margin-bottom: -70px;
}
@media (min-width: 768px) {
  .p-page-header {
    margin-top: 30px;
    margin-bottom: -70px;
  }
}
@media (min-width: 992px) {
  .p-page-header {
    margin-top: 70px;
    padding: 4rem 0 0 0;
    margin-bottom: 0;
  }
}
.p-page-header__container {
  position: relative;
}
.p-page-header__title {
  font-family: "Zen Old Mincho", serif;
  color: #b99963;
  font-size: 1.875rem;
  margin-bottom: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
@media (min-width: 992px) {
  .p-page-header__title {
    color: #b99963;
    font-size: 3.2rem;
    margin-bottom: 1rem;
  }
}
.p-page-header__breadcrumbs {
  color: #ddd7ce;
  font-size: 0.75rem;
}
@media (min-width: 992px) {
  .p-page-header__breadcrumbs {
    font-size: 0.875rem;
  }
}
.p-page-header__breadcrumbs-link {
  color: #ddd7ce;
  text-decoration: none;
  transition: color 0.3s ease;
}
.p-page-header__breadcrumbs-link:hover {
  color: #b99963;
}
.p-page-header__breadcrumbs-current {
  color: #b99963;
}

.c-search {
  max-width: 400px;
  margin: 0 auto 1rem;
}
@media (min-width: 992px) {
  .c-search {
    max-width: 600px;
    margin: 0 auto 3rem;
  }
}
.c-search__bar {
  display: flex;
  position: relative;
  background-color: rgba(26, 26, 26, 0.5);
  border-radius: 9999px;
  padding: 0;
  border: 0.5px solid #b99963;
  outline: 1px solid transparent;
  transition: outline-color 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
  -webkit-box-align: center;
  align-items: center;
}
@media (min-width: 992px) {
  .c-search__bar {
    padding: 0.25rem;
  }
}
.c-search__bar:focus-within {
  outline-color: #b99963;
  box-shadow: 0 0 0 4px rgba(185, 153, 99, 0.2);
}
.c-search__input {
  font-size: 1rem;
  flex: 1;
  background: transparent;
  padding: 0 1rem;
  color: #ddd7ce;
  opacity: 0.7;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
@media (min-width: 992px) {
  .c-search__input {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }
}
.c-search__input:focus {
  outline: none;
}
.c-search__input:focus::placeholder {
  opacity: 0.7;
  transition: opacity 0.3s ease;
  color: #ddd7ce;
}
.c-search__input::placeholder {
  color: rgba(221, 215, 206, 0.8);
}
.c-search__button {
  position: relative;
  flex-shrink: 0;
  background-color: #b99963;
  color: #1a1a1a;
  border: none;
  border-radius: 9999px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 2.5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .c-search__button {
    width: 50px;
    height: 50px;
    background-color: #b99963;
  }
}
.c-search__button:focus {
  outline: none;
  box-shadow: 0 0 0 2px #1a1a1a, 0 0 0 4px rgba(185, 153, 99, 0.5);
}
.c-search__button:hover, .c-search__button:focus {
  background-color: rgb(160.8318584071, 127.8407079646, 72.1681415929);
  transform: scale(1.05);
}
.c-search__button:focus:not(:hover) {
  transform: scale(1);
}
.c-search__button i.sr-only,
.c-search__button svg.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.c-search-results {
  grid-column: 1/-1;
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: rgba(26, 26, 26, 0.2);
  border-radius: 0.5rem;
  border: 1px solid rgba(185, 153, 99, 0.3);
}
.c-search-results__status.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.c-search-results__term {
  color: #b99963;
  font-weight: bold;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
}
.c-search-results__count {
  font-weight: bold;
}
.c-search-results--empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 3rem 1rem;
}
.c-search-results--empty h3 {
  color: #b99963;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}
.c-search-results--empty p {
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.c-pagination {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}
.c-pagination__numbers {
  display: flex;
  margin: 0 1rem;
}
.c-pagination__btn {
  width: 40px;
  height: 40px;
  background-color: rgba(185, 153, 99, 0.2);
  color: #ddd7ce;
  border: 1px solid rgba(185, 153, 99, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.c-pagination__btn:hover:not(.c-pagination__btn--disabled) {
  background-color: rgba(185, 153, 99, 0.2);
  color: #b99963;
}
.c-pagination__btn--active {
  background-color: #b99963;
  color: #1a1a1a;
  border-color: transparent;
}
.c-pagination__btn--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.c-pagination__btn--disabled:hover {
  background-color: rgba(26, 26, 26, 0.7);
  color: #ddd7ce;
  transform: none;
}

.c-highlight {
  background-color: rgba(255, 223, 126, 0.5);
  padding: 0 2px;
  border-radius: 2px;
  color: inherit;
}

.c-faq {
  max-width: 800px;
  margin: 0 auto;
}
.c-faq__item {
  margin-bottom: 1rem;
  border: 1px solid rgba(185, 153, 99, 0.3);
  border-radius: 0.5rem;
  overflow: hidden;
}
.c-faq__item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.c-faq__question {
  padding: 1rem;
  background: linear-gradient(to right, rgba(26, 26, 26, 0.7), rgba(42, 42, 42, 0.7));
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 992px) {
  .c-faq__question {
    padding: 1.5rem;
  }
}
.c-faq__question-text {
  margin: 0;
  font-size: 0.875rem;
  color: #ddd7ce;
}
@media (min-width: 992px) {
  .c-faq__question-text {
    color: #ddd7ce;
  }
}
.c-faq__icon {
  color: #b99963;
  font-size: 1rem;
  transition: transform 0.3s ease;
}
@media (min-width: 992px) {
  .c-faq__icon {
    color: #b99963;
  }
}
.c-faq__answer {
  padding: 1rem;
  display: none;
  background-color: linear-gradient(to right, rgba(26, 26, 26, 0.7), rgba(42, 42, 42, 0.7));
  border-top: 1px solid rgba(185, 153, 99, 0.3);
}
.c-faq__answer p {
  margin: 0;
}
@media (min-width: 992px) {
  .c-faq__answer {
    padding: 1.5rem;
  }
}
.c-faq__item--active .c-faq__answer {
  display: block;
}
.c-faq__item--active .c-faq__icon {
  transform: rotate(180deg);
}

.c-wizards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  position: relative;
  overflow: hidden;
  padding: 0;
}
@media (min-width: 576px) and (max-width: 900px) {
  .c-wizards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (min-width: 768px) {
  .c-wizards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
@media (min-width: 992px) {
  .c-wizards {
    padding: 2rem 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    overflow: visible;
    padding: 0;
  }
}
.c-wizards__card {
  background-color: rgba(26, 26, 26, 0.7);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(185, 153, 99, 0.3);
  transition: all 0.3s ease;
  height: 100%;
}
.c-wizards__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}
.c-wizards__image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .c-wizards__image {
    height: 160px;
  }
}
@media (min-width: 992px) {
  .c-wizards__image {
    height: 300px;
  }
}
.c-wizards__image img {
  object-fit: cover;
  transition: transform 0.3s ease;
  position: absolute;
  top: -20%;
}
.c-wizards__image img:hover {
  transform: scale(1.1);
}
@media (min-width: 768px) {
  .c-wizards__image img {
    top: 0;
  }
}
@media (min-width: 992px) {
  .c-wizards__image img {
    top: 0;
  }
}
.c-wizards__info {
  padding: 1rem 1rem 1rem 1.2rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .c-wizards__info {
    padding: 1.5rem;
  }
}
.c-wizards__name {
  color: #b99963;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}
@media (min-width: 992px) {
  .c-wizards__name {
    color: #b99963;
  }
}
.c-wizards__title {
  color: #ddd7ce;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .c-wizards__title {
    color: #ddd7ce;
  }
}
.c-wizards__bio {
  margin-bottom: 1.5rem;
  line-height: 1.75;
  font-size: 0.875rem;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .c-wizards__bio {
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .c-wizards__bio {
    font-size: 1rem;
  }
}
.c-wizards__social {
  display: flex;
  gap: 0.5rem;
}
.c-wizards__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(185, 153, 99, 0.2);
  color: #b99963;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}
@media (min-width: 992px) {
  .c-wizards__social-link {
    background-color: rgba(185, 153, 99, 0.2);
    color: #b99963;
  }
}
.c-wizards__social-link:hover {
  background-color: #b99963;
  color: #1a1a1a;
  transform: translateY(-3px);
}

.c-page-top-icon {
  height: 100px;
  position: fixed;
  bottom: 10px;
  right: 20px;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: float 3s ease-in-out infinite;
  transition: opacity 0.3s ease;
}
@media (min-width: 992px) {
  .c-page-top-icon {
    bottom: 30px;
    right: 30px;
  }
}
.c-page-top-icon--visible {
  opacity: 0.8;
}
.c-page-top-icon__link {
  display: block;
  width: 60px;
  height: 60px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .c-page-top-icon__link {
    width: 80px;
    height: 80px;
  }
}

.c-page-top-icon__link:hover {
  transform: rotate(360deg);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}
.c-recommended-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0;
}
@media (min-width: 992px) {
  .c-recommended-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
  }
}

.c-recommended-item {
  display: block;
  text-decoration: none;
  color: #ddd7ce;
  background: rgba(26, 26, 26, 0.5);
  border-radius: 0.25rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}
@media (min-width: 992px) {
  .c-recommended-item {
    border-radius: 0.5rem;
  }
}
.c-recommended-item:hover {
  transform: translateY(-4px);
}
.c-recommended-item__image {
  width: 100%;
  aspect-ratio: 2.1/1.2;
  overflow: hidden;
}
.c-recommended-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-recommended-item__info {
  padding: 0.5rem;
}
.c-recommended-item__name {
  font-size: 0.75rem;
  margin: 0 0 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.c-recommended-item__price {
  font-size: 0.75rem;
  font-weight: bold;
  color: #ddd7ce;
  margin: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 1rem;
  z-index: 1000;
  display: none;
}
.cookie-banner.show {
  display: block;
}
.cookie-banner .cookie-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}
.cookie-banner .cookie-buttons button {
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.cookie-banner .cookie-buttons button:hover {
  transform: translateY(-2px);
}
.cookie-banner .cookie-buttons .btn-accept {
  background: #e94560;
  color: white;
}
.cookie-banner .cookie-buttons .btn-reject {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

/**
 * ヘッダーレイアウトコンポーネント
 *
 * BEM構造:
 * Block:     .l-header
 * Elements:  __logo, __title, __tagline
 * Modifiers: --scrolled
 */
.l-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 5%;
  background: transparent;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .l-header {
    padding: 1.2rem 3%;
  }
}
.l-header__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.l-header__logo a {
  text-decoration: none;
  display: block;
}
.l-header__logo img {
  width: 45%;
  height: 45%;
  object-fit: contain;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}
.l-header__title {
  font-family: "Mr Bedfort", cursive, serif;
  font-size: 1.875rem;
  color: #b99963;
  font-weight: 500;
  margin: 0;
  text-shadow: 0 2px 6px rgb(0, 0, 0);
}
@media (min-width: 992px) {
  .l-header__title {
    font-size: 2.5rem;
  }
}
.l-header--scrolled {
  height: 44px;
  padding: 20px 5% 10px;
  background: rgba(38.75, 38.75, 38.75, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(185, 153, 99, 0.3);
}
@media (min-width: 992px) {
  .l-header--scrolled {
    height: 60px;
  }
}
@media (min-width: 992px) {
  .l-header--scrolled .l-header__title {
    width: 25%;
    height: 25%;
    object-fit: contain;
  }
}

/**
 * ナビゲーションコンポーネント
 *
 * BEM構造:
 * Block:     .c-nav
 * Elements:  __toggle, __menu, __item, __link, __icon
 * Modifiers: __menu--active, __toggle--active
 */
.c-nav__toggle {
  position: relative;
  z-index: 10;
  display: block;
  background: none;
  border: none;
  color: #b99963;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: -0.5rem;
  margin-top: -1.6rem;
}
.c-nav__toggle--scrolled {
  margin-top: -0.6rem;
}
.c-nav__toggle--active {
  position: absolute;
  right: 20px;
  top: 30px;
  display: block;
  color: #b99963;
  font-size: 1.5rem;
}
.c-nav__toggle i {
  transition: transform 1s ease;
  font-size: 1.5rem;
}
@media (min-width: 992px) {
  .c-nav__toggle {
    display: none;
  }
}
.c-nav__menu {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 250px;
  background: #1a1a1a;
  flex-direction: column;
  justify-content: center;
  transition: right 0.3s ease;
  padding: 80px 2rem 2rem;
  list-style-type: none;
}
@media (min-width: 992px) {
  .c-nav__menu {
    position: static;
    height: auto;
    width: auto;
    background: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 3rem;
    list-style: none;
    margin-top: -0.5rem;
    right: 0;
  }
}
.c-nav__menu--active {
  right: 0;
}
.c-nav__item {
  margin: 2.5rem 0;
  opacity: 0;
  transform: translateX(20px);
  transition: 0.5s ease;
  width: 100%;
  align-items: center;
}
.c-nav__menu--active .c-nav__item {
  opacity: 1;
  transform: translateX(0);
}
@media (min-width: 992px) {
  .c-nav__item {
    margin: 0;
    opacity: 1;
    transform: none;
    width: auto;
    text-align: left;
  }
}
.c-nav__item--small {
  margin: 0.5rem 0 0.5rem -0.2rem;
}
@media (min-width: 992px) {
  .c-nav__item--small {
    display: none;
  }
}
.c-nav__link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #ddd7ce;
  font-size: 1.125rem;
  letter-spacing: 0.05rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
@media (min-width: 992px) {
  .c-nav__link {
    color: #ddd7ce;
  }
}
.c-nav__link:hover {
  color: rgb(200.796460177, 176.017699115, 134.203539823);
}
.c-nav__link--small {
  font-size: 0.875rem;
}
.c-nav__icon {
  font-size: 1.25rem;
  color: #b99963;
  margin-top: 0;
}
@media (min-width: 992px) {
  .c-nav__icon {
    color: #b99963;
    margin-top: 0;
  }
}
.c-nav__icon--small {
  font-size: 0.875rem;
}

.is-menu-open {
  overflow: hidden;
}

/**
 * フッターレイアウトコンポーネント
 *
 * BEM構造:
 * Block:     .l-footer
 * Elements:  __content, __section, __logo, __tagline, __heading, __bottom, __copyright
 * Modifiers: なし
 */
.l-footer {
  background: linear-gradient(to bottom, #1a1a1a, rgb(51.5, 51.5, 51.5));
  color: #ddd7ce;
  position: relative;
  overflow: hidden;
}
.l-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, rgba(185, 153, 99, 0.03) 25%, transparent 25%), linear-gradient(-45deg, rgba(185, 153, 99, 0.03) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(185, 153, 99, 0.03) 75%), linear-gradient(-45deg, transparent 75%, rgba(185, 153, 99, 0.03) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  opacity: 0.05;
}
.l-footer__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 2rem 1rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .l-footer__content {
    grid-template-columns: repeat(3, 1fr);
    padding: 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .l-footer__content {
    grid-template-columns: repeat(3, 1fr);
    padding: 4rem 2rem;
  }
}
.l-footer__logo {
  font-family: "Mr Bedfort", cursive, serif;
  color: #b99963;
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
}
.l-footer__tagline {
  font-style: italic;
  opacity: 0.7;
}
.l-footer__heading {
  font-family: "Zen Old Mincho", serif;
  color: #b99963;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  position: relative;
  display: inline-block;
}
@media (min-width: 992px) {
  .l-footer__heading {
    margin-bottom: 1.5rem;
  }
}
.l-footer__heading--menu {
  display: none;
}
@media (min-width: 992px) {
  .l-footer__heading--menu {
    display: block;
  }
}
.l-footer__bottom {
  background: rgba(64.25, 64.25, 64.25, 0.3);
  padding: 0.25rem;
  text-align: center;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(185, 153, 99, 0.1);
}
.l-footer__copyright {
  font-size: 0.75rem;
  opacity: 0.8;
}
.l-footer__copyright:hover {
  opacity: 1;
}

/**
 * フッターナビゲーションコンポーネント
 */
.c-footer-nav {
  list-style: none;
  padding: 0;
}
.c-footer-nav__item {
  margin-bottom: 1rem;
}
.c-footer-nav__link {
  color: #ddd7ce;
  opacity: 0.8;
  transition: 0.3s ease;
  display: inline-block;
}
.c-footer-nav__link:hover {
  color: #b99963;
  opacity: 1;
  transform: translateX(5px);
}

/**
 * ソーシャルリンクコンポーネント
 */
.c-social {
  display: flex;
  gap: 1rem;
}
.c-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(185, 153, 99, 0.1);
  color: #b99963;
  font-size: 1.2rem;
  transition: 0.3s ease;
}
.c-social__link:hover {
  background-color: #b99963;
  color: #1a1a1a;
  transform: translateY(-5px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

/**
 * グリッドレイアウトシステム
 *
 * BEM構造:
 * Block:     .l-container, .l-row, .l-col, .l-grid
 * Elements:  なし
 * Modifiers: .l-grid--2col, .l-grid--3col, .l-grid--4col
 */
.l-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .l-container {
    padding: 0 3rem;
  }
}
@media (min-width: 992px) {
  .l-container {
    padding: 0 4rem;
  }
}

.l-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.l-col {
  flex: 1;
  padding: 0 1rem;
  width: 100%;
}
@media (min-width: 768px) {
  .l-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .l-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.l-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .l-grid--2col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .l-grid--2col {
    grid-template-columns: repeat(2, 1fr);
  }
}
.l-grid--3col {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .l-grid--3col {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .l-grid--3col {
    grid-template-columns: repeat(3, 1fr);
  }
}
.l-grid--4col {
  grid-template-columns: 1fr;
}
@media (min-width: 576px) {
  .l-grid--4col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .l-grid--4col {
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-home-hero {
  width: 100%;
  height: 100vh;
  position: relative;
  padding-top: 0;
  overflow: hidden;
}
@media (min-width: 992px) {
  .p-home-hero {
    height: auto;
    aspect-ratio: 16/9;
    max-height: 100vh;
    margin: 0;
  }
}
.p-home-hero__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-home-hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}
@media (min-width: 992px) {
  .p-home-hero__video {
    top: 0;
    height: 100%;
  }
}
.p-home-hero__title {
  text-wrap: nowrap;
  position: absolute;
  font-size: 1.25rem;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.2rem;
}
@media (min-width: 768px) {
  .p-home-hero__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 992px) {
  .p-home-hero__title {
    font-size: 1.5rem;
  }
}
.p-home-hero__button {
  position: absolute;
  bottom: 40%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.p-home-about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .p-home-about__content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    max-width: 90%;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .p-home-about__content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    max-width: 752px;
    margin: 0 auto;
  }
}
.p-home-about__text {
  margin-bottom: 0;
  line-height: 1.75;
}
@media (min-width: 992px) {
  .p-home-about__text {
    margin-bottom: 1.5rem;
  }
}
.p-home-about__description {
  margin-bottom: 0.2rem;
  line-height: 2.1;
  font-size: 1rem;
  letter-spacing: 0.25rem;
}
@media (min-width: 992px) {
  .p-home-about__description {
    font-size: 1.075rem;
  }
}
.p-home-about__disclaimer {
  display: inline-block;
  line-height: 1.5;
  font-size: 0.875rem;
  text-indent: -1em;
  margin-left: 1rem;
}
.p-home-about__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-home-about__image .book3d {
  width: 180px;
  height: 230px;
  perspective: 1000px;
  margin: 0 auto;
  margin-top: -1rem;
}
@media (min-width: 768px) {
  .p-home-about__image .book3d {
    width: 130px;
    height: 162px;
  }
}
@media (min-width: 992px) {
  .p-home-about__image .book3d {
    width: 170px;
    height: 210px;
  }
}
.p-home-about__image .book3d__container {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: rotateY(-30deg);
  transition: transform 1s ease;
}
.p-home-about__image .book3d__container:hover {
  transform: rotateY(0deg);
}
.p-home-about__image .book3d__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/top/grimoire-3dbook-f.webp");
  background-size: cover;
  background-position: center;
  border-radius: 5px 15px 15px 5px;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.7);
  transform: translateZ(25px);
}
@media (min-width: 768px) {
  .p-home-about__image .book3d__cover {
    border-radius: 5px;
  }
}
.p-home-about__image .book3d__spine {
  position: absolute;
  width: 50px;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(to right, rgb(64.25, 64.25, 64.25), #1a1a1a);
  border-radius: 5px 0 0 5px;
  transform: rotateY(90deg) translateZ(-25px) translateX(-25px);
}
.p-home-about__image .book3d__pages {
  position: absolute;
  width: 98%;
  height: 98%;
  top: 1%;
  left: 1%;
  background-color: transparent;
  border-radius: 0 5px 5px 0;
  transform: translateZ(24px);
}
.p-home-about__image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.p-spells {
  overflow: hidden;
}
.p-spells__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 576px) and (max-width: 900px) {
  .p-spells__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
@media (min-width: 768px) {
  .p-spells__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
@media (min-width: 992px) {
  .p-spells__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.p-about-history__content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .p-about-history__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (min-width: 992px) {
  .p-about-history__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
  }
}
.p-about-history__text-description {
  margin-bottom: 1rem;
  line-height: 2.1;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .p-about-history__text-description {
    font-size: 0.875rem;
  }
}
@media (min-width: 992px) {
  .p-about-history__text-description {
    font-size: 1rem;
  }
}
.p-about-history__image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  border: 5px solid rgba(185, 153, 99, 0.2);
}

.c-timeline {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.5rem;
  position: relative;
}
@media (min-width: 992px) {
  .c-timeline {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
    padding: 0 8rem;
  }
}
.c-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: rgba(185, 153, 99, 0.2);
  transform: translateX(-50%);
}
.c-timeline__item {
  margin-bottom: 0;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.5s ease;
}
@media (min-width: 992px) {
  .c-timeline__item {
    margin-bottom: 3rem;
  }
}
.c-timeline__item.is-animated {
  opacity: 1;
  transform: translateY(0);
}
.c-timeline__item:last-child {
  margin-bottom: 0;
}
.c-timeline__item:nth-child(odd) .c-timeline__content {
  margin-left: auto;
}
.c-timeline__item:nth-child(odd) .c-timeline__content::before {
  left: -15px;
  border-width: 10px 15px 10px 0;
  border-color: transparent rgba(185, 153, 99, 0.2) transparent transparent;
}
.c-timeline__item:nth-child(even) .c-timeline__content {
  margin-right: auto;
}
.c-timeline__item:nth-child(even) .c-timeline__content::before {
  right: -15px;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent rgba(185, 153, 99, 0.2);
}
.c-timeline__date {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #b99963;
  color: #1a1a1a;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  z-index: 1;
}
@media (min-width: 992px) {
  .c-timeline__date {
    background-color: #b99963;
  }
}
.c-timeline__content {
  width: 45%;
  padding: 1rem 0.5rem 1rem 1rem;
  background-color: rgba(185, 153, 99, 0.1);
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(185, 153, 99, 0.3);
  position: relative;
  margin-top: 2rem;
}
@media (min-width: 992px) {
  .c-timeline__content {
    padding: 1.5rem;
  }
}
.c-timeline__content::before {
  content: "";
  position: absolute;
  top: 20px;
  width: 0;
  height: 0;
  border-style: solid;
}
.c-timeline__title {
  color: #b99963;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  word-break: break-word;
}
@media (min-width: 992px) {
  .c-timeline__title {
    color: #b99963;
  }
}
.c-timeline__text {
  font-size: 0.96rem;
  line-height: 1.75;
  word-break: break-all;
}
@media (min-width: 992px) {
  .c-timeline__text {
    font-size: 1rem;
  }
}

.c-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .c-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}
@media (min-width: 992px) {
  .c-features {
    grid-template-columns: repeat(4, 1fr);
  }
}
.c-features__card {
  background: linear-gradient(to right, rgba(26, 26, 26, 0.7), rgba(42, 42, 42, 0.7));
  padding: 1rem 0.5rem 1rem 1rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(185, 153, 99, 0.3);
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .c-features__card {
    padding: 1.5rem 1rem 1.5rem 1.5rem;
  }
}
.c-features__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  border-color: rgba(185, 153, 99, 0.4);
}
.c-features__card:hover .c-features__icon {
  background-color: #b99963;
  color: #1a1a1a;
}
@media (min-width: 992px) {
  .c-features__card:hover .c-features__icon {
    background-color: #b99963;
  }
}
.c-features__icon {
  width: 80px;
  height: 80px;
  background-color: rgba(185, 153, 99, 0.2);
  color: #b99963;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .c-features__icon {
    background-color: rgba(185, 153, 99, 0.2);
    color: #b99963;
    margin: 0 auto 1.5rem;
  }
}
.c-features__title {
  text-align: center;
  color: #b99963;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}
@media (min-width: 992px) {
  .c-features__title {
    color: #b99963;
    margin-bottom: 1rem;
  }
}
.c-features__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.75;
}
@media (min-width: 992px) {
  .c-features__text {
    font-size: 1rem;
  }
}

.p-about-wizards {
  position: relative;
}

.p-about-usage {
  padding: 4rem 0;
  position: relative;
}

.c-usage-steps {
  max-width: 800px;
  margin: 0 auto;
}
.c-usage-steps__item {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .c-usage-steps__item {
    gap: 1rem;
  }
}
.c-usage-steps__item:last-child {
  margin-bottom: 0;
}
.c-usage-steps__number {
  width: 35px;
  height: 35px;
  background-color: #b99963;
  color: #1a1a1a;
  border-radius: 9999px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .c-usage-steps__number {
    width: 50px;
    height: 50px;
    background-color: #b99963;
    font-size: 1.125rem;
  }
}
.c-usage-steps__content h3 {
  font-weight: 600;
  color: #b99963;
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
}
@media (min-width: 992px) {
  .c-usage-steps__content h3 {
    font-size: 1.25rem;
    color: #b99963;
    margin-bottom: 0.5rem;
  }
}
.c-usage-steps__content p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.875rem;
}
@media (min-width: 992px) {
  .c-usage-steps__content p {
    font-size: 1rem;
  }
}

.p-contact__content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media (min-width: 992px) {
  .p-contact__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
.p-contact__heading {
  color: #b99963;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 992px) {
  .p-contact__heading {
    color: #b99963;
  }
}
.p-contact__description {
  color: #ddd7ce;
  margin-bottom: 2rem;
  line-height: 1.75;
}
@media (min-width: 992px) {
  .p-contact__description {
    color: #ddd7ce;
  }
}
.p-contact__button {
  display: block;
  margin-left: auto;
}

.c-contact-methods__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 992px) {
  .c-contact-methods__item {
    gap: 1rem;
    margin-bottom: 1rem;
  }
}
.c-contact-methods__icon {
  padding: 1rem;
  color: #b99963;
  background-color: rgba(185, 153, 99, 0.1);
  border-radius: 9999px;
  text-align: center;
  font-size: 0.75rem;
}
@media (min-width: 992px) {
  .c-contact-methods__icon {
    background-color: rgba(185, 153, 99, 0.1);
    color: #b99963;
    font-size: 1.25rem;
    padding: 1.5rem;
  }
}
.c-contact-methods__details h4 {
  color: #ddd7ce;
  font-size: 0.875rem;
}
@media (min-width: 992px) {
  .c-contact-methods__details h4 {
    margin-bottom: 0.25rem;
    color: #ddd7ce;
    font-size: 1rem;
  }
}
.c-contact-methods__details p {
  margin-bottom: 0;
  font-size: 1rem;
  opacity: 0.8;
  color: #ddd7ce;
  letter-spacing: 0.05em;
}
@media (min-width: 992px) {
  .c-contact-methods__details p {
    color: #ddd7ce;
    font-size: 0.875rem;
  }
}

.c-form {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(67.5, 67.5, 67.5, 0.8));
  padding: 1.5rem 0.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(185, 153, 99, 0.3);
}
@media (min-width: 768px) {
  .c-form {
    width: 100%;
    margin: 0 auto;
    max-width: 500px;
    padding: 1.5rem;
  }
}
@media (min-width: 992px) {
  .c-form {
    padding: 2rem;
  }
}
.c-form__heading {
  color: #b99963;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
@media (min-width: 992px) {
  .c-form__heading {
    color: #b99963;
  }
}
.c-form__group {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .c-form__group {
    margin-bottom: 1.5rem;
  }
}
.c-form__label {
  display: block;
  margin-bottom: 0.25rem;
  color: #ddd7ce;
  font-weight: 500;
  font-size: 0.875rem;
}
@media (min-width: 992px) {
  .c-form__label {
    font-size: 1rem;
  }
}
.c-form__input, .c-form__textarea {
  width: 100%;
  padding: 0.5rem;
  background-color: rgba(26, 26, 26, 0.5);
  border: 1px solid rgba(185, 153, 99, 0.3);
  border-radius: 0.5rem;
  color: #ddd7ce;
  font-family: "Zen Old Mincho", serif;
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .c-form__input, .c-form__textarea {
    color: #ddd7ce;
    padding: 1rem 1.5rem;
  }
}
.c-form__input:focus, .c-form__textarea:focus {
  outline: none;
  border-color: #b99963;
  box-shadow: 0 0 10px rgba(185, 153, 99, 0.2);
}
.c-form__input.is-error, .c-form__textarea.is-error {
  border-color: #a93d20;
  background-color: rgba(169, 61, 32, 0.05);
  animation: shake 0.5s ease-in-out;
}
.c-form__textarea {
  min-height: 100px;
  resize: vertical;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}
.c-error-messages-container,
.c-error-messages {
  display: none;
}

.c-preview-container {
  margin-bottom: 2rem;
}

.c-preview {
  background-color: rgba(26, 26, 26, 0.5);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(185, 153, 99, 0.3);
}
.c-preview h3 {
  margin-bottom: 1rem;
  color: #b99963;
  font-size: 1.2rem;
}
.c-preview__item {
  margin-bottom: 1rem;
}
.c-preview__item:last-child {
  margin-bottom: 0;
}
.c-preview__item strong {
  display: block;
  margin-bottom: 0.5rem;
  color: #ddd7ce;
}
.c-preview__item p {
  white-space: pre-wrap;
  line-height: 1.6;
}

.p-spell-detail {
  padding: 3rem 0;
  position: relative;
}
@media (min-width: 992px) {
  .p-spell-detail {
    padding: 3rem 0 4rem;
  }
}
.p-spell-detail__content {
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(67.5, 67.5, 67.5, 0.8));
  border-radius: 1rem;
  padding: 1rem 1rem 0.25rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(185, 153, 99, 0.3);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-spell-detail__content {
    padding: 2rem 2rem 1rem;
  }
}
@media (min-width: 992px) {
  .p-spell-detail__content {
    min-width: 700px;
    padding: 3rem 3rem 1rem;
    margin: 0 7rem;
  }
}
.p-spell-detail__header {
  position: relative;
  z-index: 1;
  margin-bottom: 0.5rem;
  text-align: center;
}
@media (min-width: 992px) {
  .p-spell-detail__header {
    margin-bottom: 0.5rem;
  }
}
.p-spell-detail__title {
  color: #b99963;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
@media (min-width: 992px) {
  .p-spell-detail__title {
    color: #b99963;
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }
}
.p-spell-detail__image {
  margin: 0 auto;
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .p-spell-detail__image {
    width: 350px;
    height: 220px;
  }
}
@media (min-width: 992px) {
  .p-spell-detail__image {
    width: 500px;
    height: 300px;
  }
}
.p-spell-detail__image img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.p-spell-detail__image img:hover {
  transform: scale(1.05);
}
.p-spell-detail__description {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: rgba(26, 26, 26, 0.5);
  border-radius: 0.5rem;
  border-left: 4px solid #b99963;
}
@media (min-width: 992px) {
  .p-spell-detail__description {
    padding: 1.5rem;
    border-left: 4px solid #b99963;
    margin-bottom: 2rem;
  }
}
.p-spell-detail__description p {
  margin: 0;
  line-height: 1.75;
}
.p-spell-detail__section {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .p-spell-detail__section {
    margin-bottom: 3rem;
  }
}
.p-spell-detail__section-title {
  color: #b99963;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  font-weight: 600;
}
@media (min-width: 992px) {
  .p-spell-detail__section-title {
    color: #b99963;
    margin-bottom: 1rem;
  }
}
.p-spell-detail__section-title i {
  font-size: 1.125rem;
  margin-right: 0.25rem;
}
@media (min-width: 992px) {
  .p-spell-detail__section-title i {
    font-size: 1.125rem;
  }
}
.p-spell-detail__ingredients {
  padding-left: 18px;
  margin-bottom: 0.25rem;
}
@media (min-width: 992px) {
  .p-spell-detail__ingredients {
    margin-bottom: 0.5rem;
  }
}
.p-spell-detail__ingredients li {
  color: #ddd7ce;
  font-size: 0.875rem;
}
@media (min-width: 992px) {
  .p-spell-detail__ingredients li {
    font-size: 1rem;
  }
}
.p-spell-detail__cautions {
  padding-left: 18px;
}
.p-spell-detail__caution {
  color: #ddd7ce;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  margin: 0;
  font-style: italic;
}
@media (min-width: 992px) {
  .p-spell-detail__caution {
    color: #ddd7ce;
    font-size: 1rem;
  }
}
.p-spell-detail__advice {
  color: #ddd7ce;
  padding: 1rem;
  background-color: rgba(26, 26, 26, 0.5);
  border-radius: 0.5rem;
  border-left: 4px solid #b99963;
}
@media (min-width: 992px) {
  .p-spell-detail__advice {
    color: #ddd7ce;
    padding: 1.5rem;
    border-left: 4px solid #b99963;
  }
}
.p-spell-detail__advice p {
  margin: 0;
  font-style: italic;
}

.c-spell-effects {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.c-spell-effects__tag {
  background-color: rgba(26, 26, 26, 0.7);
  color: #ddd7ce;
  padding: 0.25rem 0.7rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  border: 1px solid rgba(185, 153, 99, 0.3);
}
@media (min-width: 992px) {
  .c-spell-effects {
    color: #ddd7ce;
    font-size: 0.875rem;
  }
}

.c-spell-level__indicator {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.8;
  position: relative;
  display: inline-block;
  padding: 1px 4px;
  border-radius: 0.25rem;
}
@media (min-width: 992px) {
  .c-spell-level__indicator {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    padding: 4px 10px;
  }
}
.c-spell-level__indicator--beginner {
  background: rgba(131, 219, 227, 0.2);
  color: #83dbe3;
}
.c-spell-level__indicator--intermediate {
  background: rgba(40, 243, 121, 0.2);
  color: #28f379;
}
.c-spell-level__indicator--advanced {
  background: rgba(151, 90, 219, 0.2);
  color: #975adb;
}

.c-spell-category {
  border: 1px solid rgba(185, 153, 99, 0.3);
  padding: 2px 8px;
  display: inline-block;
  background-color: #b99963;
  border-radius: 9999px;
  font-size: 0.75rem;
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
@media (min-width: 992px) {
  .c-spell-category {
    background-color: #b99963;
    font-size: 1rem;
    padding: 4px 12px;
    margin-bottom: 1rem;
  }
}

.c-related-spells {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
@media (min-width: 992px) {
  .c-related-spells {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
.c-related-spells__card {
  background-color: rgba(26, 26, 26, 0.5);
  border-radius: 0.25rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}
@media (min-width: 992px) {
  .c-related-spells__card {
    border-radius: 0.5rem;
  }
}
.c-related-spells__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}
.c-related-spells__image {
  width: 100%;
  height: 120px;
  object-fit: cover;
}
.c-related-spells__title {
  padding: 1rem;
  margin: 0;
  font-size: 0.875rem;
  text-align: center;
}
.c-related-spells__link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}
.c-related-spells__link:hover {
  transform: translateY(-5px);
}

.p-error {
  overflow: hidden;
}
.p-error__brand {
  text-align: center;
  padding: 2rem 1rem 0;
}
.p-error__brand img {
  opacity: 0.9;
  max-width: 200px;
  height: auto;
}
.p-error__container {
  margin: 6rem auto 3rem;
  text-align: center;
  max-width: 550px;
  padding: 3rem 1rem;
  background: linear-gradient(to right, rgba(26, 26, 26, 0.7), rgba(42, 42, 42, 0.7));
  border-radius: 1rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}
.p-error__title {
  margin-top: -2.5rem;
  font-size: 8rem;
  font-weight: 700;
  color: #ddd7ce;
}
@media (min-width: 992px) {
  .p-error__title {
    color: #ddd7ce;
  }
}
.p-error__subtitle {
  font-size: 1.125rem;
  margin: 1rem 0;
  color: #ddd7ce;
}
@media (min-width: 992px) {
  .p-error__subtitle {
    font-size: 1.5rem;
    color: #ddd7ce;
  }
}
.p-error__message {
  font-size: 0.875rem;
  margin: 2rem 0;
  line-height: 1.6;
}
@media (min-width: 992px) {
  .p-error__message {
    font-size: 0.875rem;
    color: #ddd7ce;
  }
}
.p-error__links {
  margin-top: 2rem;
}

/**
 * 送信完了ページ
 *
 * BEM構造:
 * Block:     .p-thanks
 * Elements:  __content, __icon, __title, __message
 * Modifiers: なし
 */
.p-thanks {
  padding: 3rem 0 6rem;
}
@media (min-width: 992px) {
  .p-thanks {
    padding: 2rem 0 6rem;
  }
}
.p-thanks__content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.p-thanks__icon {
  font-size: 4rem;
  color: #b99963;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .p-thanks__icon {
    margin-bottom: 2rem;
  }
}
.p-thanks__icon i {
  animation: p-thanks-pulse 2s infinite;
}
.p-thanks__title {
  font-size: 1.5rem;
  color: #b99963;
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .p-thanks__title {
    font-size: 1.875rem;
    color: #b99963;
  }
}
.p-thanks__message {
  margin-bottom: 2rem;
  line-height: 1.5;
  color: #ddd7ce;
}
@media (min-width: 992px) {
  .p-thanks__message {
    color: #ddd7ce;
  }
}

@keyframes p-thanks-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.p-terms {
  margin-top: -40px;
}
@media (min-width: 992px) {
  .p-terms {
    margin-top: -60px;
  }
}
.p-terms__content {
  max-width: 800px;
  margin: 24px auto;
  backdrop-filter: blur(10px);
}
@media (min-width: 768px) {
  .p-terms__content {
    padding: 2rem;
    background-color: rgb(37.5833333333, 37.5833333333, 23.9166666667);
    border-radius: 1rem;
  }
}
@media (min-width: 992px) {
  .p-terms__content {
    padding: 2rem;
    background-color: rgb(37.5833333333, 37.5833333333, 23.9166666667);
    border-radius: 1rem;
  }
}
.p-terms__intro {
  font-family: "Zen Old Mincho", serif;
  line-height: 1.75;
  margin-bottom: 2rem;
  color: #ddd7ce;
}
@media (min-width: 992px) {
  .p-terms__intro {
    color: #ddd7ce;
    font-size: 1rem;
  }
}
.p-terms__section {
  margin-bottom: 2rem;
}
.p-terms__section:last-child {
  margin-bottom: 3rem;
}
.p-terms__section-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #ddd7ce;
}
@media (min-width: 992px) {
  .p-terms__section-title {
    color: #ddd7ce;
  }
}
.p-terms__section-title::before {
  content: "✧";
  margin-right: 0.5rem;
}
.p-terms__section-text {
  margin-bottom: 1rem;
}
.p-terms__section-text:last-child {
  margin-bottom: 0;
}
.p-terms__section-text-secondary {
  font-size: 0.875rem;
  margin-bottom: 0;
  list-style-type: disc;
  margin-left: 1rem;
  line-height: 1.8;
}
@media (min-width: 992px) {
  .p-terms__section-text-secondary {
    font-size: 1rem;
  }
}
.p-terms__section-text-link {
  color: #b99963;
  text-decoration: none;
  transition: color 0.3s ease;
}
@media (min-width: 992px) {
  .p-terms__section-text-link {
    color: #b99963;
  }
}
.p-terms__section-text-link:hover {
  color: #b99963;
  text-decoration: underline;
}
.p-terms__section-updated {
  text-align: right;
  font-size: 0.9rem;
  color: #ddd7ce;
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 992px) {
  .p-terms__section-updated {
    color: #ddd7ce;
  }
}

/*# sourceMappingURL=style.css.map */
