@charset "UTF-8";

/* === Hero === */
/*.hero {
    margin-top: var(--spacing-md);
}

.hero__image-area {
    margin: 0 auto;
    padding-right: min(7.5%, 40px);
}

.hero__slider {
    position: relative;
    width: 86%;
    max-width: 400px;
    height: auto;
    overflow: visible;
}

.hero__slider::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -10%;
    z-index: var(--z-back);
    width: 100%;
    height: 100%;
    background-color: var(--blue-15);
    border-radius: var(--border-radius-sm);
}*/

.hero__swiper-pagination {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-xs);
}

.hero__image-area .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 8px !important;
}

.hero__image-area .swiper-pagination-bullet-active {
    background: var(--color-primary);
}

.hero__body {
    width: 100%;
    max-width: 1250px;
    margin: var(--spacing-md) auto 0;
    padding: 0 4%;
}

.hero__title {
    position: relative;
    display: block;
    width: fit-content;
    margin: 0 auto;
    font-size: var(--font-size-22);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-heading);
    font-family: var(--font-family-heading-jp);
}

.hero__title::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -30px;
    width: 36px;
    height: 18px;
    background-image: url(../images/hero-frame-left.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.hero__title::after{
    content: "";
    position: absolute;
    right: -30px;
    bottom: -15px;
    width: 36px;
    height: 18px;
    background-image: url(../images/hero-frame-right.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.hero__text {
    width: 100%;
    max-width: 1250px;
    margin: var(--spacing-sm) auto 0;
    padding: 0 4%;
    font-size: var(--font-size-16);
    line-height: 2.0;
}

.news-container {
    padding: 0 4%;
}

.hero__news {
    margin: 30px 0;
    padding: 6px;
    background-color: var(--color-primary);
    transition: background-color 0.4s ease;
}

.hero__news-slider {
    border: solid 1px var(--white);
}

.hero__news-link {
    display: flex;
    gap: 5px;
    padding: 16px 16px 16px 10px;
}

.hero__news:has(.hero__news-link:hover) {
    background-color: var(--color-btn);
}

.hero__news-tag {
    flex: 0 0 auto;
    font-size: var(--font-size-16);
    line-height: 1.2;
    color: var(--white);
    letter-spacing: 0.17em;
}

.hero__news-title {
    flex: 1;
    font-size: var(--font-size-16);
    line-height: 1.2;
    color: var(--white);
    letter-spacing: 0.17em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero__slider .swiper-slide {
    position: relative;
    opacity: .7;
}

.hero__slider .swiper-slide-active {
  opacity: 1;
}

.hero__slider .swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(0,0,0, .3);
}

.hero__slider .swiper-slide img {
    
}

.hero__slider .swiper-slide .text {
    font-family: 'Shippori Mincho', serif;
    color: #fff;
    text-shadow: #000000 2px 0 8px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.hero__slider .swiper-slide .text h2 {
    font-size: 36px;
}

#gia-logo {
    max-width: 100px;
    height: auto;
    margin-bottom: 0.4rem;
}

@media (min-width: 1240px){
    .hero__content {
        padding-right: 6.4%;
    }
}
/* Hero pc 1024px~ */
@media (min-width: 1024px){
    /*.hero {
        width: 100%;
        max-width: 1440px;
        margin: var(--spacing-xl) auto 0;
        padding: 0 4%;
    }

    .hero__image-area {
        flex: 1 1 0;
        max-width: 623px;
    }

    .hero__slider {
        width: 100%;
    }
    */

    .hero__image-area .swiper-pagination-bullet {
        width: 16px;
        height: 16px;
        margin: 0 13px !important;
    }

    .hero__body {
        flex: 1 1 0;
        min-width: 0;
        width: 100%;
        max-width: none;
        margin: var(--spacing-xl) auto 0;
        padding: 0 calc(100px + 4%) 0 4%;
    }

    .hero__title {
        position: relative;
        display: block;
        width: fit-content;
        margin: 0 auto 0 20px;
        font-size: var(--font-size-22);
        font-weight: var(--font-weight-bold);
        line-height: var(--line-height-heading);
        font-family: var(--font-family-heading-jp);
    }

    .hero__text {
        max-width: auto;
        padding: 0;
        font-size: var(--font-size-20);
    }

    .news-container {
        padding: 0 calc(100px + 4%) 0 4%;
    }
}

/* Hero 1240px~ */
@media (min-width: 1240px){
    /*.hero {
        padding: 0 calc(100px + 4%) 0 4%;
    }*/
}

/* === Items Section === */
.items__slider {
    margin-top: 20px;
}

.items__slide  {
    padding: 0 15px;
}

.items__demo {
    width: 100%;
}

.items__label {
    transition: color 0.4s ease, border-color 0.4s ease;
}

.items__demo:hover .items__label {
    color: var(--color-btn);
    border-color: var(--color-btn);
}

.items__label {
    display: block;
    width: fit-content;
    margin: var(--spacing-xs) auto 0;
    font-size: 16px;
    font-weight: var(--font-weight-bold);
}

.items__swiper-pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.items__slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 8px !important;
}

.items__slider .swiper-pagination-bullet-active {
    background: var(--color-primary);
}

.items__button {
    margin: 20px auto 30px;
}

/* --- Items-Swiper --- */
.items__slider {
    width: 100%;
    padding: 0 4%;
}

.items__slide p.red {
  font-weight: bold;
  color: #f73838;
  text-align: center;
}

/* --- Items-Modal --- */
.items-modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--black-70);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.items-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.items-modal__content {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    padding: 20px;
    background: var(--white);
}

