/*==================================================
　Hero Section
==================================================*/
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 3rem 3rem;
}
.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(123, 75, 184, 0.15) 0%, transparent 50%),radial-gradient(ellipse at 70% 80%, rgba(75, 50, 120, 0.1) 0%, transparent 50%);
    z-index: 1;
}
.hero__moon {
    position: absolute;
    top: 10%;
    right: 12%;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(168, 180, 212, 0.4), 0 0 120px rgba(123, 75, 184, 0.3);
    animation: moonFloat 8s ease-in-out infinite;
    z-index: 5;
}
.hero__moon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes moonFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* 宿曜盤 */
.sukuyo-ring {
    position: absolute;
    width: 600px;
    height: 600px;
    left: -150px;
    top: 50%;
    transform: translateY(-50%) rotateX(60deg) rotateZ(-15deg);
    transform-style: preserve-3d;
    z-index: 2;
    opacity: 0.8;
    animation: ringRotate 120s linear infinite;
}

.sukuyo-ring-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    right: -100px;
    bottom: -50px;
    transform: rotateX(55deg) rotateZ(20deg);
    transform-style: preserve-3d;
    z-index: 2;
    opacity: 0.6;
    animation: ringRotate2 150s linear infinite reverse;
}

@keyframes ringRotate {
    from { transform: translateY(-50%) rotateX(60deg) rotateZ(-15deg); }
    to { transform: translateY(-50%) rotateX(60deg) rotateZ(345deg); }
}

@keyframes ringRotate2 {
    from { transform: rotateX(55deg) rotateZ(20deg); }
    to { transform: rotateX(55deg) rotateZ(380deg); }
}

.sukuyo-ring svg,
.sukuyo-ring-2 svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 30px rgba(123, 75, 184, 0.6));
}

.hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 40px;
    max-width: 800px;
}

/*.hero__badge {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid var(--color-purple-glow);
  font-size: 11px;
  color: var(--color-purple-glow);
  letter-spacing: 0.25em;
  margin-bottom: 40px;
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}*/

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero__title {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    line-height: 1.8;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
    color: #ffefcf;
    /*color: var(--color-gold-pale);*/
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero__title-sub {
    font-size: 2.5rem;
    color: #ffefcf;
    /*color: var(--color-gold);*/
    letter-spacing: 0.2em;
}
.ttl_gold {
    color: var(--color-gold);
}
.hero__sub {
    color: #c9a962;
    letter-spacing: 0.3em;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}


.hero__copy {
    line-height: 2.4;
    color: #fff7e9;
    /*color: var(--color-text-light);*/
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}


.hero__ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
    animation: fadeIn 1s ease 0.5s forwards;
    opacity: 0;
}

.hero__ornament-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
}


@media (max-width: 1280px) { 
    .sukuyo-ring,
    .sukuyo-ring-2 {
        width: 480px;
        height: 480px;
    }
    .sukuyo-ring {
        top: 45%;
        left: -180px;
    }
    .sukuyo-ring-2 {
        right: -130px;
    }
}

@media (max-width: 1024px) {
        .hero {
        padding: 160px 40px 100px;
    }
    .hero__title {
        font-size: 2rem;
    }
    .hero__title-sub {
        font-size: 2rem;
    }
    .sukuyo-ring,
    .sukuyo-ring-2 {
        width: 420px;
        height: 420px;
        /*opacity: 0.4;*/
    }
    .sukuyo-ring {
        top: 40%;
        left: -140px;
    }
    .sukuyo-ring-2 {
        right: -160px;
    }
    .hero__moon {
        width: 130px;
        height: 130px;
        right: 8%;
    }

}
@media (max-width: 768px) {
    .hero {
        padding: 8rem 2rem 3rem;
        min-height: auto;
    }
    .hero__content {
        padding: 0 10px;
    }
    .hero__title {
        font-size: 1.75rem;
        writing-mode: vertical-rl;
        text-orientation: upright;
        margin: 0 auto;
        text-align: left;
        line-height: 1.6rem; 
        letter-spacing: .1em;
    }
    .hero__title br {
        display: none;
    }
    .hero__title-sub {
        font-size: 1.75rem;
        display: block;
        margin-right: 1em;
    }
    .sukuyo-ring,
    .sukuyo-ring-2 {
        width: 400px;
        height: 400px;
        opacity: 0.4;
    }
    .sukuyo-ring {
        top: 35%;
        left: -150px;
        transform: translateY(0) rotateX(60deg) rotateZ(-15deg);
    }
    .sukuyo-ring-2 {
        right: -190px;
        bottom: 20%;
        transform: rotateX(55deg) rotateZ(20deg);
    }
    .hero__moon {
        width: 100px;
        height: 100px;
        right: 5%;
    }
    .hero__sub {
        font-size: 1rem;
    }

}
@media (max-width: 600px) {
    .hero {
        padding: 5rem 1.5rem 3rem;
    }
    .hero__title {
        font-size: 1.45rem;
        letter-spacing: .08em;
        line-height: 1.1rem;
    }
    .hero__title-sub {
        font-size: 1.45rem;
    }
    .sukuyo-ring,
    .sukuyo-ring-2 {
      width: 320px;
      height: 320px;
      opacity: 0.3;
    }
    .sukuyo-ring {
        top: 25%;
        left: -140px;
    }
    .sukuyo-ring-2 {
        right: -200px;
        bottom: 25%;
    }
    .hero__moon {
        width: 60px;
        height: 60px;
    }
    
    
}





