@charset "UTF-8";
/* ===== Util / Components ===== */
/* ==========================================================================
  レスポンス設計の注釈
  ・SP：デザインカンプの幅（414px）を基準にvw計算しています。
  ・PC：基本として768px〜1920pxの間で可変（clamp）するように設定しています。
========================================================================== */
/* ========================================
  【PC】 mv
======================================== */
@media (min-width: 768px) {
  .mv {
    max-width: 1920px;
    margin: 0 auto;
    background-color: #fff;
  }
  .mv__inner {
    padding-left: clamp(40px, 13.33px + 3.472vw, 80px); /* 768px〜1920px */
    padding-right: 20px;
  }
  .mv__content {
    display: flex;
    justify-content: space-between;
    gap: clamp(24px, 10.67px + 1.736vw, 44px); /* 768px〜1920px */
  }
  /* mv__left */
  .mv__left {
    width: clamp(240px, 133.33px + 13.889vw, 400px); /* 768px〜1920px */
    flex-shrink: 0;
  }
  .mv__title-label {
    margin-top: clamp(8px, -62.67px + 9.201vw, 114px); /* 768px〜1920px */
    margin-bottom: clamp(4px, -6.67px + 1.389vw, 20px); /* 768px〜1920px */
    font-size: clamp(12px, 6.67px + 0.694vw, 20px); /* 768px〜1920px */
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #333;
  }
  .mv__title {
    margin-bottom: clamp(20px, -6.67px + 3.472vw, 60px); /* 768px〜1920px */
    font-size: clamp(20px, 9.33px + 1.389vw, 36px); /* 768px〜1920px */
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #333;
  }
  .mv__title span {
    margin-left: clamp(-16px, -2.667px - 0.694vw, -8px); /*768px ~ 1920px*/
  }
  /* gnav-list */
  .mv__gnav {
    margin-bottom: 138px;
    margin-bottom: clamp(30px, -42px + 9.375vw, 138px); /* 768px〜1920px */
  }
  .mv__gnav-list {
    display: flex;
  }
  .mv__gnav-item {
    position: relative;
    display: flex;
    align-items: center;
    padding-inline: 25px;
    padding-inline: clamp(12px, 3.33px + 1.128vw, 25px); /* 768px〜1920px */
    border-left: 1px solid #333;
  }
  .mv__gnav-item:last-child {
    border-right: 1px solid #333;
  }
  .mv__gnav-icon {
    display: block;
    margin-right: clamp(6px, 2px + 0.521vw, 12px); /* 768px〜1920px */
  }
  .mv__gnav-icon--light {
    width: 18px;
  }
  .mv__gnav-label {
    font-size: clamp(12px, 9.33px + 0.347vw, 16px); /* 768px〜1920px */
    line-height: 1;
    letter-spacing: 0;
    text-decoration: none;
    color: #333;
  }
  .mv__gnav-arrow {
    display: block;
    margin-left: clamp(7px, 1.67px + 0.694vw, 15px); /* 768px〜1920px */
    width: 11px;
    transform: translateY(-2px);
  }
  /* gnav-sub-list */
  .mv__gnav-sub-list {
    position: absolute;
    top: calc(100% + 30px);
    left: 0;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 30px;
    row-gap: 0;
    width: 460px;
    margin: 0;
    padding-block: 10px;
    padding-inline: 30px;
    list-style: none;
    background-color: #fff;
    border: 1px solid #D6D6D6;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  }
  .mv__gnav-sub-list::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 30px;
  }
  .mv__gnav-item:hover .mv__gnav-sub-list,
  .mv__gnav-item:focus-within .mv__gnav-sub-list {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
  }
  .mv__gnav-sub-list:has(.mv__gnav-sub-item:last-child:nth-child(odd)) .mv__gnav-sub-item:not(:last-child) {
    border-bottom: 1px solid #D6D6D6;
  }
  .mv__gnav-sub-list:has(.mv__gnav-sub-item:last-child:nth-child(even)) .mv__gnav-sub-item:not(:nth-last-child(-n+2)) {
    border-bottom: 1px solid #D6D6D6;
  }
  .mv__gnav-sub-link {
    display: grid;
    align-items: center;
    grid-template-columns: 26px 1fr;
    gap: 18px;
    height: 100%;
    padding-block: 20px;
    padding-left: 30px;
    padding-right: 1em;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.05em;
    color: #333;
  }
  .mv__gnav-sub-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
  }
  .mv__gnav-sub-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .mv__illust {
    position: relative;
    width: fit-content;
    margin-inline: auto;
  }
  .mv__illust img {
    display: block;
    width: 177px;
    width: clamp(90px, 32px + 7.552vw, 177px); /* 768px〜1920px */
    height: auto;
    aspect-ratio: 177/99;
    object-fit: contain;
  }
  .mv__scroll {
    position: absolute;
    right: calc(100% + clamp(35px, 1.667px + 4.34vw, 85px));
    top: clamp(10px, -23.33px + 4.34vw, 60px); /* 768px〜1920px */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .mv__scroll-text {
    writing-mode: vertical-rl;
    font-size: clamp(10px, 8.67px + 0.174vw, 12px); /* 768px〜1920px */
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #333;
  }
  .mv__scroll-line {
    position: relative;
    display: block;
    width: 0.5px;
    height: clamp(40px, 13.33px + 3.472vw, 80px); /* 768px〜1920px */
  }
  .mv__scroll-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    transform: scaleY(0);
    transform-origin: top center;
    animation: mv-scroll-line 2s ease-in-out infinite;
  }
  @keyframes mv-scroll-line {
    0% {
      transform: scaleY(0);
      transform-origin: top center;
    }
    40% {
      transform: scaleY(1);
      transform-origin: top center;
    }
    50% {
      transform: scaleY(1);
      transform-origin: bottom center;
    }
    80% {
      transform: scaleY(0);
      transform-origin: bottom center;
    }
    100% {
      transform: scaleY(0);
      transform-origin: bottom center;
    }
  }
}
@media (min-width: 768px) and (prefers-reduced-motion: reduce) {
  .mv__scroll-line::after {
    animation: none;
    transform: scaleY(1);
    transform-origin: top center;
  }
}
@media (min-width: 768px) {
  /* mv__right */
  .mv__right {
    flex: 1;
    min-width: 0;
  }
  .mv__visual {
    display: grid;
    grid-template-columns: minmax(0, 983fr) minmax(0, 390fr);
    grid-template-rows: auto auto;
    gap: clamp(4px, 0px + 0.521vw, 10px); /* 768px〜1920px */
  }
  .mv__visual-main {
    display: block;
    grid-column: 1;
    grid-row: 1/-1;
    align-self: start;
    width: 100%;
    aspect-ratio: 983/740;
    min-height: 0;
    overflow: hidden;
  }
  .mv__visual-main img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .mv__visual-sub-item {
    display: block;
    aspect-ratio: 390/365;
    overflow: hidden;
  }
  .mv__visual-sub-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
/* ========================================
  【SP】 mv
======================================== */
@media (max-width: 767px) {
  .mv {
    background-color: #fff;
  }
  .mv__inner {
    padding-top: 7.2vw;
  }
  .mv__content {
    display: flex;
    flex-direction: column;
    gap: 5.3vw;
  }
  /* mv__left */
  .mv__left {
    display: grid;
    grid-template-columns: fit-content(100%) auto;
    grid-template-rows: auto auto;
    gap: 1.7vw;
    padding-inline: 4.1vw;
  }
  .mv__title-label {
    grid-column: 1;
    grid-row: 1;
    font-size: 2.4vw;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #333;
  }
  .mv__title {
    grid-column: 1;
    grid-row: 2;
    font-size: 4.8vw;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #333;
  }
  .mv__title span {
    margin-left: -1.9vw;
    white-space: nowrap;
  }
  /* gnav-list */
  .mv__gnav {
    display: none;
  }
  .mv__illust {
    grid-column: 2;
    grid-row: 1/-1;
    align-self: start;
  }
  .mv__illust img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 177/99;
    object-fit: contain;
  }
  .mv__scroll {
    display: none;
  }
  /* mv__right */
  .mv__visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.2vw;
  }
  .mv__visual-main {
    display: block;
    grid-column: 1/-1;
    grid-row: 1;
    width: 100%;
  }
  .mv__visual-sub-item:first-child {
    grid-column: 1;
    grid-row: 2;
  }
  .mv__visual-sub-item:last-child {
    grid-column: 2;
    grid-row: 2;
  }
  .mv__visual-sub-item {
    display: block;
    width: 100%;
  }
}
/* ========================================
  【PC】 news
======================================== */
@media (min-width: 768px) {
  .news {
    margin-top: clamp(-100px, 33.333px - 6.944vw, -20px); /*768px ~ 1920px*/
    background-color: #F4F1EF;
  }
  .news .news__inner {
    padding-top: clamp(88px, 1.33px + 11.285vw, 218px); /* 768px〜1920px */
    padding-bottom: 100px;
  }
  .news .news__content {
    display: flex;
    align-items: flex-start;
    width: min(95%, 1440px);
    gap: clamp(20px, -6.67px + 3.472vw, 60px); /* 768px〜1920px */
    margin-inline: auto;
    padding-top: 52px;
    padding-bottom: 46px;
    padding-inline: clamp(40px, -13.33px + 6.944vw, 120px); /* 768px〜1920px */
    background-color: #fff;
  }
  .news .news__title {
    font-size: clamp(24px, 20px + 0.521vw, 30px); /* 768px〜1920px */
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #333;
  }
  .news .news__list {
    display: flex;
    flex-direction: column;
    gap: 23px;
  }
  .news .news__link {
    display: flex;
    align-items: flex-start;
    gap: clamp(26px, 6px + 2.604vw, 56px); /* 768px〜1920px */
  }
  .news .news__date {
    font-size: clamp(16px, 13.33px + 0.347vw, 20px); /* 768px〜1920px */
    font-weight: 300;
    line-height: 1.333;
    letter-spacing: 0.05em;
    color: #F17B01;
  }
  .news .news__item-title {
    font-size: clamp(14px, 11.33px + 0.347vw, 18px); /* 768px〜1920px */
    font-weight: 400;
    line-height: 1.3333333333;
    letter-spacing: 0.03em;
    color: #333;
  }
  .news .news__item--empty {
    width: 100%;
  }
}
/* ========================================
  【SP】 news
======================================== */
@media (max-width: 767px) {
  .news {
    margin-top: -24.2vw;
    background-color: #F4F1EF;
  }
  .news .news__inner {
    padding-top: 35vw;
    padding-bottom: 14.5vw;
    padding-inline: 4.1vw;
  }
  .news .news__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.9vw;
    padding-top: 7.5vw;
    padding-bottom: 6.8vw;
    padding-inline: 6.3vw;
    background-color: #fff;
  }
  .news .news__title {
    font-size: 4.3vw;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #333;
  }
  .news .news__list {
    display: flex;
    flex-direction: column;
    gap: 3.9vw;
    width: 100%;
  }
  .news .news__link {
    display: flex;
    align-items: flex-start;
    gap: 7vw;
  }
  .news .news__date {
    font-size: 3.4vw;
    font-weight: 300;
    line-height: 1.7142857143;
    letter-spacing: 0.05em;
    color: #F17B01;
  }
  .news .news__item-title {
    font-size: 3.4vw;
    font-weight: 400;
    line-height: 1.7142857143;
    letter-spacing: 0.03em;
    color: #333;
  }
  .news .news__item--empty {
    width: 100%;
  }
}
/* ========================================
  【PC】 title
======================================== */
@media (min-width: 768px) {
  .title {
    background-color: #F4F1EF;
  }
  .title .title__inner {
    padding-bottom: 140px;
  }
  .title .title__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 6.67px + 6.736vw, 40px); /* 768px〜1920px */
  }
  .title .title__illust-left,
  .title .title__illust-right {
    width: clamp(45px, 58.67px + 4.34vw, 45px); /* 768px〜1920px */
    height: auto;
  }
  .title .title__text {
    width: clamp(290px, 333.33px + 19.097vw, 290px); /* 768px〜1920px */
    height: auto;
  }
}
/* ========================================
  【SP】 title
======================================== */
@media (max-width: 767px) {
  .title {
    background-color: #F4F1EF;
  }
  .title .title__inner {
    padding-bottom: 17.9vw;
  }
  .title .title__content {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0 6vw;
  }
  .title .title__illust-left,
  .title .title__illust-right {
    width: 7vw;
    height: auto;
  }
  .title .title__illust-left {
  }
  .title .title__illust-right {
    transform: translateX(-5.3vw);
  }
  .title .title__text {
    width: 44.4vw;
    height: auto;
  }
}
/* ========================================
  【PC】 feature
======================================== */
.feature {
  background-color: #f4f1ef;
  /* ========================================
    【PC】 collection
  ======================================== */
}
@media (min-width: 768px) {
  .feature .feature__inner {
    width: min(95%, 1440px);
    margin-inline: auto;
    padding-bottom: 172px;
  }
  .feature .feature__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
  }
  .feature .feature__title-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .feature .feature__label {
    font-size: clamp(18px, 10px + 1.042vw, 30px); /* 768px〜1920px */
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #333;
  }
  .feature .feature__title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 3.33px + 0.868vw, 20px); /* 768px〜1920px */
    font-size: clamp(24px, 18.67px + 0.694vw, 32px); /* 768px〜1920px */
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.03em;
    color: #333;
  }
  .feature .feature__title-bar {
    display: block;
    width: clamp(40px, 26.67px + 1.736vw, 60px); /* 768px〜1920px */
    height: 1px;
    background-color: #333;
  }
  .feature .feature__button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: clamp(190px, 156.67px + 4.34vw, 240px); /* 768px〜1920px */
    padding-inline: 30px;
    padding-bottom: 12px;
    border-bottom: 1px solid #333;
  }
  .feature .feature__button-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    color: #333;
  }
  .feature .feature__list {
    display: grid;
    grid-template-columns: minmax(0, 690fr) minmax(0, 345fr) minmax(0, 345fr);
    grid-template-rows: repeat(6, auto);
    row-gap: 0;
    column-gap: clamp(12px, 0px + 1.563vw, 30px); /* 768px〜1920px */
  }
  .feature .feature__item {
    display: grid;
    grid-template-rows: subgrid;
    color: #333;
  }
  .feature .feature__item--empty {
    grid-column: 1/-1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
  }
  .feature .feature__card {
    display: contents;
  }
  .feature .feature__item--main {
    grid-column: 1;
    grid-row: 1/7;
  }
  .feature .feature__item:nth-child(2),
  .feature .feature__item:nth-child(4) {
    grid-column: 2;
    grid-row: 1/7;
  }
  .feature .feature__item:nth-child(3),
  .feature .feature__item:nth-child(5) {
    grid-column: 3;
    grid-row: 1/7;
  }
  .feature {
    /* 1枚目のカード */
  }
  .feature .feature__item--main .feature__thumb {
    grid-column: 1;
    grid-row: 1/5;
    min-height: 0;
    height: 100%;
  }
  .feature .feature__item--main .feature__dots {
    grid-column: 1;
    grid-row: 5/6;
  }
  .feature .feature__item--main .feature__body {
    grid-column: 1;
    grid-row: 6/7;
  }
  .feature {
    /* 2枚目のカード */
  }
  .feature .feature__item:nth-child(2) .feature__thumb,
  .feature .feature__item:nth-child(2) .feature__dots,
  .feature .feature__item:nth-child(2) .feature__body {
    grid-column: 2;
  }
  .feature .feature__item:nth-child(2) .feature__thumb {
    grid-row: 1/2;
  }
  .feature .feature__item:nth-child(2) .feature__dots {
    grid-row: 2/3;
  }
  .feature .feature__item:nth-child(2) .feature__body {
    grid-row: 3/4;
    padding-bottom: clamp(12px, 6.67px + 1.215vw, 30px);
  }
  .feature {
    /* 3枚目のカード */
  }
  .feature .feature__item:nth-child(3) .feature__thumb,
  .feature .feature__item:nth-child(3) .feature__dots,
  .feature .feature__item:nth-child(3) .feature__body {
    grid-column: 3;
  }
  .feature .feature__item:nth-child(3) .feature__thumb {
    grid-row: 1/2;
  }
  .feature .feature__item:nth-child(3) .feature__dots {
    grid-row: 2/3;
  }
  .feature .feature__item:nth-child(3) .feature__body {
    grid-row: 3/4;
    padding-bottom: clamp(12px, 6.67px + 1.215vw, 30px);
  }
  .feature {
    /* 4枚目のカード */
  }
  .feature .feature__item:nth-child(4) .feature__thumb,
  .feature .feature__item:nth-child(4) .feature__dots,
  .feature .feature__item:nth-child(4) .feature__body {
    grid-column: 2;
  }
  .feature .feature__item:nth-child(4) .feature__thumb {
    grid-row: 4/5;
  }
  .feature .feature__item:nth-child(4) .feature__dots {
    grid-row: 5/6;
  }
  .feature .feature__item:nth-child(4) .feature__body {
    grid-row: 6/7;
  }
  .feature {
    /* 5枚目のカード */
  }
  .feature .feature__item:nth-child(5) .feature__thumb,
  .feature .feature__item:nth-child(5) .feature__dots,
  .feature .feature__item:nth-child(5) .feature__body {
    grid-column: 3;
  }
  .feature .feature__item:nth-child(5) .feature__thumb {
    grid-row: 4/5;
  }
  .feature .feature__item:nth-child(5) .feature__dots {
    grid-row: 5/6;
  }
  .feature .feature__item:nth-child(5) .feature__body {
    grid-row: 6/7;
  }
  .feature .feature__thumb {
    display: block;
    position: relative;
    overflow: hidden;
    line-height: 0;
    text-decoration: none;
    color: inherit;
  }
  .feature .feature__thumb .feature__thumb-slider,
  .feature .feature__thumb .feature__thumb-slide {
    height: 100%;
  }
  .feature .feature__thumb .feature__thumb-slider {
    margin-bottom: 0;
  }
  .feature .feature__thumb .feature__thumb-slider .slick-list,
  .feature .feature__thumb .feature__thumb-slider .slick-track,
  .feature .feature__thumb .feature__thumb-slider .slick-slide,
  .feature .feature__thumb .feature__thumb-slider .slick-slide > div {
    height: 100%;
  }
  .feature .feature__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .feature .feature__item--main .feature__thumb .feature__thumb-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .feature .feature__item:not(.feature__item--main) .feature__thumb {
    width: 100%;
    height: auto;
    align-self: start;
    aspect-ratio: 345/250;
  }
  .feature .feature__item:not(.feature__item--main) .feature__thumb .feature__thumb-slider {
    width: 100%;
    height: 100%;
  }
  .feature .feature__item:nth-child(4) .feature__thumb,
  .feature .feature__item:nth-child(5) .feature__thumb {
    align-self: end;
  }
  .feature .feature__thumb .slick-dotted.slick-slider,
  .feature .feature__thumb .slick-slider {
    margin-bottom: 0;
  }
  .feature .feature__body {
    display: block;
    text-decoration: none;
    color: inherit;
  }
  .feature .feature__badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    padding: 6px 14px;
    font-size: clamp(16px, 13.33px + 0.347vw, 20px); /* 768px〜1920px */
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
    background-color: #f17b01;
  }
  .feature .feature__dots {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22.5px;
    margin-top: clamp(6px, 2px + 0.521vw, 12px); /* 768px〜1920px */
    margin-bottom: clamp(6px, 0px + 0.781vw, 15px); /* 768px〜1920px */
  }
  .feature .feature__dots .slick-dots {
    display: flex;
    position: static;
    bottom: auto;
    left: auto;
    width: auto;
    gap: 22.5px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .feature .feature__dots .slick-dots li {
    line-height: 1;
    width: auto;
    height: auto;
    margin: 0;
  }
  .feature .feature__dots .slick-dots li button,
  .feature .feature__dots .collection__dot-static {
    display: block;
    width: clamp(8px, 3.33px + 0.608vw, 15px); /* 768px〜1920px */
    height: clamp(8px, 3.33px + 0.608vw, 15px); /* 768px〜1920px */
    padding: 0;
    border: 1px solid #333;
    border-radius: 50%;
    font-size: 0;
    background-color: #fff;
  }
  .feature .feature__dots .slick-dots li button::before {
    content: none;
  }
  .feature .feature__dots .slick-dots li.slick-active button,
  .feature .feature__dots .collection__dot-static.is-active {
    border-color: #fff;
    background-color: #333;
  }
  .feature .feature__dot {
    display: block;
    width: clamp(8px, 3.33px + 0.608vw, 15px); /* 768px〜1920px */
    height: clamp(8px, 3.33px + 0.608vw, 15px); /* 768px〜1920px */
    border: 1px solid #333;
    border-radius: 50%;
    background-color: #fff;
  }
  .feature .feature__dot.is-active {
    border-color: #fff;
    background-color: #333;
  }
  .feature .feature__category {
    margin-bottom: clamp(4px, -3.33px + 0.955vw, 15px); /* 768px〜1920px */
  }
  .feature .feature__category span {
    display: inline-block;
    padding-block: 6px;
    padding-inline: clamp(14px, 8px + 0.781vw, 23px); /* 768px〜1920px */
    font-size: clamp(12px, 10px + 0.26vw, 15px); /* 768px〜1920px */
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    color: #333;
    background-color: #fff;
  }
  .feature .feature__name {
    margin-bottom: clamp(5px, 1.67px + 0.434vw, 10px); /* 768px〜1920px */
    font-size: clamp(12px, 10px + 0.26vw, 15px); /* 768px〜1920px */
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0;
    color: #333;
  }
  .feature .feature__item:hover .feature__name {
    text-decoration: underline;
  }
  .feature .feature__price {
    margin-bottom: clamp(8px, -3.33px + 1.476vw, 25px); /* 768px〜1920px */
    font-size: clamp(14px, 11.33px + 0.347vw, 18px); /* 768px〜1920px */
    line-height: 1;
    letter-spacing: 0;
    color: #333;
  }
  .feature .feature__price-tax {
    margin-left: 0.3em;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    color: #333;
  }
  .feature .feature__comment {
    margin: 0;
    font-size: clamp(11px, 9.67px + 0.174vw, 13px); /* 768px〜1920px */
    font-weight: 400;
    line-height: 1.8461538462;
    letter-spacing: 0.03em;
  }
  .feature .feature__item:not(.feature__item--main) .feature__comment {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    min-height: 2lh;
  }
}
.feature {
  /* ========================================
    【SP】 collection
  ======================================== */
}
@media (max-width: 767px) {
  .feature .feature__inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding-inline: 4.1vw;
    padding-bottom: 24.9vw;
  }
  .feature {
    /* 位置決め */
  }
  .feature .feature__head {
    display: contents;
  }
  .feature .feature__title-wrap {
    order: 1;
  }
  .feature .feature__button {
    order: 3;
  }
  .feature .feature__list {
    order: 2;
  }
  .feature .feature__title-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2vw;
  }
  .feature .feature__label {
    font-size: 4.3vw;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.1em;
    color: #333;
  }
  .feature .feature__title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.4vw;
    margin-bottom: 6.5vw;
    font-size: 4.3vw;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.03em;
    color: #333;
  }
  .feature .feature__title-bar {
    display: block;
    width: 7.2vw;
    height: 0.2vw;
    background-color: #333;
  }
  .feature .feature__button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 58vw;
    margin-inline: auto;
    padding-inline: 7.2vw;
    padding-bottom: 2.9vw;
    border-bottom: 1px solid #333;
  }
  .feature .feature__button-text {
    font-size: 3.9vw;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    color: #333;
  }
  .feature .feature__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3.9vw;
    row-gap: 7.2vw;
    margin-bottom: 12.1vw;
  }
  .feature .feature__item--main {
    grid-column: 1/-1;
  }
  .feature .feature__item--empty {
    grid-column: 1/-1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12vw 4vw;
  }
  .feature .feature__thumb {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 380/345;
    text-decoration: none;
    color: inherit;
  }
  .feature .feature__thumb .feature__thumb-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .feature .feature__thumb .feature__thumb-slider .slick-list,
  .feature .feature__thumb .feature__thumb-slider .slick-track,
  .feature .feature__thumb .feature__thumb-slider .slick-slide,
  .feature .feature__thumb .feature__thumb-slider .slick-slide > div {
    height: 100% !important;
  }


  .feature .feature__thumb img {
    display: block;
    width: 100%;
    height: 40vw;
    object-fit: cover;
  }

