@layer behavior {

  @media screen and (max-width: 767px) {
    .l-page {
      --mc--height--ol-header: calc(60 * var(--mc--quantity--of-design--horizontal));
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .l-page {
      --mc--height--ol-header: 80px;
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .l-page {
      --mc--height--ol-header: 120px;
    }
  }

  @media print {
    .l-page {
      --mc--height--ol-header: 120px;
    }
  }

  @media screen and (min-width: 1440px) {
    .l-page {
      --mc--height--ol-header: 120px;
    }
  }
}

@layer component {

  @media screen and (max-width: 767px) {
    .p-menu1__pageBody {
      top: var(--mc--height--ol-header);
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .p-menu1__pageBody {
      top: calc((var(--mc--height--ol-header) - 60px) / 2 + 60px);
    }
  }

  /* .c-hero */
  .c-hero {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto;
    width: 100%;
    position: relative;
    z-index: 0;
  }

  @media screen and (max-width: 767px) {
    .c-hero {
      height: calc(483 * var(--mc--quantity--of-design--horizontal));
      margin-bottom: calc(16 * var(--mc--quantity--of-design--horizontal));
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .c-hero {
      margin-bottom: 40px;
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .c-hero {
      margin-bottom: 40px;
    }
  }

  @media print {
    .c-hero {
      margin-bottom: 40px;
    }
  }

  @media screen and (min-width: 1440px) {
    .c-hero {
      margin-bottom: 40px;
    }
  }

  .c-hero__txt1 {
    grid-area: 1/1/-1/-1;
    align-self: end;
    position: relative;
    z-index: 1;
    color: #FFF;
  }

  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .c-hero__txt1 {
      padding: 110px 120px;
      font-size: 50px;
      font-weight: 700;
      letter-spacing: 0.28em;
      line-height: 2.28;
      text-shadow: rgba(0, 0, 0, 0.16) 0 3px 6px;
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .c-hero__txt1 {
      padding: 110px 120px;
      font-size: 50px;
      font-weight: 700;
      letter-spacing: 0.28em;
      line-height: 2.28;
      text-shadow: rgba(0, 0, 0, 0.16) 0 3px 6px;
    }
  }

  @media print {
    .c-hero__txt1 {
      padding: 110px 120px;
      font-size: 50px;
      font-weight: 700;
      letter-spacing: 0.28em;
      line-height: 2.28;
      text-shadow: rgba(0, 0, 0, 0.16) 0 3px 6px;
    }
  }

  @media screen and (min-width: 1440px) {
    .c-hero__txt1 {
      padding: 110px 120px;
      font-size: 50px;
      font-weight: 700;
      letter-spacing: 0.28em;
      line-height: 2.28;
      text-shadow: rgba(0, 0, 0, 0.16) 0 3px 6px;
    }
  }

  .c-hero__img1 {
    grid-area: 1/1/-1/-1;
    position: relative;
    z-index: -1;
  }

  .c-hero__img1 :where(img) {
    width: 100%;
    height: auto;
  }

  .c-hero__img1 :where(video) {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
  }

  .c-hero__list--col2 {
    grid-template-columns: auto 1fr;
  }

  .c-hero__list--col1 {
    grid-template-columns: 1fr;
  }

  .c-hero__list--col1 li:nth-child(6) {
    grid-column: 1/2;
  }

  .c-hero__copytxt {
    position: absolute;
    bottom: 6.458333vw;
    left: 10.9375vw;
    font-size: 50px;
    color: #fff;
    z-index: 100;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
  }
  .c-hero__copytxt span {
    display: block;
    line-height: 2.28;
  }
  @media screen and (max-width: 767px) {
    .c-hero__copytxt {
      font-size: 24px;
      bottom: 71px;
      left: 12px;
    }
  }

  
  /* 動画の再生/停止ボタン */
  .p-hero__btn {
    position: absolute;
    z-index: 1;
    right: 20px;
    bottom: 20px;
    width: calc(3 * var(--base-unit));
    padding-top: calc(3 * var(--base-unit));
    height: 0;
    box-sizing: border-box;
    overflow: hidden;
    background-color: rgba(255, 0, 0, 0);
    border: 1px solid #000;
    cursor: pointer;
    transition: background-color .3s, border-color .3s;
    }
  
    @media screen and (max-width: 767px) {
    .p-hero__btn {
      right: calc(2 * var(--base-unit));
      bottom: calc(1.6 * var(--base-unit));
      width: calc(3.6* var(--base-unit));
      padding-top: calc(3.6* var(--base-unit));
      border-width: max(1px, calc(0.1 * var(--base-unit)));
    }
    }
  
    .p-hero__btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 10px;
    height: 12px;
    border-left: 2px solid #000;
    border-right: 2px solid #000;
    box-sizing: border-box;
    }
  
    @media screen and (max-width: 767px) {
      .p-hero__btn::before {
        width: calc(1 * var(--base-unit));
        height: calc(1.4 * var(--base-unit));
        border-width: calc(0.2 * var(--base-unit));
      }
    }
  
    .p-hero__btn.is-active::before {
    width: calc(1 * var(--base-unit));
    height: calc(1.2 * var(--base-unit));
    margin-left: 1px;
    border: none;
    clip-path: polygon(
      0 0,
      100% 50%,
      0 100%
    );
    background-color: #000;
    }

    @media screen and (min-width: 768px) {
      .p-hero__btn:hover {
        border-color: #A22041;
        background-color: #A22041;
      }
      .p-hero__btn:hover::before {
        border-left: 2px solid #fff;
        border-right: 2px solid #fff;
      }
      .p-hero__btn:hover.p-hero__btn.is-active::before {
        background-color: #fff;
      }
    }

    @media screen and (max-width: 767px) {
    .p-hero__btn.is-active::before {
      width: calc(1 * var(--base-unit));
      height: calc(1.2 * var(--base-unit));
      margin-left: calc(0.1 * var(--base-unit));
    }
    }
  
    .p-hero__btn-txt--play {
    display: none;
    }
  
    .p-hero__btn.is-active .p-hero__btn-txt--play {
    display: block;
    }
  
    .p-hero__btn.is-active .p-hero__btn-txt--pause {
    display: none;
    }
    
    /*背景動画*/
    .c-hero__movie {
      position: relative;
      width: 100%;
      padding-top: 47%;
      overflow: hidden;
    }
    .c-hero__movie-sp {
      display: none;
    }
    @media screen and (max-width: 767px) {
      .c-hero__movie-pc {
        display: none;
      }
      .c-hero__movie-sp {
        display: block;
      }
    }



  /* .c-pr */
  .c-pr {
    position: relative;
    z-index: 0;
    overflow-x: hidden;
  }

  @media screen and (max-width: 767px) {
    .c-pr {
      --mc-gap-carousel: calc(10 * var(--mc--quantity--of-design--horizontal));
      --mc-padding-carousel-left: var(--mc-layout--offset--of-outer-left);
      --mc-padding-carousel-right: var(--mc-layout--offset--of-outer-right);
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .c-pr {
      --mc-scale-carousel-current: 1.0929;
      --mc-gap-carousel: calc(91 * var(--mc--quantity--of-design--horizontal--dt));
      --mc-padding-carousel-left: calc(411 * var(--mc--quantity--of-design--horizontal--dt));
      --mc-padding-carousel-right: calc(411 * var(--mc--quantity--of-design--horizontal--dt));
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .c-pr {
      --mc-scale-carousel-current: 1.0929;
      --mc-gap-carousel: calc(91 * var(--mc--quantity--of-design--horizontal--dt));
      --mc-padding-carousel-left: calc(411 * var(--mc--quantity--of-design--horizontal--dt));
      --mc-padding-carousel-right: calc(411 * var(--mc--quantity--of-design--horizontal--dt));
    }
  }

  @media print {
    .c-pr {
      --mc-scale-carousel-current: 1.0929;
      --mc-gap-carousel: calc(91 * var(--mc--quantity--of-design--horizontal--dt));
      --mc-padding-carousel-left: calc(411 * var(--mc--quantity--of-design--horizontal--dt));
      --mc-padding-carousel-right: calc(411 * var(--mc--quantity--of-design--horizontal--dt));
    }
  }

  @media screen and (min-width: 1440px) {
    .c-pr {
      --mc-scale-carousel-current: 1.0929;
      --mc-gap-carousel: calc(91 * var(--mc--quantity--of-design--horizontal--dt));
      --mc-padding-carousel-left: calc(411 * var(--mc--quantity--of-design--horizontal--dt));
      --mc-padding-carousel-right: calc(411 * var(--mc--quantity--of-design--horizontal--dt));
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .c-pr__screen {
      padding-top: calc(60 * var(--mc--quantity--of-design--horizontal--dt) * var(--mc-scale-carousel-current));
      padding-bottom: calc(60 * var(--mc--quantity--of-design--horizontal--dt) * var(--mc-scale-carousel-current));
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .c-pr__screen {
      padding-top: calc(60 * var(--mc--quantity--of-design--horizontal--dt) * var(--mc-scale-carousel-current));
      padding-bottom: calc(60 * var(--mc--quantity--of-design--horizontal--dt) * var(--mc-scale-carousel-current));
    }
  }

  @media print {
    .c-pr__screen {
      padding-top: calc(60 * var(--mc--quantity--of-design--horizontal--dt) * var(--mc-scale-carousel-current));
      padding-bottom: calc(60 * var(--mc--quantity--of-design--horizontal--dt) * var(--mc-scale-carousel-current));
    }
  }

  @media screen and (min-width: 1440px) {
    .c-pr__screen {
      padding-top: calc(60 * var(--mc--quantity--of-design--horizontal--dt) * var(--mc-scale-carousel-current));
      padding-bottom: calc(60 * var(--mc--quantity--of-design--horizontal--dt) * var(--mc-scale-carousel-current));
    }
  }

  .c-pr__slides {
    overflow: visible;
    position: relative;
    z-index: 1;
  }

  .c-pr__card {
    box-sizing: border-box;
    position: relative;
    z-index: 0;
  }
  .c-pr__card-icon {
    position: absolute;
    right: calc(30 / 1920 * 100vw);
    bottom: calc(70 / 1920 * 100vw);
    display: grid;
    place-items: center;
    background: #fff;
    border:1px solid #d5d5d5;
    border-radius: 50%;
    z-index: 1;
    transform:translate3d(0,0,0);
    aspect-ratio: 1;
    width: calc(26 / 1920 * 100vw);
    transition: background-color 0.3s, border 0.3s;
  }
  .c-pr__card-icon::before {
    content: "";
    width: calc(20 / 1920 * 100vw);
    aspect-ratio: 1;
    mask: url(https://www.mitsubishicorp.com/assets_r24/images/cmn-mark_arrow_5.svg) no-repeat center center/contain;
    background: #666;
    transition: background-color 0.3s;
  } 

  @media screen and (min-width: 768px) {
    .c-pr__card:hover .c-pr__card-icon {
      background: #A22041;
      border:1px solid #fff;
    }
    .c-pr__card:hover .c-pr__card-icon::before {
      background: #fff;
    }
  }
  @media screen and (max-width: 767px) {
    .c-pr__card {
      aspect-ratio: 335/222;
    }
    .c-pr__card-icon {
      right: calc(10 / 335 * 100vw);
      bottom: calc(10 / 335 * 100vw);
      background: #000;
      border: 2px solid #fff;
      width: calc(16 / 335 * 100vw);
      height: calc(16 / 335 * 100vw);
    }
    .c-pr__card-icon::before {
      width:  calc(16 / 335 * 100vw);
      mask: url(https://www.mitsubishicorp.com/assets_r24/images/cmn-mark_arrow_4.svg) no-repeat center center/contain;
      background: #fff;
    } 
    @media screen and (min-width: 768px) {
      .c-pr__card:hover .c-pr__card-icon {
        background: #A22041;
        border:2px solid #fff;
      }
      .c-pr__card:hover .c-pr__card-icon::before {
        background: #fff;
      }
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .c-pr__card {
      aspect-ratio: 1754/800;
      transition: scale 0.2s ease-in;
      scale: 1;
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .c-pr__card {
      aspect-ratio: 1754/800;
      transition: scale 0.2s ease-in;
      scale: 1;
    }
  }

  @media print {
    .c-pr__card {
      aspect-ratio: 1754/800;
      transition: scale 0.2s ease-in;
      scale: 1;
    }
  }

  @media screen and (min-width: 1440px) {
    .c-pr__card {
      aspect-ratio: 1754/800;
      transition: scale 0.2s ease-in;
      scale: 1;
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    :where(.splide__slide.is-active) .c-pr__card {
      transition-duration: 0.3s;
      transition-timing-function: ease-out;
      scale: var(--mc-scale-carousel-current);
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    :where(.splide__slide.is-active) .c-pr__card {
      transition-duration: 0.3s;
      transition-timing-function: ease-out;
      scale: var(--mc-scale-carousel-current);
    }
  }

  @media print {
    :where(.splide__slide.is-active) .c-pr__card {
      transition-duration: 0.3s;
      transition-timing-function: ease-out;
      scale: var(--mc-scale-carousel-current);
    }
  }

  @media screen and (min-width: 1440px) {
    :where(.splide__slide.is-active) .c-pr__card {
      transition-duration: 0.3s;
      transition-timing-function: ease-out;
      scale: var(--mc-scale-carousel-current);
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .c-pr__tarminal {
      margin-top: calc(-0.228050171 * (100cqw - var(--mc-padding-carousel-left) - var(--mc-padding-carousel-right)) * (var(--mc-scale-carousel-current) - 1));
      margin-bottom: calc(-0.228050171 * (100cqw - var(--mc-padding-carousel-left) - var(--mc-padding-carousel-right)) * (var(--mc-scale-carousel-current) - 1));
      margin-right: calc(-0.5 * (100cqw - var(--mc-padding-carousel-left) - var(--mc-padding-carousel-right)) * (var(--mc-scale-carousel-current) - 1));
      margin-left: calc(-0.5 * (100cqw - var(--mc-padding-carousel-left) - var(--mc-padding-carousel-right)) * (var(--mc-scale-carousel-current) - 1));
      position: absolute;
      top: 0;
      bottom: 0;
      left: var(--mc-padding-carousel-left);
      right: var(--mc-padding-carousel-right);
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .c-pr__tarminal {
      margin-top: calc(-0.228050171 * (100cqw - var(--mc-padding-carousel-left) - var(--mc-padding-carousel-right)) * (var(--mc-scale-carousel-current) - 1));
      margin-bottom: calc(-0.228050171 * (100cqw - var(--mc-padding-carousel-left) - var(--mc-padding-carousel-right)) * (var(--mc-scale-carousel-current) - 1));
      margin-right: calc(-0.5 * (100cqw - var(--mc-padding-carousel-left) - var(--mc-padding-carousel-right)) * (var(--mc-scale-carousel-current) - 1));
      margin-left: calc(-0.5 * (100cqw - var(--mc-padding-carousel-left) - var(--mc-padding-carousel-right)) * (var(--mc-scale-carousel-current) - 1));
      position: absolute;
      top: 0;
      bottom: 0;
      left: var(--mc-padding-carousel-left);
      right: var(--mc-padding-carousel-right);
    }
  }

  @media print {
    .c-pr__tarminal {
      margin-top: calc(-0.228050171 * (100cqw - var(--mc-padding-carousel-left) - var(--mc-padding-carousel-right)) * (var(--mc-scale-carousel-current) - 1));
      margin-bottom: calc(-0.228050171 * (100cqw - var(--mc-padding-carousel-left) - var(--mc-padding-carousel-right)) * (var(--mc-scale-carousel-current) - 1));
      margin-right: calc(-0.5 * (100cqw - var(--mc-padding-carousel-left) - var(--mc-padding-carousel-right)) * (var(--mc-scale-carousel-current) - 1));
      margin-left: calc(-0.5 * (100cqw - var(--mc-padding-carousel-left) - var(--mc-padding-carousel-right)) * (var(--mc-scale-carousel-current) - 1));
      position: absolute;
      top: 0;
      bottom: 0;
      left: var(--mc-padding-carousel-left);
      right: var(--mc-padding-carousel-right);
    }
  }

  @media screen and (min-width: 1440px) {
    .c-pr__tarminal {
      margin-top: calc(-0.228050171 * (100cqw - var(--mc-padding-carousel-left) - var(--mc-padding-carousel-right)) * (var(--mc-scale-carousel-current) - 1));
      margin-bottom: calc(-0.228050171 * (100cqw - var(--mc-padding-carousel-left) - var(--mc-padding-carousel-right)) * (var(--mc-scale-carousel-current) - 1));
      margin-right: calc(-0.5 * (100cqw - var(--mc-padding-carousel-left) - var(--mc-padding-carousel-right)) * (var(--mc-scale-carousel-current) - 1));
      margin-left: calc(-0.5 * (100cqw - var(--mc-padding-carousel-left) - var(--mc-padding-carousel-right)) * (var(--mc-scale-carousel-current) - 1));
      position: absolute;
      top: 0;
      bottom: 0;
      left: var(--mc-padding-carousel-left);
      right: var(--mc-padding-carousel-right);
    }
  }

  .c-pr__bullets {
    padding: 0;
    pointer-events: auto;
  }

  @media screen and (max-width: 767px) {
    .c-pr__bullets {
      column-gap: calc(10 * var(--mc--quantity--of-design--horizontal));
      margin-top: calc(16 * var(--mc--quantity--of-design--horizontal));
      position: relative;
      inset: unset;
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .c-pr__bullets {
      transform-origin: bottom right;
      column-gap: calc(10 * var(--mc--quantity--of-design--horizontal--dt));
      padding-left: calc(32 * var(--mc--quantity--of-design--horizontal--dt));
      padding-right: calc(32 * var(--mc--quantity--of-design--horizontal--dt));
      height: calc(58 * var(--mc--quantity--of-design--horizontal--dt));
      top: auto;
      bottom: 0;
      left: auto;
      right: 0;
      z-index: 1;
      background-color: rgba(0, 0, 0, 0.5);
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .c-pr__bullets {
      transform-origin: bottom right;
      column-gap: calc(10 * var(--mc--quantity--of-design--horizontal--dt));
      padding-left: calc(32 * var(--mc--quantity--of-design--horizontal--dt));
      padding-right: calc(32 * var(--mc--quantity--of-design--horizontal--dt));
      height: calc(58 * var(--mc--quantity--of-design--horizontal--dt));
      top: auto;
      bottom: 0;
      left: auto;
      right: 0;
      z-index: 1;
      background-color: rgba(0, 0, 0, 0.5);
    }
  }

  @media print {
    .c-pr__bullets {
      transform-origin: bottom right;
      column-gap: calc(10 * var(--mc--quantity--of-design--horizontal--dt));
      padding-left: calc(32 * var(--mc--quantity--of-design--horizontal--dt));
      padding-right: calc(32 * var(--mc--quantity--of-design--horizontal--dt));
      height: calc(58 * var(--mc--quantity--of-design--horizontal--dt));
      top: auto;
      bottom: 0;
      left: auto;
      right: 0;
      z-index: 1;
      background-color: rgba(0, 0, 0, 0.5);
    }
  }

  @media screen and (min-width: 1440px) {
    .c-pr__bullets {
      transform-origin: bottom right;
      column-gap: calc(10 * var(--mc--quantity--of-design--horizontal--dt));
      padding-left: calc(32 * var(--mc--quantity--of-design--horizontal--dt));
      padding-right: calc(32 * var(--mc--quantity--of-design--horizontal--dt));
      height: calc(58 * var(--mc--quantity--of-design--horizontal--dt));
      top: auto;
      bottom: 0;
      left: auto;
      right: 0;
      z-index: 1;
      background-color: rgba(0, 0, 0, 0.5);
    }
  }

  .c-pr__bullet {
    opacity: 1;
    transform: scale(1);
    box-sizing: border-box;
    border: solid 1px #000;
    margin: unset;
    background-color: #000;
  }

  .c-pr__bullet[aria-selected] {
    background-color: #FFF;
  }

  @media screen and (max-width: 767px) {
    .c-pr__bullet {
      width: calc(10 * var(--mc--quantity--of-design--horizontal));
      height: calc(10 * var(--mc--quantity--of-design--horizontal));
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .c-pr__bullet {
      border-color: #FFF;
      width: calc(13 * var(--mc--quantity--of-design--horizontal--dt));
      height: 13px;
      height: calc(13 * var(--mc--quantity--of-design--horizontal--dt));
      background-color: transparent;
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .c-pr__bullet {
      border-color: #FFF;
      width: calc(13 * var(--mc--quantity--of-design--horizontal--dt));
      height: 13px;
      height: calc(13 * var(--mc--quantity--of-design--horizontal--dt));
      background-color: transparent;
    }
  }

  @media print {
    .c-pr__bullet {
      border-color: #FFF;
      width: calc(13 * var(--mc--quantity--of-design--horizontal--dt));
      height: 13px;
      height: calc(13 * var(--mc--quantity--of-design--horizontal--dt));
      background-color: transparent;
    }
  }

  @media screen and (min-width: 1440px) {
    .c-pr__bullet {
      border-color: #FFF;
      width: calc(13 * var(--mc--quantity--of-design--horizontal--dt));
      height: 13px;
      height: calc(13 * var(--mc--quantity--of-design--horizontal--dt));
      background-color: transparent;
    }
  }

  .c-pr__arrow {
    opacity: 1;
    border-radius: unset;
    background-color: #000;
    outline: none;
  }

  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .c-pr__arrow {
      transition: background-color 0.2s ease-in;
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .c-pr__arrow {
      transition: background-color 0.2s ease-in;
    }
  }

  @media print {
    .c-pr__arrow {
      transition: background-color 0.2s ease-in;
    }
  }

  @media screen and (min-width: 1440px) {
    .c-pr__arrow {
      transition: background-color 0.2s ease-in;
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {

    .c-pr__arrow:focus,
    .c-pr__arrow:hover {
      transition-duration: 0.3s;
      transition-timing-function: ease-out;
      background-color: #A22041;
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {

    .c-pr__arrow:focus,
    .c-pr__arrow:hover {
      transition-duration: 0.3s;
      transition-timing-function: ease-out;
      background-color: #A22041;
    }
  }

  @media print {

    .c-pr__arrow:focus,
    .c-pr__arrow:hover {
      transition-duration: 0.3s;
      transition-timing-function: ease-out;
      background-color: #A22041;
    }
  }

  @media screen and (min-width: 1440px) {

    .c-pr__arrow:focus,
    .c-pr__arrow:hover {
      transition-duration: 0.3s;
      transition-timing-function: ease-out;
      background-color: #A22041;
    }
  }

  .c-pr__arrow :where(svg) {
    display: none;
  }

  .c-pr__arrow::before {
    content: "";
    rotate: 90deg;
    display: block;
    margin: auto;
    position: absolute;
    inset: 0;
    background-color: #FFF;
    mask: url("https://www.mitsubishicorp.com/assets_r24/images/cmn-mark_triangle_1.svg") no-repeat center/contain;
  }

  @media screen and (max-width: 767px) {
    .c-pr__arrow::before {
      width: calc(16 * var(--mc--quantity--of-design--horizontal));
      height: calc(16 * var(--mc--quantity--of-design--horizontal));
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .c-pr__arrow::before {
      width: calc(24 * var(--mc--quantity--of-design--horizontal--dt));
      height: calc(24 * var(--mc--quantity--of-design--horizontal--dt));
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .c-pr__arrow::before {
      width: calc(24 * var(--mc--quantity--of-design--horizontal--dt));
      height: calc(24 * var(--mc--quantity--of-design--horizontal--dt));
    }
  }

  @media print {
    .c-pr__arrow::before {
      width: calc(24 * var(--mc--quantity--of-design--horizontal--dt));
      height: calc(24 * var(--mc--quantity--of-design--horizontal--dt));
    }
  }

  @media screen and (min-width: 1440px) {
    .c-pr__arrow::before {
      width: calc(24 * var(--mc--quantity--of-design--horizontal--dt));
      height: calc(24 * var(--mc--quantity--of-design--horizontal--dt));
    }
  }

  .c-pr__arrow[aria-label="Previous slide"]::before,
  .c-pr__arrow[aria-label="Go to last slide"]::before {
    scale: -1;
  }

  @media screen and (max-width: 767px) {
    .c-pr__arrow {
      transform: unset;
      width: calc(40 * var(--mc--quantity--of-design--horizontal));
      height: calc(40 * var(--mc--quantity--of-design--horizontal));
      top: calc(86 * var(--mc--quantity--of-design--horizontal));
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .c-pr__arrow {
      width: calc(80 * var(--mc--quantity--of-design--horizontal--dt));
      height: calc(80 * var(--mc--quantity--of-design--horizontal--dt));
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .c-pr__arrow {
      width: calc(80 * var(--mc--quantity--of-design--horizontal--dt));
      height: calc(80 * var(--mc--quantity--of-design--horizontal--dt));
    }
  }

  @media print {
    .c-pr__arrow {
      width: calc(80 * var(--mc--quantity--of-design--horizontal--dt));
      height: calc(80 * var(--mc--quantity--of-design--horizontal--dt));
    }
  }

  @media screen and (min-width: 1440px) {
    .c-pr__arrow {
      width: calc(80 * var(--mc--quantity--of-design--horizontal--dt));
      height: calc(80 * var(--mc--quantity--of-design--horizontal--dt));
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .c-pr__arrow::before {
      width: calc(30 * var(--mc--quantity--of-design--horizontal--dt));
      height: calc(30 * var(--mc--quantity--of-design--horizontal--dt));
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .c-pr__arrow::before {
      width: calc(30 * var(--mc--quantity--of-design--horizontal--dt));
      height: calc(30 * var(--mc--quantity--of-design--horizontal--dt));
    }
  }

  @media print {
    .c-pr__arrow::before {
      width: calc(30 * var(--mc--quantity--of-design--horizontal--dt));
      height: calc(30 * var(--mc--quantity--of-design--horizontal--dt));
    }
  }

  @media screen and (min-width: 1440px) {
    .c-pr__arrow::before {
      width: calc(30 * var(--mc--quantity--of-design--horizontal--dt));
      height: calc(30 * var(--mc--quantity--of-design--horizontal--dt));
    }
  }


  @media screen and (max-width: 767px) {
    .c-pr__arrow-prev {
      left: 0;
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .c-pr__arrow-prev {
      transform-origin: center left;
      left: 0;
      translate: calc(-67 * var(--mc--quantity--of-design--horizontal--dt) / var(--mc-scale-carousel-current));
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .c-pr__arrow-prev {
      transform-origin: center left;
      left: 0;
      translate: calc(-67 * var(--mc--quantity--of-design--horizontal--dt) / var(--mc-scale-carousel-current));
    }
  }

  @media print {
    .c-pr__arrow-prev {
      transform-origin: center left;
      left: 0;
      translate: calc(-67 * var(--mc--quantity--of-design--horizontal--dt) / var(--mc-scale-carousel-current));
    }
  }

  @media screen and (min-width: 1440px) {
    .c-pr__arrow-prev {
      transform-origin: center left;
      left: 0;
      translate: calc(-67 * var(--mc--quantity--of-design--horizontal--dt) / var(--mc-scale-carousel-current));
    }
  }


  @media screen and (max-width: 767px) {
    .c-pr__arrow-next {
      right: 0;
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .c-pr__arrow-next {
      transform-origin: center right;
      right: 0;
      translate: calc(67 * var(--mc--quantity--of-design--horizontal--dt) / var(--mc-scale-carousel-current));
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .c-pr__arrow-next {
      transform-origin: center right;
      right: 0;
      translate: calc(67 * var(--mc--quantity--of-design--horizontal--dt) / var(--mc-scale-carousel-current));
    }
  }

  @media print {
    .c-pr__arrow-next {
      transform-origin: center right;
      right: 0;
      translate: calc(67 * var(--mc--quantity--of-design--horizontal--dt) / var(--mc-scale-carousel-current));
    }
  }

  @media screen and (min-width: 1440px) {
    .c-pr__arrow-next {
      transform-origin: center right;
      right: 0;
      translate: calc(67 * var(--mc--quantity--of-design--horizontal--dt) / var(--mc-scale-carousel-current));
    }
  }

  /* .c-notice */
  .c-notice {
    background-color: #FCE8EC;
  }

  @media screen and (max-width: 767px) {
    .c-notice {
      padding-top: calc(20 * var(--mc--quantity--of-design--horizontal));
      padding-bottom: calc(24 * var(--mc--quantity--of-design--horizontal));
      padding-left: var(--mc-layout--offset--of-outer-left);
      padding-right: var(--mc-layout--offset--of-outer-right);
      margin-top: calc(24 * var(--mc--quantity--of-design--horizontal));
      margin-bottom: calc(16 * var(--mc--quantity--of-design--horizontal));
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .c-notice {
      display: grid;
      grid-template-columns: calc(210 * var(--mc--quantity--of-design--horizontal)) 1fr;
      column-gap: 12px;
      align-items: center;
      padding: 12px;
      margin-top: 100px;
      margin-bottom: -10px;
      margin-left: calc(var(--mc-layout--offset--of-outer-left) + var(--mc-layout--offset--of-inner-left));
      margin-right: calc(var(--mc-layout--offset--of-outer-right) + var(--mc-layout--offset--of-inner-right));
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .c-notice {
      display: grid;
      grid-template-columns: calc(210 * var(--mc--quantity--of-design--horizontal)) 1fr;
      column-gap: 12px;
      align-items: center;
      padding: 12px;
      margin-top: 100px;
      margin-bottom: -10px;
      margin-left: calc(var(--mc-layout--offset--of-outer-left) + var(--mc-layout--offset--of-inner-left));
      margin-right: calc(var(--mc-layout--offset--of-outer-right) + var(--mc-layout--offset--of-inner-right));
    }
  }

  @media print {
    .c-notice {
      display: grid;
      grid-template-columns: calc(210 * var(--mc--quantity--of-design--horizontal)) 1fr;
      column-gap: 12px;
      align-items: center;
      padding: 12px;
      margin-top: 100px;
      margin-bottom: -10px;
      margin-left: calc(var(--mc-layout--offset--of-outer-left) + var(--mc-layout--offset--of-inner-left));
      margin-right: calc(var(--mc-layout--offset--of-outer-right) + var(--mc-layout--offset--of-inner-right));
    }
  }

  @media screen and (min-width: 1440px) {
    .c-notice {
      display: grid;
      grid-template-columns: calc(210 * var(--mc--quantity--of-design--horizontal)) 1fr;
      column-gap: 12px;
      align-items: center;
      padding: 12px;
      margin-top: 100px;
      margin-bottom: -10px;
      margin-left: calc(var(--mc-layout--offset--of-outer-left) + var(--mc-layout--offset--of-inner-left));
      margin-right: calc(var(--mc-layout--offset--of-outer-right) + var(--mc-layout--offset--of-inner-right));
    }
  }


  @media screen and (max-width: 767px) {
    .c-notice__hdr1 {
      margin-bottom: calc(20 * var(--mc--quantity--of-design--horizontal));
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .c-notice__hdr1 {
      display: block grid;
      align-items: center;
      justify-content: center;
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .c-notice__hdr1 {
      display: block grid;
      align-items: center;
      justify-content: center;
    }
  }

  @media print {
    .c-notice__hdr1 {
      display: block grid;
      align-items: center;
      justify-content: center;
    }
  }

  @media screen and (min-width: 1440px) {
    .c-notice__hdr1 {
      display: block grid;
      align-items: center;
      justify-content: center;
    }
  }

  .c-notice__ttl1 {
    display: inline grid;
    grid-template-columns: repeat(2, auto);
    align-items: center;
  }

  @media screen and (max-width: 767px) {
    .c-notice__ttl1 {
      column-gap: calc(8 * var(--mc--quantity--of-design--horizontal));
      font-size: calc(18 * var(--mc--quantity--of-design--horizontal));
      font-weight: 500;
      letter-spacing: 0.1em;
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .c-notice__ttl1 {
      column-gap: 8px;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 0.1em;
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .c-notice__ttl1 {
      column-gap: 8px;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 0.1em;
    }
  }

  @media print {
    .c-notice__ttl1 {
      column-gap: 8px;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 0.1em;
    }
  }

  @media screen and (min-width: 1440px) {
    .c-notice__ttl1 {
      column-gap: 8px;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 0.1em;
    }
  }

  .c-notice__ttl1::before {
    content: "";
    aspect-ratio: 1;
    background: url("https://www.mitsubishicorp.com/assets_r24/images/cmn-icon_notice_1.svg") no-repeat center/contain;
  }

  @media screen and (max-width: 767px) {
    .c-notice__ttl1::before {
      width: calc(20 * var(--mc--quantity--of-design--horizontal));
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .c-notice__ttl1::before {
      width: 20px;
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .c-notice__ttl1::before {
      width: 20px;
    }
  }

  @media print {
    .c-notice__ttl1::before {
      width: 20px;
    }
  }

  @media screen and (min-width: 1440px) {
    .c-notice__ttl1::before {
      width: 20px;
    }
  }

  .c-notice__bdy1 {
    display: block grid;
    grid-auto-flow: row;
    font-weight: 400;
  }

  @media screen and (max-width: 767px) {
    .c-notice__bdy1 {
      row-gap: calc(8 * var(--mc--quantity--of-design--horizontal));
      font-size: calc(15 * var(--mc--quantity--of-design--horizontal));
      letter-spacing: 0.06em;
      line-height: 1.6;
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .c-notice__bdy1 {
      row-gap: 4px;
      font-size: 16px;
      letter-spacing: 0.04em;
      line-height: 1.8;
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .c-notice__bdy1 {
      row-gap: 4px;
      font-size: 16px;
      letter-spacing: 0.04em;
      line-height: 1.8;
    }
  }

  @media print {
    .c-notice__bdy1 {
      row-gap: 4px;
      font-size: 16px;
      letter-spacing: 0.04em;
      line-height: 1.8;
    }
  }

  @media screen and (min-width: 1440px) {
    .c-notice__bdy1 {
      row-gap: 4px;
      font-size: 16px;
      letter-spacing: 0.04em;
      line-height: 1.8;
    }
  }

  .c-notice__bdy1 :where(a) {
    display: block;
    background-color: #FFF;
    color: #0F2350;
  }

  @media screen and (max-width: 767px) {
    .c-notice__bdy1 :where(a) {
      padding-top: calc(var(--mc-layout--offset--of-inner-left) * 2 / 3);
      padding-bottom: calc(var(--mc-layout--offset--of-inner-left) * 2 / 3);
      padding-left: var(--mc-layout--offset--of-inner-left);
      padding-right: var(--mc-layout--offset--of-inner-right);
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .c-notice__bdy1 :where(a) {
      padding: 8px 36px;
      transition-property: color, box-shadow;
      transition-duration: 0.2s;
      transition-timing-function: ease-in;
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .c-notice__bdy1 :where(a) {
      padding: 8px 36px;
      transition-property: color, box-shadow;
      transition-duration: 0.2s;
      transition-timing-function: ease-in;
    }
  }

  @media print {
    .c-notice__bdy1 :where(a) {
      padding: 8px 36px;
      transition-property: color, box-shadow;
      transition-duration: 0.2s;
      transition-timing-function: ease-in;
    }
  }

  @media screen and (min-width: 1440px) {
    .c-notice__bdy1 :where(a) {
      padding: 8px 36px;
      transition-property: color, box-shadow;
      transition-duration: 0.2s;
      transition-timing-function: ease-in;
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .c-notice__bdy1 :where(a):hover {
      transition-duration: 0.3s;
      transition-timing-function: ease-out;
      color: #A22040;
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .c-notice__bdy1 :where(a):hover {
      transition-duration: 0.3s;
      transition-timing-function: ease-out;
      color: #A22040;
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    }
  }

  @media print {
    .c-notice__bdy1 :where(a):hover {
      transition-duration: 0.3s;
      transition-timing-function: ease-out;
      color: #A22040;
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    }
  }

  @media screen and (min-width: 1440px) {
    .c-notice__bdy1 :where(a):hover {
      transition-duration: 0.3s;
      transition-timing-function: ease-out;
      color: #A22040;
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    }
  }

  .c-notice__bdy1 a .p-link01__ico {
      transition: filter 0.3s ease 0s;
      filter: invert(25%) sepia(65%) saturate(0%) hue-rotate(224deg) brightness(85%) contrast(116%);
  }
  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .c-notice__bdy1 a:hover .p-link01__ico {
      filter: invert(19%) sepia(72%) saturate(1936%) hue-rotate(320deg) brightness(96%) contrast(100%);
      transition-duration: 0.2s;
      transition-timing-function: ease-in;
    }
  }
  
  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .c-notice__bdy1 a:hover .p-link01__ico {
      filter: invert(19%) sepia(72%) saturate(1936%) hue-rotate(320deg) brightness(96%) contrast(100%);
      transition-duration: 0.2s;
      transition-timing-function: ease-in;
    }
  }
  
  @media print {
    .c-notice__bdy1 a:hover .p-link01__ico {
      filter: invert(19%) sepia(72%) saturate(1936%) hue-rotate(320deg) brightness(96%) contrast(100%);
      transition-duration: 0.2s;
      transition-timing-function: ease-in;
    }
  }
  
  @media screen and (min-width: 1440px) {
    .c-notice__bdy1 a:hover .p-link01__ico {
      filter: invert(19%) sepia(72%) saturate(1936%) hue-rotate(320deg) brightness(96%) contrast(100%);
      transition-duration: 0.2s;
      transition-timing-function: ease-in;
    }
  }

  .c-notice:not(:has(.c-notice__bdy1)) {
    display: none;
  }

  /* .p-news */

  @media screen and (max-width: 767px) {
    .p-news {
      padding-top: calc(24 * var(--mc--quantity--of-design--horizontal));
      padding-bottom: calc(32 * var(--mc--quantity--of-design--horizontal));
      padding-left: var(--mc-layout--offset--of-outer-left);
      padding-right: var(--mc-layout--offset--of-outer-right);
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .p-news {
      padding-top: 90px;
      padding-bottom: 120px;
      padding-left: calc(var(--mc-layout--offset--of-outer-left) + var(--mc-layout--offset--of-inner-left));
      padding-right: calc(var(--mc-layout--offset--of-outer-right) + var(--mc-layout--offset--of-inner-right));
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .p-news {
      padding-top: 90px;
      padding-bottom: 120px;
      padding-left: calc(var(--mc-layout--offset--of-outer-left) + var(--mc-layout--offset--of-inner-left));
      padding-right: calc(var(--mc-layout--offset--of-outer-right) + var(--mc-layout--offset--of-inner-right));
    }
  }

  @media print {
    .p-news {
      padding-top: 90px;
      padding-bottom: 120px;
      padding-left: calc(var(--mc-layout--offset--of-outer-left) + var(--mc-layout--offset--of-inner-left));
      padding-right: calc(var(--mc-layout--offset--of-outer-right) + var(--mc-layout--offset--of-inner-right));
    }
  }

  @media screen and (min-width: 1440px) {
    .p-news {
      padding-top: 90px;
      padding-bottom: 120px;
      padding-left: calc(var(--mc-layout--offset--of-outer-left) + var(--mc-layout--offset--of-inner-left));
      padding-right: calc(var(--mc-layout--offset--of-outer-right) + var(--mc-layout--offset--of-inner-right));
    }
  }


  @media screen and (max-width: 767px) {
    .p-news__nav1 {
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(2, auto);
      gap: 1px;
      margin-bottom: calc(25 * var(--mc--quantity--of-design--horizontal));
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .p-news__nav1 {
      margin-bottom: 40px;
      column-gap: 1px;
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .p-news__nav1 {
      margin-bottom: 40px;
      column-gap: 1px;
    }
  }

  @media print {
    .p-news__nav1 {
      margin-bottom: 40px;
      column-gap: 1px;
    }
  }

  @media screen and (min-width: 1440px) {
    .p-news__nav1 {
      margin-bottom: 40px;
      column-gap: 1px;
    }
  }


  @media screen and (max-width: 767px) {
    .p-news__itm1:first-child {
      grid-column: 1/-1;
    }
  }

  .p-news__tab1 {
    display: block grid;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background-color: #000;
    color: #FFF;
    font-weight: 500;
    padding: 0.5em 1em;
  }

  @media screen and (max-width: 767px) {
    .p-news__tab1 {
      min-height: 50px;
      font-size: calc(15 * var(--mc--quantity--of-design--horizontal));
      letter-spacing: 0.04em;
      line-height: 1.1333333333;
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .p-news__tab1 {
      border-bottom-style: solid;
      border-bottom-width: 4px;
      min-height: 64px;
      font-size: 20px;
      letter-spacing: 0.1em;
      transition-property: border-bottom-color, background-color, color;
      transition-duration: 0.2s;
      transition-timing-function: ease-in;
      border-bottom-color: #FFF;
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .p-news__tab1 {
      border-bottom-style: solid;
      border-bottom-width: 4px;
      min-height: 64px;
      font-size: 20px;
      letter-spacing: 0.1em;
      transition-property: border-bottom-color, background-color, color;
      transition-duration: 0.2s;
      transition-timing-function: ease-in;
      border-bottom-color: #FFF;
    }
  }

  @media print {
    .p-news__tab1 {
      border-bottom-style: solid;
      border-bottom-width: 4px;
      min-height: 64px;
      font-size: 20px;
      letter-spacing: 0.1em;
      transition-property: border-bottom-color, background-color, color;
      transition-duration: 0.2s;
      transition-timing-function: ease-in;
      border-bottom-color: #FFF;
    }
  }

  @media screen and (min-width: 1440px) {
    .p-news__tab1 {
      border-bottom-style: solid;
      border-bottom-width: 4px;
      min-height: 64px;
      font-size: 20px;
      letter-spacing: 0.1em;
      transition-property: border-bottom-color, background-color, color;
      transition-duration: 0.2s;
      transition-timing-function: ease-in;
      border-bottom-color: #FFF;
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {

    .p-news__tab1:hover,
    .p-news__tab1:focus {
      transition-duration: 0.3s;
      transition-timing-function: ease-out;
      background-color: #A22041;
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {

    .p-news__tab1:hover,
    .p-news__tab1:focus {
      transition-duration: 0.3s;
      transition-timing-function: ease-out;
      background-color: #A22041;
    }
  }

  @media print {

    .p-news__tab1:hover,
    .p-news__tab1:focus {
      transition-duration: 0.3s;
      transition-timing-function: ease-out;
      background-color: #A22041;
    }
  }

  @media screen and (min-width: 1440px) {

    .p-news__tab1:hover,
    .p-news__tab1:focus {
      transition-duration: 0.3s;
      transition-timing-function: ease-out;
      background-color: #A22041;
    }
  }

  .p-news__tab1[aria-selected=true] {
    background-color: #FFF;
    color: #000;
  }

  @media screen and (max-width: 767px) {
    .p-news__tab1[aria-selected=true] {
      border-top: solid 1px #000;
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .p-news__tab1[aria-selected=true] {
      border-bottom-color: #A22041;
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .p-news__tab1[aria-selected=true] {
      border-bottom-color: #A22041;
    }
  }

  @media print {
    .p-news__tab1[aria-selected=true] {
      border-bottom-color: #A22041;
    }
  }

  @media screen and (min-width: 1440px) {
    .p-news__tab1[aria-selected=true] {
      border-bottom-color: #A22041;
    }
  }


  @media screen and (max-width: 767px) {
    .p-news__btn1 {
      margin-top: calc(24 * var(--mc--quantity--of-design--horizontal));
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .p-news__btn1 {
      margin-top: 90px;
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .p-news__btn1 {
      margin-top: 90px;
    }
  }

  @media print {
    .p-news__btn1 {
      margin-top: 90px;
    }
  }

  @media screen and (min-width: 1440px) {
    .p-news__btn1 {
      margin-top: 90px;
    }
  }

  /* .p-contents */

  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .p-contents>menu {
      display: grid;
      grid-auto-flow: row;
      grid-auto-rows: auto;
      row-gap: 18px;
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .p-contents>menu {
      display: grid;
      grid-auto-flow: row;
      grid-auto-rows: auto;
      row-gap: 18px;
    }
  }

  @media print {
    .p-contents>menu {
      display: grid;
      grid-auto-flow: row;
      grid-auto-rows: auto;
      row-gap: 18px;
    }
  }

  @media screen and (min-width: 1440px) {
    .p-contents>menu {
      display: grid;
      grid-auto-flow: row;
      grid-auto-rows: auto;
      row-gap: 18px;
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .p-contents>menu>li:nth-child(even) {
      --mc-hero2--keyword--of-direction: rtl;
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .p-contents>menu>li:nth-child(even) {
      --mc-hero2--keyword--of-direction: rtl;
    }
  }

  @media print {
    .p-contents>menu>li:nth-child(even) {
      --mc-hero2--keyword--of-direction: rtl;
    }
  }

  @media screen and (min-width: 1440px) {
    .p-contents>menu>li:nth-child(even) {
      --mc-hero2--keyword--of-direction: rtl;
    }
  }

  /* .p-pickup */
  .p-pickup {
    --mc-gallery2--color-for-hide: #F7F7F8;
    background-color: #F7F7F8;
  }

  @media screen and (max-width: 767px) {
    .p-pickup {
      padding-top: calc(32 * var(--mc--quantity--of-design--horizontal));
      padding-left: var(--mc-layout--offset--of-outer-left);
      padding-right: var(--mc-layout--offset--of-outer-right);
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .p-pickup {
      padding-top: 100px;
      padding-bottom: 80px;
      padding-left: calc(var(--mc-layout--offset--of-outer-left) + var(--mc-layout--offset--of-inner-left));
      padding-right: calc(var(--mc-layout--offset--of-outer-right) + var(--mc-layout--offset--of-inner-right));
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .p-pickup {
      padding-top: 100px;
      padding-bottom: 80px;
      padding-left: calc(var(--mc-layout--offset--of-outer-left) + var(--mc-layout--offset--of-inner-left));
      padding-right: calc(var(--mc-layout--offset--of-outer-right) + var(--mc-layout--offset--of-inner-right));
    }
  }

  @media print {
    .p-pickup {
      padding-top: 100px;
      padding-bottom: 80px;
      padding-left: calc(var(--mc-layout--offset--of-outer-left) + var(--mc-layout--offset--of-inner-left));
      padding-right: calc(var(--mc-layout--offset--of-outer-right) + var(--mc-layout--offset--of-inner-right));
    }
  }

  @media screen and (min-width: 1440px) {
    .p-pickup {
      padding-top: 100px;
      padding-bottom: 80px;
      padding-left: calc(var(--mc-layout--offset--of-outer-left) + var(--mc-layout--offset--of-inner-left));
      padding-right: calc(var(--mc-layout--offset--of-outer-right) + var(--mc-layout--offset--of-inner-right));
    }
  }

  /* .c-sns */
  .c-sns {
    color: #FFF;
  }

  @media screen and (max-width: 767px) {
    .c-sns {
      display: none;
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .c-sns {
      display: block grid;
      align-items: center;
      justify-content: center;
      height: 200px;
      background-color: #000;
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .c-sns {
      display: block grid;
      align-items: center;
      justify-content: center;
      height: 200px;
      background-color: #000;
    }
  }

  @media print {
    .c-sns {
      display: block grid;
      align-items: center;
      justify-content: center;
      height: 200px;
      background-color: #000;
    }
  }

  @media screen and (min-width: 1440px) {
    .c-sns {
      display: block grid;
      align-items: center;
      justify-content: center;
      height: 200px;
      background-color: #000;
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .c-sns :where(a) {
      font-size: 16px;
      font-weight: 500;
      letter-spacing: 0.1em;
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .c-sns :where(a) {
      font-size: 16px;
      font-weight: 500;
      letter-spacing: 0.1em;
    }
  }

  @media print {
    .c-sns :where(a) {
      font-size: 16px;
      font-weight: 500;
      letter-spacing: 0.1em;
    }
  }

  @media screen and (min-width: 1440px) {
    .c-sns :where(a) {
      font-size: 16px;
      font-weight: 500;
      letter-spacing: 0.1em;
    }
  }

  .c-sns :where(a)::before {
    content: "";
    display: block;
    aspect-ratio: 1;
    margin-bottom: 19px;
    margin-left: auto;
    margin-right: auto;
    background: url("https://www.mitsubishicorp.com/assets_r24/images/cmn-icon_instagram_1.svg") no-repeat center/contain;
  }

  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .c-sns :where(a)::before {
      width: 57px;
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .c-sns :where(a)::before {
      width: 57px;
    }
  }

  @media print {
    .c-sns :where(a)::before {
      width: 57px;
    }
  }

  @media screen and (min-width: 1440px) {
    .c-sns :where(a)::before {
      width: 57px;
    }
  }

  /* .c-info */
  .c-info {
    border: solid 1px #D5D5D5;
  }

  @media screen and (max-width: 767px) {
    .c-info {
      padding-top: calc(20 * var(--mc--quantity--of-design--horizontal));
      padding-bottom: calc(20 * var(--mc--quantity--of-design--horizontal));
      padding-left: var(--mc-layout--offset--of-inner-left);
      padding-right: var(--mc-layout--offset--of-inner-right);
      margin-top: calc(30 * var(--mc--quantity--of-design--horizontal));
      margin-bottom: calc(39 * var(--mc--quantity--of-design--horizontal));
      margin-left: var(--mc-layout--offset--of-outer-left);
      margin-right: var(--mc-layout--offset--of-outer-right);
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .c-info {
      display: grid;
      grid-template-columns: calc(var(--mc-layout--width-column) * 3 + var(--mc-layout--gap) * 2) 1fr;
      column-gap: var(--mc-layout--gap);
      padding-top: 20px;
      padding-bottom: 20px;
      margin-top: 60px;
      margin-bottom: 64px;
      margin-left: calc(var(--mc-layout--offset--of-outer-left) + var(--mc-layout--offset--of-inner-left));
      margin-right: calc(var(--mc-layout--offset--of-outer-right) + var(--mc-layout--offset--of-inner-right));
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .c-info {
      display: grid;
      grid-template-columns: calc(var(--mc-layout--width-column) * 3 + var(--mc-layout--gap) * 2) 1fr;
      column-gap: var(--mc-layout--gap);
      padding-top: 20px;
      padding-bottom: 20px;
      margin-top: 60px;
      margin-bottom: 64px;
      margin-left: calc(var(--mc-layout--offset--of-outer-left) + var(--mc-layout--offset--of-inner-left));
      margin-right: calc(var(--mc-layout--offset--of-outer-right) + var(--mc-layout--offset--of-inner-right));
    }
  }

  @media print {
    .c-info {
      display: grid;
      grid-template-columns: calc(var(--mc-layout--width-column) * 3 + var(--mc-layout--gap) * 2) 1fr;
      column-gap: var(--mc-layout--gap);
      padding-top: 20px;
      padding-bottom: 20px;
      margin-top: 60px;
      margin-bottom: 64px;
      margin-left: calc(var(--mc-layout--offset--of-outer-left) + var(--mc-layout--offset--of-inner-left));
      margin-right: calc(var(--mc-layout--offset--of-outer-right) + var(--mc-layout--offset--of-inner-right));
    }
  }

  @media screen and (min-width: 1440px) {
    .c-info {
      display: grid;
      grid-template-columns: calc(var(--mc-layout--width-column) * 3 + var(--mc-layout--gap) * 2) 1fr;
      column-gap: var(--mc-layout--gap);
      padding-top: 20px;
      padding-bottom: 20px;
      margin-top: 60px;
      margin-bottom: 64px;
      margin-left: calc(var(--mc-layout--offset--of-outer-left) + var(--mc-layout--offset--of-inner-left));
      margin-right: calc(var(--mc-layout--offset--of-outer-right) + var(--mc-layout--offset--of-inner-right));
    }
  }

  .c-info__ttl1 {
    font-weight: 500;
    letter-spacing: 0.1em;
  }

  @media screen and (max-width: 767px) {
    .c-info__ttl1 {
      border-bottom: solid 1px #D5D5D5;
      padding-bottom: calc(16 * var(--mc--quantity--of-design--horizontal));
      margin-bottom: calc(20 * var(--mc--quantity--of-design--horizontal));
      font-size: calc(18 * var(--mc--quantity--of-design--horizontal));
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .c-info__ttl1 {
      display: grid;
      align-items: center;
      justify-content: center;
      border-right: solid 1px #D5D5D5;
      font-size: 18px;
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .c-info__ttl1 {
      display: grid;
      align-items: center;
      justify-content: center;
      border-right: solid 1px #D5D5D5;
      font-size: 18px;
    }
  }

  @media print {
    .c-info__ttl1 {
      display: grid;
      align-items: center;
      justify-content: center;
      border-right: solid 1px #D5D5D5;
      font-size: 18px;
    }
  }

  @media screen and (min-width: 1440px) {
    .c-info__ttl1 {
      display: grid;
      align-items: center;
      justify-content: center;
      border-right: solid 1px #D5D5D5;
      font-size: 18px;
    }
  }

  .c-info__lst1 {
    font-weight: 500;
  }

  @media screen and (max-width: 767px) {
    .c-info__lst1 {
      font-size: calc(15 * var(--mc--quantity--of-design--horizontal));
      letter-spacing: 0.06em;
      line-height: 1.6;
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .c-info__lst1 {
      padding-top: 20px;
      padding-bottom: 20px;
      padding-right: 20px;
      font-size: 16px;
      letter-spacing: 0.1em;
      line-height: 1.5;
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .c-info__lst1 {
      padding-top: 20px;
      padding-bottom: 20px;
      padding-right: 20px;
      font-size: 16px;
      letter-spacing: 0.1em;
      line-height: 1.5;
    }
  }

  @media print {
    .c-info__lst1 {
      padding-top: 20px;
      padding-bottom: 20px;
      padding-right: 20px;
      font-size: 16px;
      letter-spacing: 0.1em;
      line-height: 1.5;
    }
  }

  @media screen and (min-width: 1440px) {
    .c-info__lst1 {
      padding-top: 20px;
      padding-bottom: 20px;
      padding-right: 20px;
      font-size: 16px;
      letter-spacing: 0.1em;
      line-height: 1.5;
    }
  }


  @media screen and (max-width: 767px) {
    .c-info__lst1 :where(li):not(:last-child) {
      border-bottom: solid 1px #D5D5D5;
      padding-bottom: calc(16 * var(--mc--quantity--of-design--horizontal));
      margin-bottom: calc(16 * var(--mc--quantity--of-design--horizontal));
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .c-info__lst1 :where(li):not(:last-child) {
      margin-bottom: 16px;
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .c-info__lst1 :where(li):not(:last-child) {
      margin-bottom: 16px;
    }
  }

  @media print {
    .c-info__lst1 :where(li):not(:last-child) {
      margin-bottom: 16px;
    }
  }

  @media screen and (min-width: 1440px) {
    .c-info__lst1 :where(li):not(:last-child) {
      margin-bottom: 16px;
    }
  }

  .c-info__lst1 :where(li > a) {
    display: inline grid;
    grid-template-columns: repeat(2, auto);
    align-items: center;
  }

  @media screen and (max-width: 767px) {
    .c-info__lst1 :where(li > a) {
      column-gap: calc(13 * var(--mc--quantity--of-design--horizontal));
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .c-info__lst1 :where(li > a) {
      column-gap: 1em;
      position: relative;
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .c-info__lst1 :where(li > a) {
      column-gap: 1em;
      position: relative;
    }
  }

  @media print {
    .c-info__lst1 :where(li > a) {
      column-gap: 1em;
      position: relative;
    }
  }

  @media screen and (min-width: 1440px) {
    .c-info__lst1 :where(li > a) {
      column-gap: 1em;
      position: relative;
    }
  }

  .c-info__lst1 :where(li > a)::before {
    content: "";
    aspect-ratio: 1;
    background-color: #000;
  }

  @media screen and (max-width: 767px) {
    .c-info__lst1 :where(li > a)::before {
      width: calc(20 * var(--mc--quantity--of-design--horizontal));
      mask: url("https://www.mitsubishicorp.com/assets_r24/images/cmn-mark_arrow_3.svg") no-repeat center/contain;
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .c-info__lst1 :where(li > a)::before {
      order: 1;
      width: 1em;
      mask: url("https://www.mitsubishicorp.com/assets_r24/images/cmn-mark_arrow_2.svg") no-repeat center/contain;
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .c-info__lst1 :where(li > a)::before {
      order: 1;
      width: 1em;
      mask: url("https://www.mitsubishicorp.com/assets_r24/images/cmn-mark_arrow_2.svg") no-repeat center/contain;
    }
  }

  @media print {
    .c-info__lst1 :where(li > a)::before {
      order: 1;
      width: 1em;
      mask: url("https://www.mitsubishicorp.com/assets_r24/images/cmn-mark_arrow_2.svg") no-repeat center/contain;
    }
  }

  @media screen and (min-width: 1440px) {
    .c-info__lst1 :where(li > a)::before {
      order: 1;
      width: 1em;
      mask: url("https://www.mitsubishicorp.com/assets_r24/images/cmn-mark_arrow_2.svg") no-repeat center/contain;
    }
  }

  .c-info__lst1 :where(li > a)::after {
    content: "";
  }

  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .c-info__lst1 :where(li > a)::after {
      display: block;
      height: 1px;
      position: absolute;
      bottom: -0.25em;
      background-color: #000;
      transition: width 0.2s ease-in;
      width: 0;
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .c-info__lst1 :where(li > a)::after {
      display: block;
      height: 1px;
      position: absolute;
      bottom: -0.25em;
      background-color: #000;
      transition: width 0.2s ease-in;
      width: 0;
    }
  }

  @media print {
    .c-info__lst1 :where(li > a)::after {
      display: block;
      height: 1px;
      position: absolute;
      bottom: -0.25em;
      background-color: #000;
      transition: width 0.2s ease-in;
      width: 0;
    }
  }

  @media screen and (min-width: 1440px) {
    .c-info__lst1 :where(li > a)::after {
      display: block;
      height: 1px;
      position: absolute;
      bottom: -0.25em;
      background-color: #000;
      transition: width 0.2s ease-in;
      width: 0;
    }
  }


  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .c-info__lst1 :where(li > a):hover::after {
      transition-duration: 0.3s;
      transition-timing-function: ease-out;
      width: 100%;
    }
  }


  @media screen and (min-width: 1200px) and (max-width: 1439px) {
    .c-info__lst1 :where(li > a):hover::after {
      transition-duration: 0.3s;
      transition-timing-function: ease-out;
      width: 100%;
    }
  }

  @media print {
    .c-info__lst1 :where(li > a):hover::after {
      transition-duration: 0.3s;
      transition-timing-function: ease-out;
      width: 100%;
    }
  }

  @media screen and (min-width: 1440px) {
    .c-info__lst1 :where(li > a):hover::after {
      transition-duration: 0.3s;
      transition-timing-function: ease-out;
      width: 100%;
    }
  }
  
  .c-info:not(:has(.c-info__lst1)) {
    display: none;
  }


  .splide__slide.is-active > a > .c-pr__card > .c-image1 {
    overflow: hidden;
  }
  .splide__slide.is-active > a > .c-pr__card > .c-image1 > img {
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
    transform: scale(1);
    backface-visibility: hidden;
    will-change: transform;
    transform: translate3d(0, 0, 0);
  }
  .splide__slide.is-active > a > .c-pr__card:hover > .c-image1 > img {
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
    transform: scale(1.1);
  }
  .splide__slide.is-active > a > .c-pr__card.c-pr__card--bd {
    border:1px solid #666;
  }
}