.items-modal__image {
    display: block;
    width: 100%;
    height: auto;
}

.items-modal__body {
    overflow-y: auto;
    max-height: 1;
    margin-top: var(--spacing-xs);
}

.items-modal__title {
    font-size: var(--font-size-20);
    font-weight: var(--font-weight-bold);
}

.items-modal__close {
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background-color: var(--color-primary);
    border-radius: var(--border-radius-circle);
    transform: translate(50%, -50%);
}

.items-modal__close-bar:first-of-type {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background-color: var(--white);
    transform: translate(-50%, -50%) rotate(45deg);
}

.items-modal__close-bar:last-of-type {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background-color: var(--white);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.items-modal__text {
    font-size: 14px;
}

.information {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Items pc 1024px~ */
@media (min-width: 1024px){
    .items__slider {
        margin-top: var(--spacing-lg);
        z-index: var(--z-slider);
    }

    .items__slider .swiper-pagination-bullet {
        width: 16px;
        height: 16px;
        margin: 0 13px !important;
    }

    .items-modal__content {
        flex-direction: row;
        align-items: center;
        gap: 50px;
        width: 75%;
        max-width: 1060px;
        max-height: 60vh;
        padding: 60px 80px;
    }

    .items-modal__image-area {
        flex: 1 1 0;
        max-width: 337px;
    }

    .items-modal__body {
        flex: 1;
        min-width: 0;
        margin-top: 0;
        max-height: calc(60vh - 120px);
    }

    .items-modal__title {
        font-size: var(--font-size-24);
    }

    .items-modal__close {
        width: 32px;
        height: 32px;
    }

    .items-modal__close-bar:first-of-type {
        width: 23px;
    }

    .items-modal__close-bar:last-of-type {
        width: 23px;
    }
}

/* Items pc 1240px~ */
@media (min-width: 1240px){
    .items {
        padding: 0 100px 0 0;
    }
}

/* === Purchase Section === */
.purchase__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-top: 20px;
}

.purchase__label {
    margin-top: var(--spacing-xs);
    font-size: var(--font-size-14);
    font-weight: var(--font-weight-bold);
    text-align: center;
}

.purchase__button {
    margin: var(--spacing-md) auto;
} 

/* Purchase tablet 768px~ */
@media (min-width: 768px){
    .purchase__list {
        gap: 80px 60px;
        padding: 0 60px;
    }
}

/* Purchase pc 1024px~ */
@media (min-width: 1024px){
}

/* === Information Sections === */

.info-section__row {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.info-section__heading {
    font-size: var(--font-size-40);
    font-weight: var(--font-weight-heading-en);
    line-height: var(--line-height-heading);
}

.info-section__more {
    font-size: var(--font-size-20);
    font-weight: var(--font-weight-bold);
    line-height: 1.1;
    color: var(--color-primary);
    border-bottom: solid 1px var(--color-primary);
    transition: color 0.4s ease, border 0.4s ease;
}

.info-section__more:hover {
    color: var(--color-btn);
    border-bottom: solid 1px var(--color-btn);
}

.info-section__list {
    margin-top: var(--spacing-xs);
}

.info-section__article {
    position: relative;
    padding: 20px 10px;
    border-bottom: solid 1px var(--gray-100);
}

.info-section__article:hover .info-section__title {
    color: var(--color-btn);
    border-bottom: solid 1px var(--color-btn);
}

.info-section__article::before {
    content: "";
    position: absolute;
    top: 65%;
    right: 20px;
    width: 7px;
    height: 14px;
    background-image: url(../images/arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(0, -50%);
}

.info-section__date {
    font-size: var(--font-size-16);
    font-weight: var(--font-weight-medium);
    line-height: 1.35;
}

.info-section__category {
    margin-left: 20px;
    padding: 4px 18px;
    background-color: var(--gray-700);
    font-size: var(--font-size-14);
    font-weight: var(--font-weight-medium);
    color: var(--white);
}

.info-section__title {
    width: 55%;
    margin-top: var(--spacing-xs);
    border-bottom: solid 1px var(--color-primary);
    font-size: var(--font-size-16);
    font-weight: var(--font-weight-medium);
    line-height: 1.1;
    color: var(--color-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.4s ease, border 0.4s ease;
}

@media (min-width: 751px){
    .information {
        width: 70%;
        margin: 0 auto;
    }
    .strengths {
        gap: 15px;
    }
}

@media (max-width: 750px){
    .hero__slider .swiper-slide img {
        height: 375px;
        object-fit: cover;
    }
    .hero__slider .swiper-slide .text h2 {
        font-size: 6vw;
    }
    .hero__slider .swiper-slide .text p {
        font-size: 4vw;
    }
    .hero__slider .swiper-slide .container {
        padding: 0;
    }
    .hero__slider .swiper-slide .text {
        padding: 0 4%;
        line-height: 1.8;
    }
}

/* Infomation pc 1024px~ */
@media (min-width: 1024px){
    .information {
        display: flex;
    }

    .info-section {
        flex: 1;
        margin-top:40px;
    }

    .info-section__heading {
        font-size: var(--font-size-60);
    }
    
    .info-section__list {
        margin-top: var(--spacing-sm);
    }

    .info-section__article {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .info-section__date {
        flex: 0 0 1;
    }

    .info-section__category {
        flex: 0 0 1;
        margin-left: 0;
        line-height: 1.35;
    }

    .info-section__title {
        flex: 1;
        width: auto;
        margin-top: 0;
        margin-right: 80px;
    }
}

.pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.pagination .page-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination .page-numbers li {
  margin: 0;
  padding: 0;
}

.pagination .page-numbers a,
.pagination .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 9999px;
  background: #fff;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  box-sizing: border-box;
}

.pagination .page-numbers a:hover {
  background: #333;
  color: #fff;
  border-color: #333;
}

.pagination .page-numbers .current {
  background: #333;
  color: #fff;
  border-color: #333;
}

.pagination .page-numbers .dots {
  border: none;
  background: transparent;
  min-width: auto;
  padding: 0 4px;
}

.hero .text h2 {
  line-height: 1.6;
  font-family: 'Shippori Mincho', serif;
}

.hero .text h2 span {
  display: block;
}

/* 1行目 */
.hero .text01 {
  margin-left: 0;
}

/* 2行目（少し右にずらす） */
.hero .text02 {
 margin-left: 70px;
}

/* 3行目（さらに右にずらす） */
.hero .text03 {
  margin-left: 250px;
}

.hero .text h2 span.font-gold, .font-gold {
/* ゴールドグラデーション */
background: linear-gradient(
  160deg,
  #b07a10 0%,
  #d4a820 12%,
  #f5e070 30%,
  #fffbe8 48%,
  #f5e070 62%,
  #d4a820 75%,
  #b07a10 100%
);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
display: inline-block;
text-shadow: none;
filter:
drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.8))
drop-shadow(0px 1px 1px rgba(255, 230, 100, 0.3));
}

.hero .text h2 span.font-gold {
  background: linear-gradient(
    160deg,
    #b07a10 0%,
    #d4a820 12%,
    #f5e070 30%,
    #fffbe8 48%,
    #f5e070 62%,
    #d4a820 75%,
    #b07a10 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: none;
}

.hero .text h2 span.gold {
  /* ゴールドグラデーション */
  background: linear-gradient(
    160deg,
    #b07a10 0%,
    #d4a820 12%,
    #f5e070 30%,
    #fffbe8 48%,
    #f5e070 62%,
    #d4a820 75%,
    #b07a10 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
  
  /* 光沢感 */
  /*text-shadow:
    0 1px 0 #fff6cc,
    0 2px 2px rgba(0,0,0,0.3);*/
    
    display: inline-block;
    border: 1px solid  #d4af37;
    padding: 2px 20px;
    position: relative;
    display: inline-block;
    text-shadow: none;
}

.hero .text h2 span.gold:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1); /* Light smoke overlay */
  backdrop-filter: blur(5px); /* Apply blur to the background */
  z-index: -1; /* Place the effect behind the text */
}

.hero__slider .swiper-slide .smoke-glass {
  display: inline-block;
  padding: 10px;
}

.hero__slider .swiper-slide .smoke-glass:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1); /* Light smoke overlay */
  backdrop-filter: blur(5px); /* Apply blur to the background */
  z-index: -1; /* Place the effect behind the text */
  border-radius: 10px; /* Optional: rounds corners for a softer look */
}

.w30 {
  width: 30px;
  height: auto !important;
}

.w20 {
  width: 20px;
  height: auto !important;
}

@media screen and (max-width: 767px) {
  .pagination {
    margin-top: 30px;
  }

  .pagination .page-numbers {
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .pagination .page-numbers a,
  .pagination .page-numbers span {
    min-width: 40px;
    height: 40px;
    font-size: 13px;
    padding: 0 10px;
  }
  .purchase__list {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .hero .text02 {
    margin-left: 50px;
  }
  .hero .text03 {
    margin-left: 182px;
  }
  
  .items, .purchase {
    margin-top: 30px;
  }
  .strengths__image-area {
    flex: 1;
    max-width: none;
  }
  
  .smoke-glass {
    margin-left: 20px;
  }
}