.feature__item:first-child .feature__thumb img{ height: 84vw;}

  .feature .feature__body {
    display: block;
    text-decoration: none;
    color: inherit;
  }
  .feature .feature__badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    padding: 2.2vw 2.4vw 1.7vw;
    font-size: 3.4vw;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
    background-color: #f17b01;
  }
  .feature .feature__dots {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5.4vw;
    margin-block: 2.4vw;
  }
  .feature .feature__dots .slick-dots {
    display: flex;
    position: static;
    bottom: auto;
    left: auto;
    width: auto;
    gap: 3.62vw;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .feature .feature__dots .slick-dots li {
    line-height: 1;
    width: auto;
    height: auto;
    margin: 0;
  }
  .feature .feature__dots .slick-dots li button,
  .feature .feature__dots .collection__dot-static {
    display: block;
    width: 2.42vw;
    height: 2.42vw;
    padding: 0;
    border: 1px solid #333;
    border-radius: 50%;
    font-size: 0;
    background-color: #fff;
  }
  .feature .feature__dots .slick-dots li button::before {
    content: none;
  }
  .feature .feature__dots .slick-dots li.slick-active button,
  .feature .feature__dots .collection__dot-static.is-active {
    border-color: #fff;
    background-color: #333;
  }
  .feature .feature__dot {
    display: block;
    width: 2.42vw;
    height: 2.42vw;
    border: 1px solid #333;
    border-radius: 50%;
    background-color: #fff;
  }
  .feature .feature__dot.is-active {
    border-color: #fff;
    background-color: #333;
  }
  .feature .feature__category {
    margin-bottom: 3.6vw;
  }
  .feature .feature__category span {
    display: inline-block;
    padding-block: 1.4vw;
    padding-inline: 4.1vw;
    font-size: 3.4vw;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    color: #333;
    background-color: #fff;
  }
  .feature .feature__name {
    margin-bottom: 2.4vw;
    font-size: 3.6vw;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0;
    color: #333;
  }
  .feature .feature__name:hover {
    text-decoration: underline;
  }
  .feature .feature__price {
    margin-bottom: 4.8vw;
    font-size: 4.3vw;
    line-height: 1;
    letter-spacing: 0;
    color: #333;
  }
  .feature .feature__price-tax {
    margin-left: 0.3em;
    font-size: 2.9vw;
    font-weight: 400;
    letter-spacing: 0;
    color: #333;
  }
  .feature .feature__comment {
    margin: 0;
    font-size: 3.1vw;
    font-weight: 400;
    line-height: 1.8461538462;
    letter-spacing: 0.03em;
  }
  .feature .feature__item:not(.feature__item--main) .feature__comment {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    min-height: 3lh;
  }
}