/*==================================================
　About Section
==================================================*/
.about__content {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 2rem;
    align-items: center;
}
.about__text h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    line-height: 1.8;
    color: #c9a962;
}

.about__text p {
    color: #ffefcf;
    margin-bottom: 1rem;
    text-align: justify;
    text-align-last: left;
}



@media (max-width: 1024px) {

}
@media (max-width: 768px) {
    .about__content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .about__img img {
        width: 80%;
        margin: 0 auto;
    }
    .about__text h3 {
        text-align: center;
        margin-bottom: 1rem;
    }
}
    
    
    
    
@media (max-width: 600px) {
    .about__img img {
        width: 90%;
    }
    .about__text h3 {
        font-size: 1.15rem;
        letter-spacing: .01rem;
    }

    

}






/*==================================================
　Point Section
==================================================*/
.point__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.point-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(18, 11, 31, .8);
    border: 1px solid var(--color-border);
    border-radius: 3px;
    transition: all var(--transition-base);
}
.point-card:hover {
    border-color: rgba(123, 75, 184, .5);
    transform: translateY(-5px);
}
.point-card__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    border: 1px solid #c9a962;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a962;
    font-size: 1.25rem;
}

.point-card__title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: .8rem;
    letter-spacing: .1em;
    color: #c9a962;
}

.point-card__text {
    text-align: justify;
    text-align: left;
    font-size: .875rem;
    color: #ffefcf;
}


@media (max-width: 1024px) {

}

@media (max-width: 768px) {
    .point__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .point-card {
        padding: 2.5rem 3rem;
    }
    .point-card__title {
        font-size: 1.25rem;
    }

}




@media (max-width: 600px) {
    .point-card {
        padding: 2rem;
    }

    
}





/*==================================================
　Price Section
==================================================*/
.menu__list {
    max-width: 680px;
    margin: 0 auto;
}

.menu__item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1.5rem 1rem;
    border-bottom: 1px solid rgba(123, 75, 184, .3);
}

.menu__name {
    letter-spacing: .1em;
    color: #ffefcf;
}

.menu__name span {
    font-size: .875rem;
}

.menu__price {
    font-size: 1.5rem;
    color: #c9a962;
    letter-spacing: .1em;
}

.menu__price span {
    font-size: .75rem;
    color: #ffefcf;
}

.menu__note {
    text-align: center;
    color: #ffefcf;
}



@media (max-width: 1024px) {

}
@media (max-width: 768px) {

}
@media (max-width: 600px) {

}







/*==================================================
　Profile Section
==================================================*/
.profile__content {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 3rem;
    align-items: start;
}

/*.profile__image {
    overflow: hidden;
}

.profile__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}*/

.profile__text h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: .1em;
    line-height: 1.8;
    color: #c9a962;
}
.profile__text h3 span {
    font-size: .875rem;
    letter-spacing: 0;
    margin-left: .5rem;
}
p.profile__title {
    font-size: .875rem;
    color: #ffefcf;
    letter-spacing: .1em;
    margin-bottom: 2rem;
}

.profile_txt {
    color: #ffefcf;
    margin-bottom: 3rem;
    text-align: justify;
    text-align-last: left;
}



@media (max-width: 1024px) {

}
@media (max-width: 768px) {
    .profile__content {
        grid-template-columns: 1fr;
        gap: 1rem;
  }
  .profile__image img {
      width: 80%;
      margin: 0 auto;
    }
    .profile__text h3 {
        text-align: center;
    }
    p.profile__title {
        text-align: center;
        margin-bottom: 1.6rem;
    }

}


@media (max-width: 600px) {

    
}








/*==================================================
　Voice Section
==================================================*/
.voice__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 0 auto 2rem;
}

.voice-card {
    padding: 2.5rem 2rem;
    background: rgba(18, 11, 31, .8);
    border: 1px solid rgba(123, 75, 184, 0.2);
    border-radius: 3px;
}

