@charset "utf-8";
.special_info_contents{
    display: grid;
    grid-template-columns: 1fr;
    margin: 0 auto min(13.333vw, 100px);
}

.special_time, .special_info_contents h3, .img_thumbnail, .text_special{
    grid-column: 1 / 2;
}

.special_time{
    grid-row: 1 / 2;
    margin: 0 0 13px;
}

.special_time time{
    color: #ACA89E;
    font-size: clamp(0.938rem, 0.58rem + 1.43vw, 1.25rem);
    letter-spacing: .06em;
    margin: 0 1rem 0 0;
}

.special_time .badge_new{
  font-size: clamp(0.875rem, 0.446rem + 1.71vw, 1.25rem);
}

.special_info_contents h3{
    font-weight: var(--font-semibold);
    font-size: clamp(1.375rem, 0.518rem + 3.43vw, 2.125rem);
    letter-spacing: .025em;
    margin: 0 0 min(5vw, 30px);
    padding: 0 0 min(5vw, 30px);
    border-bottom: 1px solid var(--color-base);
}

.img_thumbnail{
    grid-row: 3 / 4;
    border: 1px solid var(--color-border-img);
    margin: 0 0 min(5.333vw, 40px);
}

.img_thumbnail img{
    width: 100%;
}

.text_special{
    height: fit-content;
    grid-row: 4 / 5;
    font-size: clamp(0.938rem, 0.152rem + 3.14vw, 1.625rem);
    letter-spacing: .025em;
    line-height: 2;
    font-weight: var(--font-semibold);
    overflow: hidden;
    transition: .4s;
    position: relative;
}


/*
.text_special_box {
  -webkit-overflow-scrolling: touch;
  will-change: overflow, height;
  transform: translateZ(0);
}*/
/*
.text_special.is-grad::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(0deg, rgb(255 255 255 / 100%) 30%,rgb(255 255 255 / 0%));
    transition: .4s;
}

.text_special.is-active::before{
    opacity: 0;
    visibility: hidden;
}*/

.btn_readmore{
    text-align: center;
    font-weight: var(--font-semibold);
    font-size: clamp(1.063rem, 0.563rem + 2vw, 1.5rem);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background-color: #fff;
}
/*
.btn_readmore::before{
    content: "";
    position: absolute;
    background: linear-gradient(0deg, rgb(255 255 255 / 100%) 30%, rgb(255 255 255 / 0%));
    width: 100%;
    height: 30px;
    left: 0;
    top: -20px;
    z-index: -1;
}
*/
.btn_readmore::after{
    content: "";
    display: inline-block;
    background-size: contain;
    vertical-align: middle;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="17,9"><path stroke="%234F4949" fill="none" d="M.354.361l8.146,7.937L16.646.361" /></svg>');
    width: 17px;
    height: 9px;
    margin: 0 0 0 10px;
}

.specialdetail_container .sort_container{
    margin: 0 auto min(16vw, 120px);
}

.btn_readmore.show{
    display: none;
}

.btn_readmore.show::after{
    transform: rotate(180deg);
}



.readMoreContainer {
  position: relative;
  height: auto;
  max-height: 150px;
  overflow: hidden;
  transition: max-height 0.6s;
}

.readMoreContainer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: 1s;
  background: linear-gradient(to bottom, transparent 40%, #ffffff 100%);
  pointer-events: none;
}

.readMoreContainer.show::after {
  z-index: -1;
  opacity: 0;
}

@media (600px <= width) {
}

@media (1024px < width) {
    .special_info_contents{
        grid-template-columns: 408px 1fr;
        grid-template-rows: 43px auto;
        margin: 0 auto min(13.333vw, 100px);
        gap: 0 60px;
    }

    .special_time{
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .special_time time{
      font-size: 1.125rem;
    }

    .special_info_contents h3{
        font-size: clamp(1.25rem, 0.152rem + 1.71vw, 1.438rem);
    }

    .img_thumbnail{
        grid-column: 1 / 2;
        grid-row: 1 / 3;
      aspect-ratio: 1 / 1;
      height: 408px;
      margin: 0;
    }
    
    .img_thumbnail img{
      object-fit: contain;
      margin: 0 auto;
      height: 406px;
    }

    .text_special{
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        font-size: 1rem;
        height: auto;
        position: static;
    }

    .btn_readmore{
        display: none;
    }

    .text_special::before{
        display: none;
    }

    .readMoreContainer {
        max-height: none;
        overflow: visible; 
    }

    .readMoreContainer::after {
        display: none;
}
}