/* ========================================
  【PC】 goods
======================================== */
.goods {
  background-color: #f4f1ef;
  /* ========================================
    【PC】 collection
  ======================================== */
}
@media (min-width: 768px) {
  .goods .goods__inner {
    width: min(95%, 1440px);
    margin-inline: auto;
    padding-bottom: 172px;
  }
  .goods .goods__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
  }
  .goods .goods__title-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .goods .goods__label {
    font-size: clamp(18px, 10px + 1.042vw, 30px); /* 768px〜1920px */
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #333;
  }
  .goods .goods__title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 3.33px + 0.868vw, 20px); /* 768px〜1920px */
    font-size: clamp(24px, 18.67px + 0.694vw, 32px); /* 768px〜1920px */
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.03em;
    color: #333;
  }
  .goods .goods__title-bar {
    display: block;
    width: clamp(40px, 26.67px + 1.736vw, 60px); /* 768px〜1920px */
    height: 1px;
    background-color: #333;
  }
  .goods .goods__button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: clamp(190px, 156.67px + 4.34vw, 240px); /* 768px〜1920px */
    padding-inline: 30px;
    padding-bottom: 12px;
    border-bottom: 1px solid #333;
  }
  .goods .goods__button-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    color: #333;
  }
  .goods .goods__list {
    display: grid;
    grid-template-columns: minmax(0, 690fr) minmax(0, 345fr) minmax(0, 345fr);
    grid-template-rows: repeat(6, auto);
    row-gap: 0;
    column-gap: clamp(12px, 0px + 1.563vw, 30px); /* 768px〜1920px */
  }
  .goods .goods__item {
    display: grid;
    grid-template-rows: subgrid;
    color: #333;
  }
  .goods .goods__item--empty {
    grid-column: 1/-1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
  }
  .goods .goods__card {
    display: contents;
  }
  .goods .goods__item--main {
    grid-column: 1;
    grid-row: 1/7;
  }
  .goods .goods__item:nth-child(2),
  .goods .goods__item:nth-child(4) {
    grid-column: 2;
    grid-row: 1/7;
  }
  .goods .goods__item:nth-child(3),
  .goods .goods__item:nth-child(5) {
    grid-column: 3;
    grid-row: 1/7;
  }
  .goods {
    /* 1枚目のカード */
  }
  .goods .goods__item--main .goods__thumb {
    grid-column: 1;
    grid-row: 1/5;
    min-height: 0;
    height: 100%;
  }
  .goods .goods__item--main .goods__dots {
    grid-column: 1;
    grid-row: 5/6;
  }
  .goods .goods__item--main .goods__body {
    grid-column: 1;
    grid-row: 6/7;
  }
  .goods {
    /* 2枚目のカード */
  }
  .goods .goods__item:nth-child(2) .goods__thumb,
  .goods .goods__item:nth-child(2) .goods__dots,
  .goods .goods__item:nth-child(2) .goods__body {
    grid-column: 2;
  }
  .goods .goods__item:nth-child(2) .goods__thumb {
    grid-row: 1/2;
  }
  .goods .goods__item:nth-child(2) .goods__dots {
    grid-row: 2/3;
  }
  .goods .goods__item:nth-child(2) .goods__body {
    grid-row: 3/4;
    padding-bottom: clamp(12px, 6.67px + 1.215vw, 30px);
  }
  .goods {
    /* 3枚目のカード */
  }
  .goods .goods__item:nth-child(3) .goods__thumb,
  .goods .goods__item:nth-child(3) .goods__dots,
  .goods .goods__item:nth-child(3) .goods__body {
    grid-column: 3;
  }
  .goods .goods__item:nth-child(3) .goods__thumb {
    grid-row: 1/2;
  }
  .goods .goods__item:nth-child(3) .goods__dots {
    grid-row: 2/3;
  }
  .goods .goods__item:nth-child(3) .goods__body {
    grid-row: 3/4;
    padding-bottom: clamp(12px, 6.67px + 1.215vw, 30px);
  }
  .goods {
    /* 4枚目のカード */
  }
  .goods .goods__item:nth-child(4) .goods__thumb,
  .goods .goods__item:nth-child(4) .goods__dots,
  .goods .goods__item:nth-child(4) .goods__body {
    grid-column: 2;
  }
  .goods .goods__item:nth-child(4) .goods__thumb {
    grid-row: 4/5;
  }
  .goods .goods__item:nth-child(4) .goods__dots {
    grid-row: 5/6;
  }
  .goods .goods__item:nth-child(4) .goods__body {
    grid-row: 6/7;
  }
  .goods {
    /* 5枚目のカード */
  }
  .goods .goods__item:nth-child(5) .goods__thumb,
  .goods .goods__item:nth-child(5) .goods__dots,
  .goods .goods__item:nth-child(5) .goods__body {
    grid-column: 3;
  }
  .goods .goods__item:nth-child(5) .goods__thumb {
    grid-row: 4/5;
  }
  .goods .goods__item:nth-child(5) .goods__dots {
    grid-row: 5/6;
  }
  .goods .goods__item:nth-child(5) .goods__body {
    grid-row: 6/7;
  }
  .goods .goods__thumb {
    display: block;
    position: relative;
    overflow: hidden;
    line-height: 0;
    text-decoration: none;
    color: inherit;
  }
  .goods .goods__thumb .goods__thumb-slider,
  .goods .goods__thumb .goods__thumb-slide {
    height: 100%;
  }
  .goods .goods__thumb .goods__thumb-slider {
    margin-bottom: 0;
  }
  .goods .goods__thumb .goods__thumb-slider .slick-list,
  .goods .goods__thumb .goods__thumb-slider .slick-track,
  .goods .goods__thumb .goods__thumb-slider .slick-slide,
  .goods .goods__thumb .goods__thumb-slider .slick-slide > div {
    height: 100%;
  }
  .goods .goods__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .goods .goods__item--main .goods__thumb .goods__thumb-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .goods .goods__item:not(.goods__item--main) .goods__thumb {
    width: 100%;
    height: auto;
    align-self: start;
    aspect-ratio: 345/250;
  }
  .goods .goods__item:not(.goods__item--main) .goods__thumb .goods__thumb-slider {
    width: 100%;
    height: 100%;
  }
  .goods .goods__item:nth-child(4) .goods__thumb,
  .goods .goods__item:nth-child(5) .goods__thumb {
    align-self: end;
  }
  .goods .goods__thumb .slick-dotted.slick-slider,
  .goods .goods__thumb .slick-slider {
    margin-bottom: 0;
  }
  .goods .goods__body {
    display: block;
    text-decoration: none;
    color: inherit;
  }
  .goods .goods__badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    padding: 6px 14px;
    font-size: clamp(16px, 13.33px + 0.347vw, 20px); /* 768px〜1920px */
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
    background-color: #f17b01;
  }
  .goods .goods__dots {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22.5px;
    margin-top: clamp(6px, 2px + 0.521vw, 12px); /* 768px〜1920px */
    margin-bottom: clamp(6px, 0px + 0.781vw, 15px); /* 768px〜1920px */
  }
  .goods .goods__dots .slick-dots {
    display: flex;
    position: static;
    bottom: auto;
    left: auto;
    width: auto;
    gap: 22.5px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .goods .goods__dots .slick-dots li {
    line-height: 1;
    width: auto;
    height: auto;
    margin: 0;
  }
  .goods .goods__dots .slick-dots li button,
  .goods .goods__dots .collection__dot-static {
    display: block;
    width: clamp(8px, 3.33px + 0.608vw, 15px); /* 768px〜1920px */
    height: clamp(8px, 3.33px + 0.608vw, 15px); /* 768px〜1920px */
    padding: 0;
    border: 1px solid #333;
    border-radius: 50%;
    font-size: 0;
    background-color: #fff;
  }
  .goods .goods__dots .slick-dots li button::before {
    content: none;
  }
  .goods .goods__dots .slick-dots li.slick-active button,
  .goods .goods__dots .collection__dot-static.is-active {
    border-color: #fff;
    background-color: #333;
  }
  .goods .goods__dot {
    display: block;
    width: clamp(8px, 3.33px + 0.608vw, 15px); /* 768px〜1920px */
    height: clamp(8px, 3.33px + 0.608vw, 15px); /* 768px〜1920px */
    border: 1px solid #333;
    border-radius: 50%;
    background-color: #fff;
  }
  .goods .goods__dot.is-active {
    border-color: #fff;
    background-color: #333;
  }
  .goods .goods__category {
    margin-bottom: clamp(4px, -3.33px + 0.955vw, 15px); /* 768px〜1920px */
  }
  .goods .goods__category span {
    display: inline-block;
    padding-block: 6px;
    padding-inline: clamp(14px, 8px + 0.781vw, 23px); /* 768px〜1920px */
    font-size: clamp(12px, 10px + 0.26vw, 15px); /* 768px〜1920px */
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    color: #333;
    background-color: #fff;
  }
  .goods .goods__name {
    margin-bottom: clamp(5px, 1.67px + 0.434vw, 10px); /* 768px〜1920px */
    font-size: clamp(12px, 10px + 0.26vw, 15px); /* 768px〜1920px */
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0;
    color: #333;
  }
  .goods .goods__item:hover .goods__name {
    text-decoration: underline;
  }
  .goods .goods__price {
    margin-bottom: clamp(8px, -3.33px + 1.476vw, 25px); /* 768px〜1920px */
    font-size: clamp(14px, 11.33px + 0.347vw, 18px); /* 768px〜1920px */
    line-height: 1;
    letter-spacing: 0;
    color: #333;
  }
  .goods .goods__price-tax {
    margin-left: 0.3em;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    color: #333;
  }
  .goods .goods__comment {
    margin: 0;
    font-size: clamp(11px, 9.67px + 0.174vw, 13px); /* 768px〜1920px */
    font-weight: 400;
    line-height: 1.8461538462;
    letter-spacing: 0.03em;
  }
  .goods .goods__item:not(.goods__item--main) .goods__comment {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    min-height: 2lh;
  }
}
.goods {
  /* ========================================
    【SP】 collection
  ======================================== */
}
@media (max-width: 767px) {
  .goods .goods__inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding-inline: 4.1vw;
    padding-bottom: 24.9vw;
  }
  .goods {
    /* 位置決め */
  }
  .goods .goods__head {
    display: contents;
  }
  .goods .goods__title-wrap {
    order: 1;
  }
  .goods .goods__button {
    order: 3;
  }
  .goods .goods__list {
    order: 2;
  }
  .goods .goods__title-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2vw;
  }
  .goods .goods__label {
    font-size: 4.3vw;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.1em;
    color: #333;
  }
  .goods .goods__title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.4vw;
    margin-bottom: 6.5vw;
    font-size: 4.3vw;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.03em;
    color: #333;
  }
  .goods .goods__title-bar {
    display: block;
    width: 7.2vw;
    height: 0.2vw;
    background-color: #333;
  }
  .goods .goods__button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 58vw;
    margin-inline: auto;
    padding-inline: 7.2vw;
    padding-bottom: 2.9vw;
    border-bottom: 1px solid #333;
  }
  .goods .goods__button-text {
    font-size: 3.9vw;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    color: #333;
  }
  .goods .goods__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3.9vw;
    row-gap: 7.2vw;
    margin-bottom: 12.1vw;
  }
  .goods .goods__item--main {
    grid-column: 1/-1;
  }
  .goods .goods__item--empty {
    grid-column: 1/-1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12vw 4vw;
  }
  .goods .goods__thumb {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 380/345;
    text-decoration: none;
    color: inherit;
  }
  .goods .goods__thumb .goods__thumb-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .goods .goods__thumb .goods__thumb-slider .slick-list,
  .goods .goods__thumb .goods__thumb-slider .slick-track,
  .goods .goods__thumb .goods__thumb-slider .slick-slide,
  .goods .goods__thumb .goods__thumb-slider .slick-slide > div {
    height: 100% !important;
  }
  .goods .goods__thumb img {
    display: block;
    width: 100%;
    height: 40vw;
    object-fit: cover;
  }