.voice-card:hover {
    border-color: rgba(123, 75, 184, .5);
    transform: translateY(-5px);
}

.voice-card__attribution {
    font-size: .875rem;
    padding-bottom: .3rem;
    border-bottom: 1px solid #ffefcf;
    margin-bottom: .8rem;
}

.voice-card__text {
    text-align: justify;
    text-align-last: left;
}



@media (max-width: 1024px) {

}
@media (max-width: 768px) {
    .voice__list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

}
@media (max-width: 600px) {
    .voice-card {
        padding: 2rem;
    }

}




/*==================================================
　FAQ Section
==================================================*/
.faq__list {
    max-width: 820px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid rgba(123, 75, 184, .3);
    padding: 1.5rem 1rem;
}

.faq__question {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: .08em;
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    gap: .8rem;
    color: #ffefcf;
}

.faq__question::before {
    content: 'Q';
    color: #a8b4d4;
    font-size: 1rem;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border: 1px solid #a8b4d4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq__answer {
    font-size: 1rem;
    color: rgba(232, 219, 184, 0.8);
    padding-left: 2.6rem;
    line-height: 2;
}


@media (max-width: 1024px) {

}

@media (max-width: 768px) {
    .faq__question {
        font-size: 1rem;
        margin-bottom: 0;
    }
   
}

@media (max-width: 600px) {
    .faq__question {
        font-size: .9rem;
        line-height: 1.6rem;
        align-items: flex-start;
        margin-bottom: .5rem;
    }
    .faq__answer {
        font-size: .875rem;
    }
}





/*==================================================
　CTA Sectio
==================================================*/
.cta {
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, 
        rgba(74, 44, 122, 0.4) 0%, 
        rgba(26, 15, 46, 0.2) 40%,
        transparent 70%
    );
}

.cta::before,
.cta::after {
    display: none;
}

.cta__text {
    max-width: 680px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.cta .btn--cta {
    position: relative;
    z-index: 1;
}




@media (max-width: 1024px) {

}

@media (max-width: 768px) {

}

@media (max-width: 600px) {
    .cta__text {
        text-align: left;
        text-align: justify;
    }
}




/*==================================================
　Payment Section
==================================================*/
.payment__note {
    text-align: center;
    color: #ffefcf;
}
.payment__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem auto 0;
}

.payment-card {
    padding: 2.5rem 3rem;
    background: rgba(18, 11, 31, .8);
    border: 1px solid rgba(123, 75, 184, 0.2);
    border-radius: 3px;
}

.payment-card:hover {
    border-color: rgba(123, 75, 184, .6);
    transform: translateY(-5px);
}
.payment__img {
    margin: 0 auto 1rem;
}
.payment__img img {
    width: 30%;
    margin: 0 auto;
}

.payment-card_title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: .8rem;
    letter-spacing: .1em;
}


.payment-card__txt {
    text-align: left;
    text-align: justify;
}





@media (max-width: 1024px) {

}




@media (max-width: 768px) {
    .payment__note {
        text-align: left;
        text-align: justify;
    }
    .payment__list {
        gap: 1rem;
    }
    .payment-card {
        padding: 2.5rem 2rem;
    }
    .payment__img img {
        width: 56%;
    }
    .payment-card_title {
        font-size: 1.25rem;
    }
    .payment-card__txt {
        line-height: 1.8rem;
    }

}



@media (max-width: 600px) {
    .payment__list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .payment-card {
        padding: 2rem;
    }
    .payment__img {
        margin: 0 auto .3rem;
    }
    .payment__img img {
        width: 36%;
    }
    .payment-card_title {
        font-size: 1.25rem;
        margin-bottom: .5rem;
    }

    
    
}







/*==================================================
　News Section
==================================================*/
.news__list {
    max-width: 680px;
    margin: 0 auto 2rem;
}

.news__item {
    display: flex;
    gap: 2rem;
    padding: .5rem 1rem .8rem;
    border-bottom: 1px solid rgba(123, 75, 184, .3);
    transition: opacity var(--transition-base);
}
.news__item:hover {
    opacity: 0.7;
}

.news__date {
    font-size: .875rem;
    flex-shrink: 0;
}

.news__title {

}





@media (max-width: 1024px) {

}
@media (max-width: 768px) {
    .news__item {
        flex-direction: column;
        gap: 1rem;
        line-height: .8rem;
        padding: .5rem 1rem 1rem;
    }
    
    

}
@media (max-width: 600px) {

}







/*==================================================
　Access Sectio
==================================================*/
.access__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 0 auto;
}
.access-map {
    position: relative;
    width: 100%;
    height: 450px;
}

