@media screen and (min-width: 961px) {

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
    --base-width: 1440;
    --scale: calc(100vw / var(--base-width));

    --font-size-15: calc(15 * var(--scale));
    --font-size-16: calc(16 * var(--scale));
    --font-size-18: calc(18 * var(--scale));
    --font-size-20: calc(20 * var(--scale));
    --font-size-24: calc(24 * var(--scale));
    --font-size-38: calc(38 * var(--scale));
  }

  @media screen and (min-width: 1441px) {
    :root {
      --base-width: 1455;
      --scale: calc(100vw / var(--base-width));
      --font-scale: calc(100vw / 1600);

      --font-size-15: calc(15 * var(--font-scale));
      --font-size-16: calc(16 * var(--font-scale));
      --font-size-18: calc(18 * var(--font-scale));
      --font-size-20: calc(20 * var(--font-scale));
      --font-size-24: calc(24 * var(--font-scale));
      --font-size-38: calc(38 * var(--font-scale));
    }
  }

  body {
    background-color: #dddddd;
    color: #000000;
    margin-right: auto;
    margin-left: auto;
    margin: 0;
    /* 余白をなくす */
    display: flex;
    justify-content: center;
    /* 水平方向に中央寄せ */
    min-height: 100vh;
    /* 画面全体の高さ */
    background-color: #f0f0f0;
    /* 背景色の例 */
  }

  /* screen - pc-top */

  .index-container {
    align-items: flex-start;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: calc(1440 * var(--scale));
  }

  .intro-section {
    width: 100%;
    margin: 0 auto;
    /* 横方向の中央揃え */
    position: relative;
  }

  .intro-group {
    height: calc(1277 * var(--scale));
    position: relative;
    width: calc(1440 * var(--scale));
  }

  .intro-bg {
    height: calc(997 * var(--scale));
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }

  .top-x-image {
    height: calc(1652 * var(--scale));
    left: calc(720 * var(--scale));
    position: absolute;
    top: 0;
    width: calc(708 * var(--scale));
  }

  .step-image {
    height: calc(540 * var(--scale));
    left: calc(20 * var(--scale));
    position: absolute;
    top: calc(737 * var(--scale));
    width: calc(1400 * var(--scale));
  }

  .ai {
    height: calc(233 * var(--scale));
    left: calc(120 * var(--scale));
    position: absolute;
    top: calc(346 * var(--scale));
    width: calc(718 * var(--scale));
  }

  .vendix-experience {
    color: var(--east-bay);
    font-family: var(--font-family-century_gothic-bold);
    font-size: var(--font-size-24);
    font-weight: 700;
    left: calc(121 * var(--scale));
    letter-spacing: calc(1.44 * var(--scale));
    line-height: calc(60 * var(--scale));
    position: absolute;
    top: calc(260 * var(--scale));
    white-space: nowrap;
    width: calc(398 * var(--scale));
  }

  .vendix-experience_line {
    background: var(--color-kirakira-bar);
    height: calc(2 * var(--scale));
    left: calc(122 * var(--scale));
    position: absolute;
    top: calc(318 * var(--scale));
    width: calc(250 * var(--scale));
  }

  .fridge-right-image {
    position: absolute;
    left: calc(62 * var(--scale));
    top: calc(585 * var(--scale));
    height: calc(386 * var(--scale));
    width: calc(267 * var(--scale));
    object-fit: cover;
  }

  .benefits-section {
    display: flex;
    width: 100%;
    margin: 0 auto;
    padding-top: calc(120 * var(--scale));
    font-family: var(--font-family-noto_sans_jp);
    position: relative;
  }

  .benefits {
    flex: 1;
    padding-left: calc(170 * var(--scale));
    z-index: 2;
    /* 高さを画像に合わせる */
    /* height: calc(782 * var(--scale)); */
    /* flexboxで内部を調整 */
    display: flex;
    flex-direction: column;
  }

  .benefits-title-highlight {
    background: linear-gradient(90deg, #2665B3 0%, #62C7A0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
  }

  .benefits-title {
    color: var(--vendix-black);
    font-size: var(--font-size-38);
    font-weight: bold;
    margin-bottom: calc(60 * var(--scale));
    position: relative;
    padding-top: calc(36 * var(--scale));
    letter-spacing: calc(1.60 * var(--scale));
    line-height: 120%;
    height: calc(48 * var(--scale));
  }

  .benefits-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: calc(120 * var(--scale));
    height: calc(4 * var(--scale));
    background: var(--color-kirakira-bar);
  }

  .benefits-subtitle {
    color: var(--vendix-black);
    font-size: var(--font-size-18);
    height: calc(24 * var(--scale));
    letter-spacing: calc(0.5 * var(--scale));
  }

  .benefit-list {
    list-style: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: calc(70 * var(--scale));
  }

  .benefit-item {
    flex: 1;
    /* パディングを比率で指定 */
    padding: calc(24.5 * var(--scale)) 0;
    width: calc(600 * var(--scale));
    border-bottom: calc(1 * var(--scale)) solid #C9D4DB;
    /* flexboxで内部のコンテンツを整列 */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .benefit-item:first-child {
    border-top: calc(1 * var(--scale)) solid #C9D4DB;
  }

  .benefit-label {
    display: inline-block;
    text-align: center;
    width: calc(140 * var(--scale));
    color: white;
    padding: calc(10 * var(--scale));
    margin-bottom: calc(5 * var(--scale));
    background-image: url(../images/index/benefit-label.svg);
    background-size: 100% 100%;
  }

  .benefit-text {
    font-size: var(--font-size-24);
    color: var(--vendix-black);
    font-weight: bold;
    line-height: 160%;
    margin: 0;
  }

  .benefits-image-container {
    flex: 1;
    display: flex;
    align-items: flex-end;
    max-width: calc(600 * var(--scale));
  }

  .benefits-image-container img {
    width: calc(600 * var(--scale));
    height: calc(782 * var(--scale));
  }

  .reason-section {
    position: relative;
    height: auto;
    width: 100%;
    margin-top: calc(120 * var(--scale));
  }

  .reason-section-bg {
    background-color: #c8d9e7;
    background-image: url(../images/index/reason-bg.png);
    background-size: 100% 100%;
    height: calc(1582 * var(--scale));
    position: relative;
    width: 100%;
  }

  .reason-section-line {
    background: var(--color-kirakira-bar);
    height: calc(4 * var(--scale));
    left: calc(172 * var(--scale));
    position: absolute;
    top: calc(122 * var(--scale));
    width: calc(120 * var(--scale));
  }

  .reason-section-text {
    position: absolute;
    left: calc(172 * var(--scale));
    letter-spacing: calc(1.90 * var(--scale));
    line-height: normal;
    top: calc(162 * var(--scale));
    color: var(--vendix-black);
    font-family: var(--font-family-noto_sans_jp);
    font-size: var(--font-size-38);
    font-style: normal;
    font-weight: 700;
  }

  .reason-section-description {
    position: relative;
    color: var(--vendix-black);
    font-family: var(--font-family-noto_sans_jp);
    font-size: var(--font-size-18);
    font-weight: 400;
    letter-spacing: calc(1.1 * var(--scale));
    line-height: calc(28.8 * var(--scale));
    left: calc(172 * var(--scale));
    top: calc(246 * var(--scale));
    width: calc(709 * var(--scale));
    white-space: normal;
    word-wrap: break-word;
    word-break: break-word;
  }

  .reason-details {
    height: calc(1337 * var(--scale));
    left: calc(172 * var(--scale));
    position: absolute;
    top: calc(60 * var(--scale));
    width: calc(1100 * var(--scale));
  }

  .reason-details-bg {
    align-items: flex-start;
    background-color: #ffffffcc;
    border-radius: calc(20 * var(--scale));
    box-shadow: calc(0 * var(--scale)) calc(0 * var(--scale)) calc(20 * var(--scale)) #4a57921a;
    display: flex;
    flex-direction: column;
    height: calc(1030 * var(--scale));
    left: 0;
    padding: calc(80 * var(--scale)) calc(100 * var(--scale));
    position: relative;
    top: calc(400 * var(--scale));
    width: calc(1100 * var(--scale));
  }

  .reason-groups {
    align-items: flex-start;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: calc(20 * var(--scale));
    margin-bottom: calc(-10.00 * var(--scale));
    position: relative;
    width: calc(900 * var(--scale));
  }

  .reason-group {
    height: calc(205 * var(--scale));
    margin-right: calc(-4.00 * var(--scale));
    position: relative;
    width: calc(904 * var(--scale));
    display: flex;
    /* 子要素を横並びにする */
    align-items: center;
    /* 子要素を縦方向で中央揃えにする */
    justify-content: center;
  }

  .reason-title-1,
  .reason-title-2,
  .reason-title-3,
  .reason-title-4 {
    align-items: flex-end;
    background: linear-gradient(180deg, rgba(37.83, 101.39, 179.06, 0.2) 0%, rgba(98.43, 198.83, 160.35, 0.2) 100%);
    border-radius: calc(102.5 * var(--scale));
    display: flex;
    height: calc(205 * var(--scale));
    left: 0;
    min-width: calc(205 * var(--scale));
  }

  .reason-title-1 {
    padding: calc(42 * var(--scale)) calc(40 * var(--scale));
    position: absolute;
    top: 0;
  }

  .reason-title-2 {
    padding: calc(57 * var(--scale)) calc(38 * var(--scale));
    position: absolute;
    top: 0;
  }

  .reason-title-3 {
    padding: calc(57 * var(--scale)) calc(40 * var(--scale));
    position: absolute;
    top: 0;
  }

  .reason-title-4 {
    padding: calc(72 * var(--scale)) calc(17 * var(--scale));
    position: absolute;
    top: 0;
  }

  .reason-title-text,
  .reason-title-4-text {
    text-align: center;
    color: var(--east-bay);
    font-family: var(--font-family-noto_sans_jp);
    font-size: var(--font-size-20);
    font-style: normal;
    font-weight: 700;
    letter-spacing: calc(1.00 * var(--scale));
    line-height: calc(30 * var(--scale));
  }

  .reason-title-text {
    min-height: calc(90 * var(--scale));
    min-width: calc(125 * var(--scale));
  }

  .reason-title-4-text {
    min-height: calc(60 * var(--scale));
    min-width: calc(167 * var(--scale));
  }

  .reason-description-1,
  .reason-description-2,
  .reason-description-3,
  .reason-description-4 {
    position: relative;
    left: calc(120 * var(--scale));
    width: calc(635 * var(--scale));
    letter-spacing: calc(0.64 * var(--scale));
    line-height: 160%;
    color: var(--vendix-black);
    font-family: var(--font-family-noto_sans_jp);
    font-size: var(--font-size-18);
    font-style: normal;
    font-weight: 400;
  }

  .fridge-left {
    position: absolute;
    background-image: url(../images/index/fridge-left.png);
    background-position: 50% 50%;
    background-size: cover;
    height: calc(444 * var(--scale));
    left: calc(950 * var(--scale));
    top: calc(80 * var(--scale));
    width: calc(349 * var(--scale));
    z-index: 2;
  }

  .section-title-text {
    align-self: stretch;
    letter-spacing: calc(1.90 * var(--scale));
    line-height: normal;
    position: relative;
    color: var(--vendix-black);
    font-family: var(--font-family-noto_sans_jp);
    font-size: var(--font-size-38);
    font-style: normal;
    font-weight: 700;
  }

  .section-title-line {
    background: var(--color-kirakira-bar);
    height: calc(4 * var(--scale));
    position: relative;
    width: calc(120 * var(--scale));
  }

  .product-section {
    position: relative;
    height: auto;
    width: 100%;
  }

  .product-section-title {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: calc(30 * var(--scale));
    margin-left: calc(170 * var(--scale));
    margin-top: calc(124 * var(--scale));
    position: relative;
    width: calc(300 * var(--scale));
  }

  .product-view {
    align-items: flex-start;
    align-self: center;
    display: flex;
    gap: calc(55 * var(--scale));
    margin-top: calc(40 * var(--scale));
    margin-left: calc(170 * var(--scale));
  }

  .product-info-group {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: calc(20 * var(--scale));
    position: relative;
    width: calc(330 * var(--scale));
  }

  .product-info {
    align-items: flex-start;
    align-self: stretch;
    /* display: flex; */
    flex: 0 0 auto;
    flex-direction: column;
    gap: calc(20 * var(--scale));
    position: relative;
    width: 100%;
  }

  .product-model {
    align-items: center;
    background-color: var(--athens-gray);
    border-radius: calc(20 * var(--scale));
    display: flex;
    flex-direction: column;
    min-height: calc(460 * var(--scale));
    padding: calc(21 * var(--scale)) 0;
    width: calc(330 * var(--scale));
  }


  .product-name {
    text-align: center;
  }

  .product-name-1 {
    letter-spacing: calc(0.29 * var(--scale));
    color: var(--vendix-black);
    font-family: var(--font-family-noto_sans_jp);
    font-size: var(--font-size-24);
    font-style: normal;
    font-weight: 700;
  }

  .product-name-2 {
    letter-spacing: calc(0.13 * var(--scale));
    line-height: calc(25.6 * var(--scale));
    color: var(--vendix-black);
    font-family: var(--font-family-noto_sans_jp);
    font-size: var(--font-size-16);
    font-style: normal;
    font-weight: 700;
  }

  .product-name-line {
    background: var(--color-kirakira-bar);
    height: calc(2 * var(--scale));
    margin-top: calc(6 * var(--scale));
    width: calc(330 * var(--scale));
  }

  .product-image {
    height: calc(307 * var(--scale));
    margin-right: calc(0.6 * var(--scale));
    margin-top: calc(34 * var(--scale));
    object-fit: cover;
    width: auto;
  }

  .product-description {
    align-items: flex-start;
    align-self: stretch;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: calc(10 * var(--scale));
    position: relative;
    width: 100%;
  }

  .product-description-title {
    letter-spacing: calc(0.80 * var(--scale));
    line-height: calc(28.8 * var(--scale));
    /* margin-right: calc(-170.00 * var(--scale)), -170.00px);
    margin-top: calc(-1.00 * var(--scale)), -1.00px); */
    position: relative;
    width: calc(500 * var(--scale));
    color: var(--vendix-black);
    font-family: var(--font-family-noto_sans_jp);
    font-size: var(--font-size-20);
    font-style: normal;
    font-weight: 700;
  }

  .product-info {
    letter-spacing: calc(0.80 * var(--scale));
    line-height: 160%;
    position: relative;
    color: var(--vendix-black);
    font-family: var(--font-family-noto_sans_jp);
    font-size: var(--font-size-18);
    font-style: normal;
    font-weight: 400;
  }

  .product-perf {
    align-self: stretch;
    letter-spacing: calc(0.80 * var(--scale));
    line-height: 160%;
    position: relative;
    color: var(--vendix-black);
    font-family: var(--font-family-noto_sans_jp);
    font-size: var(--font-size-18);
    font-style: normal;
    font-weight: 400;
  }


  .product-description-line {
    align-self: stretch;
    background-color: var(--alto);
    height: calc(1 * var(--scale));
    position: relative;
    width: 100%;
  }

  .spec-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    /* gap: 0.5em; */
    margin-top: calc(5 * var(--scale));
    ;
  }

  .purpose-section {
    position: relative;
    height: auto;
    width: 100%;
    margin-top: calc(87 * var(--scale));
  }

  .purpose-bg {
    background-color: #d7e2de;
    position: relative;
    width: 100%;
    overflow: hidden;
    height: calc(1998 * var(--scale));
    background-image: url(../images/index/purpose-bg.png);
    background-size: 100% 114%;
  }

  .purpose-bg-image {
    width: 100%;
  }

  .purpose-view {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    left: calc(205 * var(--scale));
    min-height: calc(1779 * var(--scale));
    position: absolute;
    top: calc(121 * var(--scale));
    width: calc(1102 * var(--scale));
  }

  .purpose-section-title {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: calc(30 * var(--scale));
    position: relative;
    width: calc(300 * var(--scale));
  }

  .purpose-intro-text {
    color: var(--vendix-black);
    font-family: var(--font-family-noto_sans_jp);
    font-size: var(--font-size-18);
    font-weight: 500;
    letter-spacing: calc(0.90 * var(--scale));
    line-height: 160%;
    margin-top: calc(16 * var(--scale));
    min-height: calc(49 * var(--scale));
    width: calc(861 * var(--scale));
  }

  .purpose-description {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: calc(30 * var(--scale));
    position: relative;
    width: calc(525 * var(--scale));
  }

  .purpose-other-description {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: calc(10 * var(--scale));
    margin-top: calc(38 * var(--scale));
    position: relative;
  }

  .purpose-image {
    align-self: stretch;
    height: calc(280 * var(--scale));
    object-fit: cover;
    position: relative;
    width: 100%;
  }

  .purpose-description-text {
    align-items: flex-start;
    align-self: stretch;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: calc(10 * var(--scale));
    position: relative;
    width: 100%;
  }

  .purpose-description-title {
    align-self: stretch;
    letter-spacing: 0;
    line-height: calc(32.0 * var(--scale));
    margin-top: calc(-1.00 * var(--scale));
    position: relative;
    color: var(--vendix-black);
    font-family: var(--font-family-noto_sans_jp);
    font-size: var(--font-size-20);
    font-style: normal;
    font-weight: 700;
  }

  .purpose-description-body {
    align-self: stretch;
    letter-spacing: calc(0.90 * var(--scale));
    line-height: 160%;
    position: relative;
    color: var(--vendix-black);
    font-family: var(--font-family-noto_sans_jp);
    font-size: var(--font-size-18);
    font-style: normal;
    font-weight: 400;
  }

  .purpose-container {
    align-items: flex-start;
    display: flex;
    gap: calc(50 * var(--scale));
    min-width: calc(1100 * var(--scale));
  }

  .purpose-container-1 {
    margin-top: calc(45 * var(--scale));
  }

  .purpose-container-3 {
    align-items: flex-start;
    display: flex;
    gap: calc(50 * var(--scale));
    min-width: calc(1100 * var(--scale));
    margin-top: calc(40 * var(--scale));
  }



  /* イベント */
  .event-news-section {
    width: 100%;
    /* padding-block: 100px; */
    background-color: #F7FAFD;
    padding-top: calc(80 * var(--scale));
    ;
    padding-bottom: calc(60 * var(--scale));
    ;
    font-family: var(--font-family-noto_sans_jp);
  }

  .event-news-container {
    display: flex;
    gap: 20px;
    /* カラム間のスペース */
    max-width: 90%;
    margin: 0 auto;
    align-items: stretch;
    /* 各カラムを同じ高さに */
  }

  .event-column,
  .news-column {
    flex: 1 1 0;
    /* 幅を均等にする */
    min-width: 0;
    /* 内部要素が幅を超えないようにする */
    /* background-color: #f4f4f4; */
    padding: 20px;
    /* border-radius: 8px; */
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    display: flex;
    flex-direction: column;
  }

  /* ヘッダー部分 */
  .column-header {
    display: flex;
    flex-direction: column;
    /* 縦に配置 */
    align-items: center;
    /* 横方向に中央揃え */
    text-align: center;
    /* テキストの中央揃え */
    padding-bottom: 20px;
  }

  .header-content {
    display: flex;
    align-items: center;
    /* 縦方向に中央揃え */
    justify-content: center;
    /* 横方向で中央揃え */
  }

  .header-content .header-image {
    margin-left: calc(10 * var(--scale));
    /* h2 と画像の間に余白を追加 */
    width: calc(32 * var(--scale));
    /* 画像の幅を指定 */
    height: auto;
    /* 高さは比率に合わせて自動調整 */
  }

  .column-header h2 {
    font-size: var(--font-size-38);
    font-family: var(--font-family-noto_sans_jp);
    font-weight: bold;
    color: var(--vendix-black);
    margin-bottom: 5px;
  }

  .column-header span {
    font-size: var(--font-size-18);
    font-family: var(--font-family-noto_sans_jp);
    color: #888;
    text-align: center;
    margin-top: 5px;
    width: 100%;
  }

  /* リスト部分 */
  .event-list,
  .news-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex-grow: 1;
    font-family: var(--font-family-noto_sans_jp);
  }

  /* 各アイテムのスタイル */
  .event-item,
  .news-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px;
  }

  .event-header,
  .news-header {
    /* 横並びにする */
    align-items: center;
    /* 垂直方向に中央揃え */
    padding-left: calc(15 * var(--scale));
  }

  .event-date,
  .news-date {
    font-size: var(--font-size-15);
    color: var(--vendix-black);
    padding-bottom: calc(10 * var(--scale));
  }

  .event-title,
  .news-title {
    font-size: var(--font-size-18);
    color: var(--vendix-blue);
    font-weight: bold;
    letter-spacing: calc(0.90 * var(--scale));
    line-height: 140%;
  }

  .event-spec-grid {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: calc(10 * var(--scale)) calc(25 * var(--scale));
    /* 縦と横のギャップを設定 */
    padding: calc(20 * var(--scale)) calc(16 * var(--scale));
    border-radius: 4px;
  }

  .event-spec-grid dt {
    color: var(--vendix-blue);
    font-size: var(--font-size-18);
    font-weight: bold;
    text-align: center;
    letter-spacing: 0;
    padding: calc(10 * var(--scale)) calc(10 * var(--scale));
    line-height: 140%;
    background: #E0ECF7;
    border-radius: calc(10 * var(--scale));
  }

  .event-spec-grid dd {
    padding: 10px 10px;
    font-size: var(--font-size-16);
    letter-spacing: 0;
    line-height: 140%;
  }

  a {
    color: var(--vendix-black);
  }

  a:hover {
    color: #666;
  }


  .benefits {
    opacity: 0;
  }
  .benefits-section.active .benefits {
    opacity: 1;
  }


  .benefits-image {
    opacity: 0;
    /* transform: translateX(50%); */
    transition: transform 1.5s ease-out 2s, opacity 1.5s ease-out 2s;
  }


  .benefits-section.active .benefits-image {
    opacity: 1;
    transform: translateX(0);
  }

  .benefits-title,
  .benefits-subtitle {
    display: block;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1s ease-out;
  }

  .benefit-item {
    display: block;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.5s ease-out;
  }

  .benefits-section.active .benefits-title {
    clip-path: inset(0 0 -80% 0);
    transition-delay: 2s;
  }

  .benefits-section.active .benefits-subtitle {
    clip-path: inset(0 0 0 0);
    transition-delay: 2s;
  }

  .benefits-section.active .benefit-item:nth-child(1) {
    clip-path: inset(0 0 0 0);
    transition-delay: 2.25s;
  }
  
  .benefits-section.active .benefit-item:nth-child(2) {
    clip-path: inset(0 0 0 0);
    transition-delay: 2.5s;
  }
  
  .benefits-section.active .benefit-item:nth-child(3) {
    clip-path: inset(0 0 0 0);
    transition-delay: 2.75s;
  }
  
  .benefits-section.active .benefit-item:nth-child(4) {
    clip-path: inset(0 0 0 0);
    transition-delay: 3s;
  }

  .logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 10;
  }
  
  .benefits-logo-1 {
    width: 500px;
    height: auto;
  }
  
  /* ロゴ1のアニメーション */
  .benefits-section.active .logo-1 {
    animation: logo1-animation 1.5s ease-out forwards;
  }

  @keyframes logo1-animation {
    0% {
      opacity: 0;
      clip-path: inset(0 100% 0 0); /* 左から右に表示 */
    }
    25% {
      opacity: 1;
      clip-path: inset(0 0 0 0); /* 全体表示 */
    }
    50% {
      opacity: 1;
      clip-path: inset(0 0 0 0); /* 全体表示 */
    }
    100% {
      opacity: 0;
    }
  }

  .benefits-logo-2 {
    position: absolute;
    top: calc(160 * var(--scale));
    height: calc(680 * var(--scale));
    width: auto;
    opacity: 0;
    left: 50%; /* 親要素の幅の50%に移動 */
    transform: translateX(-50%); /* 自身の幅の50%を左にずらす */
  }
  
  .benefits-section.active .benefits-logo-2 {
    animation: logo2-animation 1s 1s ease-out forwards;
  }
  
  @keyframes logo2-animation {
    0% {
      opacity: 0; /* 初期状態は透明 */
      transform: translateX(-50%); /* 中央 */
    }
    25% {
      opacity: 0.12;
      transform: translateX(-50%); 
    }
    50% {
      opacity: 0.12;
      transform: translateX(-50%); 
    }
    100% {
      transform: translateX(-120%);
      opacity: 0.12;
    }
  }
  

}