.goods__item:first-child .goods__thumb img{ height: 84vw;}
.goods .goods__thumb img{}

  .goods .goods__body {
    display: block;
    text-decoration: none;
    color: inherit;
  }
  .goods .goods__badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    padding: 2.2vw 2.4vw 1.7vw;
    font-size: 3.4vw;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
    background-color: #f17b01;
  }
  .goods .goods__dots {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5.4vw;
    margin-block: 2.4vw;
  }
  .goods .goods__dots .slick-dots {
    display: flex;
    position: static;
    bottom: auto;
    left: auto;
    width: auto;
    gap: 3.62vw;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .goods .goods__dots .slick-dots li {
    line-height: 1;
    width: auto;
    height: auto;
    margin: 0;
  }
  .goods .goods__dots .slick-dots li button,
  .goods .goods__dots .collection__dot-static {
    display: block;
    width: 2.42vw;
    height: 2.42vw;
    padding: 0;
    border: 1px solid #333;
    border-radius: 50%;
    font-size: 0;
    background-color: #fff;
  }
  .goods .goods__dots .slick-dots li button::before {
    content: none;
  }
  .goods .goods__dots .slick-dots li.slick-active button,
  .goods .goods__dots .collection__dot-static.is-active {
    border-color: #fff;
    background-color: #333;
  }
  .goods .goods__dot {
    display: block;
    width: 2.42vw;
    height: 2.42vw;
    border: 1px solid #333;
    border-radius: 50%;
    background-color: #fff;
  }
  .goods .goods__dot.is-active {
    border-color: #fff;
    background-color: #333;
  }
  .goods .goods__category {
    margin-bottom: 3.6vw;
  }
  .goods .goods__category span {
    display: inline-block;
    padding-block: 1.4vw;
    padding-inline: 4.1vw;
    font-size: 3.4vw;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    color: #333;
    background-color: #fff;
  }
  .goods .goods__name {
    margin-bottom: 2.4vw;
    font-size: 3.6vw;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0;
    color: #333;
  }
  .goods .goods__name:hover {
    text-decoration: underline;
  }
  .goods .goods__price {
    margin-bottom: 4.8vw;
    font-size: 4.3vw;
    line-height: 1;
    letter-spacing: 0;
    color: #333;
  }
  .goods .goods__price-tax {
    margin-left: 0.3em;
    font-size: 2.9vw;
    font-weight: 400;
    letter-spacing: 0;
    color: #333;
  }
  .goods .goods__comment {
    margin: 0;
    font-size: 3.1vw;
    font-weight: 400;
    line-height: 1.8461538462;
    letter-spacing: 0.03em;
  }
  .goods .goods__item:not(.goods__item--main) .goods__comment {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    min-height: 3lh;
  }
}