.access-map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) brightness(1) contrast(1.1);
}
.access-info h3 {
    font-size: 1.5rem;
    color: #c9a962;
    margin: 0 auto .8rem;
}
.access-info h3 span {
    font-size: .875rem;
    margin-left: .3rem;
}
.access-info ul {
    margin: 0 0 1.8rem 2rem;
    list-style: disc;
}
.access-info p {
    margin: 0 auto 1.8rem;
}

@media (max-width: 1024px) {

}
@media (max-width: 768px) {
    .access__list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    access-info h3 {
        font-size: 1.25rem;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .access-map {
        height: 350px;
    }
    .access-info h3 {
        font-size: 1.25rem;
        margin: 0 auto;
    }
    .access-info p {
        line-height: 1.6rem;
    }
    .access-info ul {
        margin: 0 0 1rem 1.5rem;
    }
    .access-info ul li {
        line-height: 1.6rem;
    }
    
}



/* ========== Single Page Content ========== */
.single-content {
    max-width: 1020px;
    margin: 0 auto;
}

.single-content__header {
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid var(--color-border);
}

.single-content__date {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-sm);
}

.single-content__title {
  font-size: var(--font-size-2xl);
  font-weight: 400;
  letter-spacing: var(--letter-spacing-base);
  line-height: var(--line-height-tight);
  color: var(--color-gold-pale);
}

.single-content__body {
    line-height: 2;
    color: var(--color-text-light);
    padding: 5rem 0;
}

.single-content__body p {
  margin-bottom: 1.5em;
}

/*.single-content__body h2 {
  font-size: var(--font-size-xl);
  font-weight: 500;
  margin: 2em 0 1em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-gold-pale);
}

.single-content__body h3 {
  font-size: var(--font-size-lg);
  font-weight: 500;
  margin: 1.5em 0 0.75em;
  color: var(--color-gold-pale);
}*/

.single-content__body ul,
.single-content__body ol {
  margin: 1em 0;
  padding-left: 1.5em;
}

.single-content__body li {
  margin-bottom: 0.5em;
  list-style: disc;
}

.single-content__body ol li {
  list-style: decimal;
}

.single-content__body blockquote {
  margin: 1.5em 0;
  padding: 1em 1.5em;
  background: rgba(18, 11, 31, 0.6);
  border-left: 3px solid var(--color-gold);
}

.single-content__body img {
  margin: 1.5em 0;
  border-radius: 4px;
}

/* ========== Archive Page ========== */
.archive-list {
  max-width: var(--max-width-content);
  margin: 0 auto;
}

.archive-item {
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid var(--color-border);
}

.archive-item__link {
  display: flex;
  gap: 30px;
  transition: opacity var(--transition-base);
}

.archive-item__link:hover {
  opacity: 0.7;
}

.archive-item__date {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.archive-item__title {
  font-size: var(--font-size-base);
  color: var(--color-text-light);
}

/* ========== Pagination ========== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-xl);
}

.pagination__item {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
  border: 1px solid var(--color-border);
  color: var(--color-text-light);
  transition: all var(--transition-base);
}

.pagination__item:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.pagination__item.is-current {
  background: var(--color-gold);
  color: var(--color-bg);
  border-color: var(--color-gold);
}

/* ========== 404 Page ========== */
.error-404 {
  text-align: center;
  padding: var(--spacing-3xl) var(--spacing-lg);
}

.error-404__title {
  font-size: 120px;
  font-weight: 300;
  color: var(--color-border);
  line-height: 1;
  margin-bottom: var(--spacing-md);
}

.error-404__text {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-xl);
  color: var(--color-text-light);
}


/*==================================================
　ごあいさつ
==================================================*/
.message__content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: start;
    padding: 2.5rem 3rem;
    background: rgba(18, 11, 31, .8);
    border: 1px solid rgba(123, 75, 184, 0.2);
    border-radius: 3px;
}
.message__img {
    text-align: center;
}
.message__img h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: .1em;
    line-height: 1.8;
    color: #c9a962;
}
.message__img h2 span {
    font-size: .875rem;
    letter-spacing: 0;
    margin-left: .3rem;
}
.message__img p {
    font-size: .875rem;
    color: #ffefcf;
    letter-spacing: .1em;
    margin-bottom: 2rem;
}

.message__txt {
    color: #ffefcf;
    text-align: justify;
    text-align-last: left;
}

.message__txt p {margin-bottom: 0;}

@media (max-width: 1024px) {

}
@media (max-width: 768px) {
    .message__content {
        grid-template-columns: 1fr;
        gap: 1rem;
  }
    .message__image img {
      width: 80%;
      margin: 0 auto;
    }
    .message__text h3 {
        text-align: center;
    }
    p.message__title {
        text-align: center;
        margin-bottom: 1.6rem;
    }

}


@media (max-width: 600px) {

    
}