    /* ---- ページ全体 ---- */

    * {
      box-sizing: border-box;
    }

    html,
    body {
      margin: 0;
      padding: 0;
      width: 100%;
      height: 100%;
      overflow-x: hidden;
      scroll-behavior: smooth;
      font-family: "Shippori Mincho", serif;
      box-sizing: border-box;
    }

    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    a {
      font-weight: 400;
      color: #000000;
    }

    h3 {
      font-size: 1rem;
      line-height: 2;
    }

    a {
      text-decoration: none;
    }

    .btn {
      background-color: #FAF8F5;
      border: 1px solid #999999;
    }

    #main {
      background-color: #fff;
    }

    .wrapper {
      margin: 0 40px;
    }

    .en {
      font-family: "EB Garamond", serif;
      font-optical-sizing: auto;
      font-style: normal;
    }

    /*TOP*/

    .top {
      background-color: #fff;
      padding-bottom: 20px;
    }

    .top-img-wrap {
      overflow: hidden;
    }

    .top-img {
      opacity: 0;
      transform: scale(1.05);
      transition: opacity 1.2s ease, transform 1.5s ease;
    }

    .top-img.is-show {
      opacity: 1;
      transform: scale(1);
    }

    .top-img img {
      object-fit: cover;
      width: 100%;
      height: 560px;
      object-position: 65%;
    }

    .top p {
      font-size: 1rem;
      text-align: center;
      margin: 10px 0;
    }

    .overlay {
      position: absolute;
      top: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-color: #00000033;
      z-index: 1;
    }

    .title-block {
      opacity: 0;
      transform: translateY(-20px);
      transition: opacity 0.8s ease, transform 0.8s ease;
      margin: 40px auto;
    }

    .title-block.is-show {
      opacity: 1;
      transform: translateY(0px);
      transition-delay: 0.2s;
    }

    .mix-logo {
      width: 100%;
      max-width: 1440px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(20px, 5vw, 50px);
      margin: clamp(24px, 5vw, 40px) clamp(16px, 4vw, 80px);
      padding: 0 clamp(24px, 5vw, 80px);
    }

    .mix-logo {
      width: auto;
      max-width: 100%;
    }

    .naive_green_logo_top {
      width: clamp(100px, 20vw, 250px);
    }

    .HERALBONY_logo_top {
      width: clamp(160px, 26vw, 350px);
    }

    .cross {
      width: 1px;
      height: clamp(20px, 5vw, 50px);
      background-color: #000000;
      transform: rotate(45deg);
    }

    .cross::after {
      display: block;
      content: "";
      width: 1px;
      height: clamp(20px, 5vw, 50px);
      background-color: #000000;
      transform: rotate(-90deg);
    }

    /* =================product 1つ目================= */

    .product {
      background-color: #fff;
      position: relative;
      z-index: 1;
    }

    .product-wrapper {
      max-width: 1440px;
      margin: 0 auto;
    }

    .product-img {
      height: 400px;
      max-width: 65%;
      position: relative;
      z-index: 10;
      overflow: hidden;
      aspect-ratio: 4/5;
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .product-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 100%;
      transform: scale(1.2);
    }

    .product-ttl {
      position: relative;
      display: block;
      width: fit-content;
      margin: 60px 0 60px auto;
      padding: 0 20px 0 0%;
      z-index: 2;
    }

    .product h2 {
      color: #008956;
      font-size: clamp(14px, 1.5vw, 20px);
      margin-bottom: 20px;
    }

    .product p {
      font-size: clamp(26px, 3vw, 32px);
      line-height: 2;
    }

    .product-ttl h2,
    .product-ttl p {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 1s ease, transform 1s ease;
      position: relative;
      z-index: 1;
      text-align: left;
    }

    /* =================フェードイン================= */

    .product.is-show .product-img {
      opacity: 1;
      transform: translateX(0);
    }

    /* 文字の順番に遅延を付ける */
    .product.is-show .product-ttl h2 {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.6s;
      /* 背景円のあと */
    }

    .product.is-show .product-ttl p {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.8s;
    }

    /* =================フェードインここまで================= */

    /* =================product 2つ目================= */

    .product-bottom {
      position: relative;
      z-index: 1;
    }

    .product-bottom-img {
      display: block;
      width: 70%;
      height: auto;
      margin-left: auto;
      position: relative;
      z-index: 10;
      overflow: hidden;
      opacity: 0;
      transform: translateX(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .product-bottom-img img {
      width: 100%;
      object-fit: cover;
      transform: scale(1.2);
    }

    .product-bottom-ttl {
      display: inline-block;
      width: fit-content;
      margin: 60px 0 120px 0;
      padding: 0 28px;
      line-height: 2;
      position: relative;
      z-index: 1;
      opacity: 0;
    }

    .product-bottom p {
      text-align: left;
      font-size: 1rem;
      margin: 20px 0;
    }

    .product-bottom.is-show .product-bottom-img {
      opacity: 1;
      transform: translateX(0);
    }

    .product-bottom.is-show .product-bottom-ttl {
      opacity: 1;
      transition-delay: 0.05s;
    }

    /* =================product 2つ目ここまで================= */

    /* =================product 共通================= */

    .product,
    .product-bottom {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .product.is-show,
    .product-bottom.is-show {
      opacity: 1;
      transform: translateY(0);
    }

    /* =================product 共通================= */

    /* =================product 共通（円）================= */

    .product-ttl::before,
    .product-ttl::after,
    .product-bottom-ttl::before,
    .product-bottom-ttl::after {
      content: "";
      position: absolute;
      aspect-ratio: 1;
      opacity: 0;
      z-index: -1;
      will-change: transform, opacity, border-radius;
    }

    .product-ttl::before,
    .product-bottom-ttl::before {
      animation: blobMoveBefore 10s infinite alternate ease-in-out;
    }

    .product-ttl::after,
    .product-bottom-ttl::after {
      animation: blobMoveAfter 10s infinite alternate ease-in-out;
    }

    /* 上セクション */
    .product-ttl::after {
      top: 45%;
      left: 50%;
      width: clamp(350px, 35vw, 550px);
      background: #FAF8F5;
      border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
      transform: translate(-50%, -50%) scale(0.9);
    }

    .product-ttl::before {
      top: 90%;
      right: 10%;
      width: min(500px, 50vw);
      width: clamp(350px, 35vw, 500px);
      background: rgba(229, 230, 225, 0.57);
      border-radius: 45% 55% 40% 60% / 60% 40% 60% 40%;
      transform: translate(-50%, -50%) scale(0.85);
    }

    /* 下セクション */
    .product-bottom-ttl::after {
      top: 45%;
      left: 35%;
      width: max(450px, 30vw);
      width: clamp(450px, 30vw, 550px);
      background: #FAF8F5;
      border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
      transform: translate(-50%, -50%) scale(0.9);
    }

    .product-bottom-ttl::before {
      top: 80%;
      right: -50%;
      width: min(500px, 50vw);
      width: clamp(350px, 35vw, 500px);
      background: rgba(229, 230, 225, 0.57);
      border-radius: 45% 55% 40% 60% / 60% 40% 60% 40%;
      transform: translate(-50%, -50%) scale(0.85);
    }

    /* 表示時 */
    .product.is-show .product-ttl::after,
    .product.is-show .product-ttl::before,
    .product-bottom.is-show .product-bottom-ttl::after,
    .product-bottom.is-show .product-bottom-ttl::before {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);

    }

    @keyframes blobMoveBefore {
      0% {
        border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
        transform: translate(-50%, -50%) scale(1);
      }

      20% {
        border-radius: 58% 42% 54% 46% / 52% 58% 42% 48%;
        transform: translate(-48%, -52%) scale(1.03);
      }

      40% {
        border-radius: 55% 45% 53% 47% / 54% 56% 44% 46%;
        transform: translate(-52%, -49%) scale(0.97);
      }

      60% {
        border-radius: 57% 43% 54% 46% / 52% 54% 46% 48%;
        transform: translate(-49%, -51%) scale(1.02);
      }

      80% {
        border-radius: 59% 41% 56% 44% / 51% 59% 41% 49%;
        transform: translate(-51%, -50%) scale(0.98);
      }

      100% {
        border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
        transform: translate(-50%, -50%) scale(1);
      }
    }

    /* after 用アニメーション */
    @keyframes blobMoveAfter {
      0% {
        border-radius: 50% 60% 40% 60% / 55% 45% 55% 45%;
        transform: translate(-50%, -50%) scale(1);
      }

      25% {
        border-radius: 52% 58% 42% 48% / 54% 56% 44% 46%;
        transform: translate(-51%, -49%) scale(1.01);
      }

      50% {
        border-radius: 55% 45% 50% 50% / 50% 55% 45% 55%;
        transform: translate(-49%, -51%) scale(0.99);
      }

      75% {
        border-radius: 53% 47% 52% 48% / 52% 48% 52% 48%;
        transform: translate(-50.5%, -50.5%) scale(1.02);
      }

      100% {
        border-radius: 50% 60% 40% 60% / 55% 45% 55% 45%;
        transform: translate(-50%, -50%) scale(1);
      }
    }

    /* ===== Firefox専用調整 ===== */
    @-moz-document url-prefix() {

      .product-ttl::after,
      .product-ttl::before,
      .product-bottom-ttl::after,
      .product-bottom-ttl::before {
        animation: firefoxFloat 6s ease-in-out infinite !important;
        border-radius: 50% !important;
        opacity: 1 !important;
      }

    }

    /* Firefox専用の軽い浮遊アニメ */
    @keyframes firefoxFloat {
      0% {
        transform: translate(-50%, -50%) scale(1);
      }

      50% {
        transform: translate(-50%, -54%) scale(1.04);
      }

      100% {
        transform: translate(-50%, -50%) scale(1);
      }
    }

    /* =================product 共通（円）ここまで================= */

    /* =================product ここまで================= */


    /*アイテム紹介*/

    .item-introduction {
      background-color: #FAF8F5;
      padding: 60px 0;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 1s ease, transform 1s ease;
      position: relative;
      z-index: 1;
    }

    .item-introduction.is-show {
      opacity: 1;
      transform: translateY(0);
    }

    .item-introduction-img,
    .item-introduction-ttl .ttl,
    .item-introduction-ttl .ttl-copy,
    .explanation-list,
    .attention-list {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 1s ease, transform 1s ease;
    }

    .attention-list .link-hover {
      display: inline-block;
      font-size: clamp(18px,3vw,24px);
      transform: translateX(0);
      transition: transform 0.4s ease;
    }

    .attention-list .link-hover:hover {
      transform: translateX(6px);
    }

    /* 順番に表示 */
    .item-introduction.is-show .item-introduction-img {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.3s;
    }

    .item-introduction.is-show .item-introduction-ttl .ttl {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.6s;
    }

    .item-introduction.is-show .item-introduction-ttl .ttl-copy {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.8s;
    }

    .item-introduction.is-show .explanation-list,
    .item-introduction.is-show .attention-list {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 1.2s;
    }

    .item-introduction-img {
      position: relative;
      display: block;
      width: 80%;
      margin: 0 auto;
    }

    .item-introduction-img img {
      display: block;
      width: 100%;
      position: relative;
      z-index: 1;
    }

    .item-introduction-img-txt{
      text-align: center;
      margin: 30px 0;
      font-size: clamp(12px ,2vw, 13.2px);
    }

    /* 注釈 */
    .note {
      font-size: 0.65em;
      position: relative;
      top: -0.2em;
    }

    /* 円（発売日） */
    .badge {
      position: absolute;
      top: -20px;
      left: -10px;
      width: 23%;
      width: 100%;
      height: clamp(56px , 15vw ,108px);
      display: flex;
      gap: 20px;
      align-items: center;
      justify-content: center;
      z-index: 0;
      background-image: url(../img/badge.png);
      background-size: contain;
      background-repeat: no-repeat;
    }

    .badge p {
      color: #fff;
      text-align: center;
      font-size: clamp(12px, 1.5vw, 20px);
      line-height: 1.4;
      letter-spacing: 2px;
    }

    .item-introduction-ttl {
      margin: 40px 0;
    }

    .item-introduction-ttl h3,
    .item-introduction-ttl h4,
    .item-introduction-ttl p {
      text-align: center;
    }

    .item-introduction h3 {
      font-size: clamp(16px, 5vw, 24px);
      font-weight: 600;
      line-height: 1.25;
      margin-bottom: 5px;
    }

    .item-introduction h3 span {
      letter-spacing: 2px;
    }

    .item-introduction-ttl h4 {
      font-size: clamp(16px, 4vw, 24px);
      line-height: 1.75;
      font-weight: 600;
      margin: 20px 0;
      color: #008956;
    }

    .item-introduction-ttl p {
      font-size: clamp(14px, 5vw, 16px);
      letter-spacing: 2px;
    }

    .item-introduction-ttl p span {
      font-size: clamp(12px, 5vw, 14px);
      letter-spacing: 2px;
    }

    .explanation-list {
      margin: 20px 0;
      list-style-type: disc;
      padding-left: 1em;
    }

    .explanation-list li {
      list-style-position: outside;
      line-height: 2;
      letter-spacing: 2px;
      font-size: clamp(14px, 3vw, 16px);
    }

    .explanation-list li::marker {
      color: #008956;
    }

    .explanation-list li {
      line-height: 2;
    }

    .attention-list {
      margin: 20px 0;
    }

    .attention-list li {
      font-size: 0.825rem;
    }

    /*アート画像*/

    .art {
      background-color: #fefefa;
    }

    .art .wrapper {
      padding: 40px 0;
    }

    .art-img {
      opacity: 0;
      transform: scale(1.1);
      transition: opacity 1s ease, transform 1s ease;
    }

    .art-img.is-show {
      opacity: 1;
      transform: scale(1);
    }

    figcaption{
      text-align: right;
      font-size: clamp(14px,3vw,18px);
      margin-top: clamp(14px,3vw,18px);
      letter-spacing: 0.1em;
    }

    /*アーティスト紹介*/

    .artist {
      padding: 60px 0;
      background-image: url(../img/p0324_l.jpeg);
    }

    .artist-img,
    .artist-text .artist-name h5,
    .artist-text .artist-name p,
    .artist-text p {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 1s ease, transform 1s ease;
    }

    /* 順番に表示 */
    .artist.is-show .artist-img {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.4s;
    }

    .artist.is-show .artist-text .artist-name h5,
    .artist.is-show .artist-text .artist-name p {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.4s;
    }

    .artist.is-show .artist-text p {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.8s;
    }


    .artist-img img {
      aspect-ratio: 1 / 1;
      object-fit: cover;
      width: fit-content;
    }

    .artist h5 {
      font-size: 1.25rem;
      line-height: 1.35;
    }

    .artist p {
      font-size: clamp(14px, 3vw, 16px);
      line-height: 2;
    }

    .artist-name {
      margin: 20px 0;
    }

    .collaboration {
      background-image: url(../img/p0324_l.jpeg);
      position: relative;
    }

    .collaboration_title {
      position: relative;
      z-index: 5;
    }

    .collaboration_title::after {
      content: "";
      position: absolute;
      top: 50%;
      left: -10%;
      display: block;
      width: 100%;
      height: 150px;
      background-image: url("../img/collaboration_circle.svg");
      background-repeat: no-repeat;
      opacity: 0.7;
      z-index: -1;
      transform: translateY(-50%);
    }

    .collaboration .content_wrapper p {
      margin: 0;
      line-height: 1.5;
    }

    .collaboration .content_wrapper .tag {
      color: #656565;
      font-size: 0.875rem;
      margin-top: 20px;
    }

    /*swiper設定*/
    .swiper-wrap {
      position: relative;
      z-index: 5;
    }

    .swiper-button-next:after,
    .swiper-rtl .swiper-button-prev:after,
    .swiper-button-prev:after,
    .swiper-rtl .swiper-button-next:after {
      content: "" !important;
    }

    /* ボタンサイズ */
    .swiper-button-prev,
    .swiper-button-next {
      width: 40px;
      height: 40px;
      position: relative;
    }

    .swiper-button-prev::before,
    .swiper-button-next::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 30px;
      height: 30px;
      border-top: 1px solid #000;
      border-right: 1px solid #000;
      transform-origin: center;
    }

    .swiper-button-next::before {
      transform: translate(-50%, -50%) rotate(45deg);
    }

    .swiper-button-prev::before {
      transform: translate(-50%, -50%) rotate(-135deg);
    }

    .scroll {
      max-width: 340px;
      margin: 0 auto;
    }

    /*swiper設定ここまで*/


    .media {
      background-color: #F5F4F3;
    }

    .media_list-wrapper {
      background-color: #fff;
      padding: 20px;
      max-width: 340px;
      margin: 0 auto;
    }

    .media_list-wrapper .btn {
      display: block;
      align-items: center;
      padding: 10px 20px;
      position: relative;
      max-width: 200px;
      padding-right: 45px;

    }

    .media_list-wrapper .btn::before {
      content: "";
      position: absolute;
      right: 0px;
      top: 50%;
      transform: translateX(-50%);
      width: 30px;
      height: 1px;
      border-radius: 9999px;
      background-color: #000000;
    }

    .media_list-wrapper .btn::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 13px;
      width: 13px;
      height: 1px;
      border-radius: 9999px;
      background-color: #000000;
      transform: rotate(45deg);
      transform-origin: calc(100% - 2px) 50%;
    }

    .media_list-wrapper p {
      margin: 10px 0;
    }

    /*--FireFox--*/
    /*--FireFox--*/
    /*--FireFox--*/
    @-moz-document url-prefix() {

      .scroll-bar p::after {
        top: 20px;
        /* 調整 */
      }
    }

    /*--PC--PC--PC--PC--PC--PC--PC--PC--PC--PC*/
    /*--PC--PC--PC--PC--PC--PC--PC--PC--PC--PC*/
    /*--PC--PC--PC--PC--PC--PC--PC--PC--PC--PC*/


    @media (min-width: 640px) {
    .sp{display:none;}
      .wrapper {
        margin: 0 auto;
        max-width: 1440px;
        padding: 0 80px;
      }

      h2 {
        font-size: 1.5rem;
      }

      .title-block {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: clamp(14px, 2vw, 50px);
        margin: 5% 0;
      }

      .mix-logo {
        max-width: 680px;
        padding: 0 20px;
      }

      .top-img img {
        object-fit: cover;
        width: 100%;
        height: calc(100vh - 94px);
      }

      .top p {
        font-size: clamp(14px, 2vw, 20px);
        text-align: left;
        margin: 10px 0;
        white-space: nowrap;
      }

      .product {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 80px auto;
      }

      .product h2 {
        font-size: clamp(14px, 1.5vw, 20px);
      }

      .product p {
        font-size: clamp(20px, 3vw, 46px);
        line-height: 1.75;
      }

      .product-ttl {
        padding: 0 20px 0 15%;
      }

      .product-ttl::after {
        left: 60%;
      }

      .product.is-show .product-ttl::after {
        transform: translate(-33%, -50%) scale(1.05);
      }

      .product.is-show .product-ttl::before {
        transform: translate(-50%, 0%) scale(1);
      }

      .product-img {
        height: 100%;
        max-width: 50%;
      }

      .product-img img {
        transform: scale(1.35);
      }

      .product-bottom {
        display: flex;
        align-items: center;
        flex-direction: row-reverse;
        justify-content: space-between;
        margin: 120px auto
      }

      .product-bottom-img {
        height: 100%;
        max-width: 50%;
      }

      .product-bottom p {
        font-size: clamp(12px, 1.35vw, 20px);
      }

      .product-bottom-ttl {
        padding: 0 40px;
      }

      /* 左（メイン） */
      .product-bottom-ttl::after {
        left: 50%;
      }

      /* 右下（サブ） */
      .product-bottom-ttl::before {
        top: 90%;
        right: -90%;
        width: min(450px, 45vw);
        transform: translate(-50%, -50%) scale(0.85);
      }

      .product-bottom.is-show .product-bottom-ttl::after {
        transform: translate(-65%, -50%) scale(1);
      }

      .product-bottom.is-show .product-bottom-ttl::before {
        transform: translate(50%, -50%) scale(1);
      }

      .item-introduction {
        position: relative;
        z-index: 10;
        padding: 80px 0;
      }

      .item-introduction .wrapper {
        padding: 0;
      }

      .item-introduction-flex {
        align-items: center;
        display: flex;
        justify-content: center;
        gap: 20px;
        margin: 0 40px;
        flex-wrap: wrap;
      }

      .item-introduction-img {
        width: fit-content;
        max-width: 540px;
      }

      .item-introduction-ttl h3,
      .item-introduction-ttl h4,
      .item-introduction-ttl p {
        text-align: left;
      }

      .item-introduction h3 {
        font-size: clamp(24px, 3vw, 40px);
        font-weight: 600;
        line-height: 1.25;
        margin-bottom: 20px;
      }

      .item-introduction h3 span {
        letter-spacing: 2px;
      }

      .item-introduction-ttl h4 {
        font-size: clamp(16px, 3vw, 30px);
        line-height: 1.75;
        font-weight: 600;
        margin: 30px 0;
        color: #008956;
      }

      .item-introduction-ttl p {
        font-size: clamp(16px, 5vw, 24px);
        letter-spacing: 2px;
      }

      .item-introduction-ttl p span {
        font-size: 1rem;
        letter-spacing: 2px;
      }

      .badge {
        top: -3%;
        left: -10px;
        width: 20%;
      }

      .art .wrapper {
        padding: 80px;
      }

      .artist {
        padding: 80px 0;
      }

      .artist-flex {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 50px;
      }

      .artist-img {
        width: fit-content;
        max-width: 507px;
      }

      .artist-text {
        width: 70%;
      }

      .artist h5 {
        font-size: 2.5rem;
        white-space: nowrap;
      }

      .artist-name p {
        font-size: 1.25rem;
      }



    }

p.copyright{text-align:center;}