/* ========================================
  【PC】 about
======================================== */
@media (min-width: 768px) {
  .about {
    background: url(../images/index/about-bg.jpg) no-repeat center center/cover;
  }
  .about .about__inner {
    padding-block: clamp(65px, 21.67px + 5.642vw, 130px); /* 768px〜1920px */
  }
  .about .about__title {
    display: flex;
    align-items: center;
    gap: clamp(10px, 3.33px + 0.868vw, 20px); /* 768px〜1920px */
    margin-left: clamp(30px, -169.33px + 25.955vw, 329px); /* 768px〜1920px */
    margin-bottom: clamp(20px, 6.67px + 1.736vw, 40px); /* 768px〜1920px */
    font-size: clamp(16px, 13.33px + 0.347vw, 20px); /* 768px〜1920px */
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
  }
  .about .about__title span {
    display: inline-block;
    width: clamp(40px, 26.67px + 1.736vw, 60px); /* 768px〜1920px */
    height: 1px;
    background-color: #fff;
  }
  .about .about__text-wrap {
    width: min(95%, 1100px);
    margin-inline: auto;
  }
  .about .about__copy {
    margin-bottom: clamp(20px, -6.67px + 3.472vw, 60px); /* 768px〜1920px */
    font-size: clamp(30px, 22px + 1.042vw, 42px); /* 768px〜1920px */
    font-weight: 600;
    letter-spacing: 0;
    color: #fff;
  }
  .about .about__desc-wrap {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, -4px + 2.083vw, 36px); /* 768px〜1920px */
  }
  .about .about__desc {
    font-size: clamp(12px, 9.33px + 0.347vw, 16px); /* 768px〜1920px */
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.03em;
    color: #fff;
  }
}
/* ========================================
  【SP】 about
======================================== */
@media (max-width: 767px) {
  .about {
    background: url(../images/index/about-bg_sp.jpg) no-repeat center center/cover;
  }
  .about .about__inner {
    padding-block: 20.8vw;
    padding-inline: 4.1vw;
  }
  .about .about__title {
    display: flex;
    align-items: center;
    gap: 2.1vw;
    margin-bottom: 5.3vw;
    font-size: 3.4vw;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
  }
  .about .about__title span {
    display: inline-block;
    width: 6vw;
    height: 0.2vw;
    background-color: #fff;
  }
  .about .about__text-wrap {
    padding-left: 5.8vw;
  }
  .about .about__copy {
    margin-bottom: 7.2vw;
    font-size: 5.8vw;
    font-weight: 600;
    letter-spacing: 0;
    color: #fff;
  }
  .about .about__desc-wrap {
    display: flex;
    flex-direction: column;
    gap: 4.3vw;
  }
  .about .about__desc {
    padding-right: 2.4vw;
    font-size: 3.4vw;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.03em;
    color: #fff;
  }
}
/* ========================================
  【PC】 point
======================================== */
@media (min-width: 768px) {
  .point {
    background-color: #fff;
  }
  .point .point__inner {
    padding-top: clamp(64px, 49.33px + 1.91vw, 86px); /* 768px〜1920px */
    padding-bottom: clamp(100px, 41.33px + 7.639vw, 188px); /* 768px〜1920px */
  }
  .point .point__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 13.33px + 0.868vw, 30px); /* 768px〜1920px */
    width: min(95%, 1200px);
    margin-inline: auto;
  }
  .point .point__item-number {
    margin-bottom: 15px;
    font-size: clamp(24px, 20px + 0.521vw, 30px); /* 768px〜1920px */
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.05em;
    text-align: center;
    color: #333;
  }
  .point .point__item-label {
    margin-bottom: 25px;
    font-size: clamp(14px, 11.33px + 0.347vw, 18px); /* 768px〜1920px */
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.05em;
    text-align: center;
    color: #333;
  }
  .point .point__item-image {
    display: block;
    margin-bottom: 30px;
  }
  .point .point__item-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 380/250;
  }
  .point .point__item-title {
    margin-bottom: 16px;
    font-size: clamp(15px, 13px + 0.26vw, 18px); /* 768px〜1920px */
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.03em;
    color: #333;
  }
  .point .point__item-desc {
    font-size: clamp(12px, 10.67px + 0.174vw, 14px); /* 768px〜1920px */
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.8571428571;
    color: #333;
  }
}
/* ========================================
  【SP】 point
======================================== */
@media (max-width: 767px) {
  .point {
    background-color: #fff;
  }
  .point .point__inner {
    padding-block: 10.9vw;
    padding-inline: 6.5vw;
  }
  .point .point__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10.9vw;
  }
  .point .point__item-number {
    margin-bottom: 3.6vw;
    font-size: 5.8vw;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.05em;
    text-align: center;
    color: #333;
  }
  .point .point__item-label {
    margin-bottom: 4.8vw;
    font-size: 3.9vw;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.05em;
    text-align: center;
    color: #333;
  }
  .point .point__item-image {
    display: block;
    margin-bottom: 4.1vw;
  }
  .point .point__item-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 380/220;
  }
  .point .point__item-title {
    margin-bottom: 4.1vw;
    font-size: 4.3vw;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.03em;
    color: #333;
  }
  .point .point__item-desc {
    font-size: 3.4vw;
    font-weight: 400;
    line-height: 1.8571428571;
    letter-spacing: 0.03em;
    color: #333;
  }
}
/* ========================================
  【PC】 instagram
======================================== */
@media (min-width: 768px) {
  .instagram {
    background-color: #F3F3F3;
  }
  .instagram .instagram__inner {
    padding-block: clamp(100px, 73.33px + 3.472vw, 140px); /* 768px〜1920px */
  }
  .instagram .instagram__head {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    width: min(95%, 1100px);
    margin-bottom: clamp(40px, 26.67px + 1.736vw, 60px); /* 768px〜1920px */
    margin-inline: auto;
    padding-left: clamp(0px, -26.67px + 3.472vw, 40px); /* 768px〜1920px */
  }
  .instagram .instagram__image {
    width: 200px;
  }
  .instagram .instagram__image img {
    width: 100%;
    height: auto;
  }
  .instagram .instagram__text-area {
    flex: 1;
  }
  .instagram .instagram__user-id {
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    color: #333;
  }
  .instagram .instagram__user-name {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    color: #333;
  }
  .instagram .instagram__category {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    color: #696969;
  }
  .instagram .instagram__desc {
    margin-bottom: 10px;
    font-size: clamp(12px, 10.67px + 0.174vw, 14px); /* 768px〜1920px */
    font-weight: 500;
    line-height: 1.5714285714;
    letter-spacing: 0;
    color: #333;
  }
  .instagram .instagram__address {
    margin-bottom: 30px;
    font-size: clamp(13px, 11px + 0.26vw, 16px); /* 768px〜1920px */
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0;
    color: #696969;
  }
  .instagram .instagram__btn {
    display: inline-block;
    width: 400px;
    padding-block: 18px;
    padding-inline: 1em;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    color: #fff;
    background-color: #4861F1;
    border-radius: 10px;
  }
  .instagram .instagram__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: min(95%, 1200px);
    margin-inline: auto;
  }
  .instagram .instagram__item {
    width: 100%;
    aspect-ratio: 1/1;
  }
  .instagram .instagram__link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .instagram .instagram__link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .instagram .instagram__link::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    background-image: url("../images/common/icon-instagram-white.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .instagram .instagram__link:hover::after, .instagram .instagram__link:focus-visible::after {
    opacity: 1;
  }
}
/* ========================================
  【SP】 instagram
======================================== */
@media (max-width: 767px) {
  .instagram {
    background-color: #F3F3F3;
  }
  .instagram .instagram__inner {
    padding-block: 9.7vw 14.5vw;
  }
  .instagram .instagram__head {
    padding-inline: 4.1vw;
    display: grid;
    column-gap: 6vw;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: repeat(6, auto);
    grid-template-areas: "image user-id" "image text-name" "category category" "desc desc" "address address" "btn btn";
  }
  .instagram .instagram__image {
    grid-area: image;
    width: 24.2vw;
    margin-bottom: 3.6vw;
    padding-left: 2.4vw;
  }
  .instagram .instagram__image img {
    width: 100%;
    height: auto;
  }
  .instagram .instagram__text-area {
    display: contents;
  }
  .instagram .instagram__user-id {
    grid-area: user-id;
    margin-bottom: 2.4vw;
    font-size: 5.8vw;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    color: #333;
  }
  .instagram .instagram__user-name {
    grid-area: text-name;
    margin-bottom: 3.6vw;
    font-size: 3.4vw;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    color: #333;
  }
  .instagram .instagram__category {
    grid-area: category;
    margin-bottom: 2.4vw;
    font-size: 3.4vw;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    color: #696969;
  }
  .instagram .instagram__desc {
    grid-area: desc;
    margin-bottom: 3.6vw;
    font-size: 3.4vw;
    font-weight: 500;
    line-height: 1.7142857143;
    letter-spacing: 0;
    color: #333;
  }
  .instagram .instagram__address {
    grid-area: address;
    margin-bottom: 4.8vw;
    font-size: 2.7vw;
    font-weight: 500;
    line-height: 2.1818181818;
    letter-spacing: 0;
    color: #696969;
  }
  .instagram .instagram__btn {
    grid-area: btn;
    display: inline-block;
    width: 100%;
    margin-bottom: 9.7vw;
    padding-block: 4.8vw;
    padding-inline: 1em;
    font-size: 3.4vw;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    color: #fff;
    background-color: #4861F1;
    border-radius: 2.4vw;
  }
  .instagram .instagram__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4vw;
    padding-inline: 4.1vw;
  }
  .instagram .instagram__item {
    width: 100%;
    aspect-ratio: 1/1;
  }
  .instagram .instagram__link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .instagram .instagram__link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .instagram .instagram__link::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    background-image: url("../images/common/icon-instagram-white.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 6.04vw;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .instagram .instagram__link:hover::after, .instagram .instagram__link:focus-visible::after {
    opacity: 1;
  }
}
/* ========================================
  【PC】 information
======================================== */
@media (min-width: 768px) {
  .information {
    background-color: #fff;
  }
  .information .information__inner {
    padding-block: clamp(100px, 40px + 7.813vw, 190px); /* 768px〜1920px */
    padding-bottom: clamp(80px, 53.33px + 3.472vw, 120px); /* 768px〜1920px */
  }
  .information .information__title {
    margin-bottom: 60px;
    font-size: clamp(30px, 22px + 1.042vw, 42px); /* 768px〜1920px */
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.05em;
    text-align: center;
    color: #333;
  }
  .information .information__content-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: clamp(20px, 17.33px + 0.347vw, 24px); /* 768px〜1920px */
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    color: #333;
  }
  .information .information__content-title span {
    display: inline-block;
    width: 20px;
    height: 1px;
    background-color: #333;
  }
  .information .information__content-wrap {
    width: min(95%, 1100px);
    margin-inline: auto;
    margin-bottom: 90px;
  }
  .information .information__content-wrap:nth-last-child(2) {
    margin-bottom: 65px;
  }
  .information .information__content-wrap:last-child {
    margin-bottom: 0;
  }
  .information .information__flex-wrap {
    display: grid;
    grid-template-columns: 34.36% 1fr;
    gap: clamp(20px, -6.67px + 3.472vw, 60px); /* 768px〜1920px */
  }
  .information .information__left {
    position: relative;
    grid-column: 1;
    grid-row: 1;
  }
  .information .information__store-name {
    margin-bottom: 30px;
    font-size: clamp(16px, 14.67px + 0.174vw, 18px); /* 768px〜1920px */
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    color: #333;
  }
  .information .information__list {
    border-top: 1px solid #d6d6d6;
  }
  .information .information__list-item {
    display: flex;
    align-items: stretch;
    font-size: clamp(12px, 10.67px + 0.174vw, 14px); /* 768px〜1920px */
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0;
    color: #333;
  }
  .information .information__list-item-title,
  .information .information__list-item-value {
    padding-block: 13px;
    border-bottom: 1px solid #d6d6d6;
  }
  .information .information__list-item-title {
    width: 28.6%;
  }
  .information .information__list-item-value {
    flex: 1;
  }
  .information .information__right {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    margin: 0;
  }
  .information .information__right--map {
    height: 0;
    min-height: 100%;
    overflow: hidden;
  }
  .information .information__map {
    width: 100%;
    height: 100%;
  }
  .information .information__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
  }
  .information .information__image {
    display: block;
    width: 100%;
    aspect-ratio: 662/362;
  }
  .information .information__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .information .information__illust {
    position: absolute;
    bottom: clamp(5px, -8.33px + 1.736vw, 25px); /* 768px〜1920px */
    left: 50%;
    transform: translateX(-50%);
    width: clamp(138px, 71.33px + 8.681vw, 220px); /* 768px〜1920px */
    height: auto;
  }
  .information .information__shop-map {
    display: block;
    width: 100%;
    height: auto;
  }
}
/* ========================================
  【SP】 information
======================================== */
@media (max-width: 767px) {
  .information {
    background-color: #fff;
  }
  .information .information__inner {
    padding-block: 15.7vw 4.8vw;
  }
  .information .information__title {
    margin-bottom: 12.1vw;
    font-size: 6.3vw;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.05em;
    text-align: center;
    color: #333;
  }
  .information .information__content-title {
    display: flex;
    align-items: center;
    gap: 2.5vw;
    margin-bottom: 4.8vw;
    font-size: 4.3vw;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.03em;
    color: #333;
  }
  .information .information__content-title:first-child {
    padding-left: 2.4vw;
  }
  .information .information__content-title span {
    display: inline-block;
    width: 4.8vw;
    height: 0.2vw;
    background-color: #333;
  }
  .information .information__content-wrap {
    margin-bottom: 9.7vw;
    padding-inline: 4.1vw;
  }
  .information .information__content-wrap:nth-last-child(2) {
    margin-bottom: 14.5vw;
  }
  .information .information__content-wrap:last-child {
    margin-bottom: 0;
  }
  .information .information__flex-wrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, auto);
  }
  .information .information__left {
    position: relative;
  }
  .information .information__store-name {
    margin-bottom: 4.8vw;
    padding-left: 2.4vw;
    font-size: 3.9vw;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    color: #333;
  }
  .information .information__list {
    margin-bottom: 7.2vw;
    padding-left: 2.4vw;
    border-top: 1px solid #d6d6d6;
  }
  .information .information__list-item {
    display: flex;
    align-items: stretch;
    font-size: 3.4vw;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0;
    color: #333;
  }
  .information .information__list-item-title,
  .information .information__list-item-value {
    padding-block: 3.6vw;
    border-bottom: 1px solid #d6d6d6;
  }
  .information .information__list-item-title {
    width: 28.6%;
  }
  .information .information__list-item-title + a {
    flex: 1;
  }
  .information .information__list-item-value {
    flex: 1;
  }
  .information .information__right {
    grid-column: 1;
    grid-row: auto;
    min-width: 0;
    margin: 0;
  }
  .information .information__right--map {
    height: auto;
    min-height: 0;
    overflow: visible;
  }
  .information .information__map {
    width: 100%;
    height: auto;
    aspect-ratio: 380/300;
  }
  .information .information__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
  }
  .information .information__illust {
    display: block;
    width: 35.3vw;
    height: auto;
    margin-inline: auto;
    margin-top: 7.2vw;
    margin-bottom: 5.8vw;
  }
  .information .information__image {
    display: block;
    width: 100%;
    aspect-ratio: 380/222;
  }
  .information .information__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .information .information__shop-map {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 5.8vw;
  }
}/*# sourceMappingURL=page-top.css.map */