@charset "UTF-8";
/* ----------------------------------
  Header
 * ------------------------------- */
#cr-l-header {
  display: none;
}

@media screen and (max-width: 768px) {
  #cr-l-header {
    display: block;
    width: 100%;
    height: 60px;
    background: #fff;
    border-top: 1px solid #f0f3f5;
    border-bottom: 1px solid #f0f3f5;
    position: relative;
  }

  #cr-l-header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }

  #cr-l-header .cr-l-header_title {
    font-weight: bold;
    font-size: 12px;
    line-height: 1.42;
    width: 100%;
    height: 60px;
    position: absolute;
    top: 12px;
    left: 15px;
  }
}

/* ----------------------------------
  Drawer
 * ------------------------------- */
/* ----- drawerswitch ----- */
.cr-l-drawerSwitch {
  display: block;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 14px;
  right: 10px;
  cursor: pointer;
}

.cr-l-drawerSwitch,
.cr-l-drawerSwitch *,
.cr-l-drawerSwitch *:before,
.cr-l-drawerSwitch *:after {
  transition: all 300ms;
}

.cr-l-drawerSwitch_border {
  display: block;
  width: 32px;
  height: 8px;
  margin: auto auto;
  position: relative;
}

.cr-l-drawerSwitch_border span {
  display: block;
  width: 32px;
  height: 2px;
  background: #000000;
  position: absolute;
  left: 0;
}

.cr-l-drawerSwitch_border span:nth-child(1) {
  top: 0;
}
.cr-l-drawerSwitch_border span:nth-child(2) {
  bottom: 0;
}

/* active */
.cr-l-drawerSwitch[aria-expanded='true'] .cr-l-drawerSwitch_border span:nth-child(1) {
  transform: rotate(45deg);
  top: 3px;
}
.cr-l-drawerSwitch[aria-expanded='true'] .cr-l-drawerSwitch_border span:nth-child(2) {
  transform: rotate(-45deg);
  bottom: 3px;
}

/* ----- drawerswitch - close ----- */
.cr-l-drawerSwitch-close {
  display: block;
  width: 42px;
  height: 42px;
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 100;
  cursor: pointer;
}

.cr-l-drawerSwitch-close_border {
  display: block;
  width: 42px;
  height: 8px;
  margin: auto auto;
  position: relative;
}

.cr-l-drawerSwitch-close_border span {
  display: block;
  width: 42px;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
}

.cr-l-drawerSwitch-close_border span:nth-child(1) {
  transform: rotate(45deg);
  top: 3px;
}
.cr-l-drawerSwitch-close_border span:nth-child(2) {
  transform: rotate(-45deg);
  bottom: 3px;
}

/* ----- drawer ----- */
.cr-l-drawer {
  display: none;
}

@media screen and (max-width: 768px) {
  .cr-l-drawer {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(230, 0, 18, 1) 0%, rgba(114, 0, 9, 1) 100%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    overflow-y: scroll;
    overflow-x: hidden;
  }

  .cr-l-drawer[aria-expanded] {
    transition: all 400ms;
  }

  .cr-l-drawer[aria-expanded='false'] {
    transform: scale(1.3);
    opacity: 0;
    visibility: hidden;
  }

  .cr-l-drawer[aria-expanded='true'] {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
}

/* ----------------------------------
  NavB
 * ------------------------------- */
#cr-l-navB {
  text-align: left;
  position: relative;
  padding: 0 0 80px 0;
}

#cr-l-navB .cr-l-navB_head {
  text-align: left;
  width: 100%;
  padding: 24px 0 0 30px;
  position: relative;
}

#cr-l-navB .cr-l-navB_title {
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.5;
}

#cr-l-navB .cr-l-navB_title-en {
  color: #fff;
  font-weight: bold;
  font-size: 11px;
  line-height: 1.5;
  display: block;
  margin: 5px 0 0 0;
}

#cr-l-navB .cr-l-navB_block-1 {
  margin: 50px 0 50px 0;
}

#cr-l-navB .cr-l-navB_block-2 {
  margin: 50px 0 30px 0;
}

#cr-l-navB .cr-l-navB_itemList > li + li {
  margin-top: 25px;
}

#cr-l-navB .cr-l-navB_item {
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  display: inline-block;
  margin: 0 0 0 30px;
  position: relative;
}

#cr-l-navB .cr-l-navB_subitem {
  font-size: 16px;
}

#cr-l-navB .cr-l-navB_item2List > li + li {
  margin-top: 20px;
}

#cr-l-navB .cr-l-navB_item2 {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  display: inline-block;
  margin: 0 0 0 40px;
  position: relative;
}

#cr-l-navB .cr-l-navB_item3List > li + li {
  margin-top: 15px;
}

#cr-l-navB .cr-l-navB_item3 {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  display: inline-block;
  margin: 0 0 0 30px;
  position: relative;
}

/* icon */
#cr-l-navB .cr-l-navB_item[target='_blank'],
#cr-l-navB .cr-l-navB_item2[target='_blank'] {
  padding-right: 20px;
}

#cr-l-navB .cr-l-navB_item[target='_blank']:after,
#cr-l-navB .cr-l-navB_item2[target='_blank']:after {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background: url('/recruit/career/shared/images/common/icon_blank_01_w.png') no-repeat center center / contain;
  position: absolute;
  bottom: 3px;
  right: 0;
  /* translate: 0 -50%; */
}

/* accordionContent */
#cr-l-navB .cr-l-navB_accordionContent {
  padding: 15px 0 0 0;
  display: none;
}

#cr-l-navB .cr-l-navB_accordionContent_inner {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 10px;
}

/* accordionBtn */
#cr-l-navB .cr-l-navB_accordionBtn {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  text-align: left;
  display: block;
  width: 100%;
  padding: 0 22px 0 0;
  position: relative;
  cursor: pointer;
}

#cr-l-navB .cr-l-navB_accordionBtn:before,
#cr-l-navB .cr-l-navB_accordionBtn:after {
  content: '';
  position: absolute;
  display: block;
  width: 20px;
  height: 1px;
  background: #fff;
  top: 50%;
  right: 30px;
  transition: all 0.3s ease-in-out;
  translate: 0 -50%;
}

#cr-l-navB .cr-l-navB_accordionBtn:after {
  rotate: 90deg;
}

#cr-l-navB .cr-l-navB_accordionBtn.is-active:after {
  rotate: 0deg;
}

/* btn */
#cr-l-navB .cr-l-navB_btn {
  font-weight: bold;
  color: #e60012;
  font-size: 16px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 50px;
  border-radius: 100vh;
  background: #fff;
  border: 2px solid #fff;
  margin: 0 0 0 30px;
}

#cr-l-navB .cr-l-navB_btn + .cr-l-navB_btn {
  margin-top: 20px;
}

/* ----------------------------------
  NavA
 * ------------------------------- */
#cr-l-navA {
  text-align: left;
  display: block;
  /* width: 265px;
    min-height: calc(100vh - 190px);
    background: #fff; */
  padding: 15px 20px 90px 20px;
  position: relative;
}

/* #cr-l-navA.is-fixed {
  position: fixed;
  top: 0;
} */

#cr-l-navA .cr-l-navA_head {
  text-align: left;
}

#cr-l-navA .cr-l-navA_title {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.8;
}

#cr-l-navA .cr-l-navA_title-en {
  font-weight: bold;
  color: #707070;
  font-size: 10px;
  line-height: 1.7;
  display: block;
  margin: 6px 0 0 0;
}

#cr-l-navA .cr-l-navA_block-1 {
  margin: 50px 0 30px 0;
}

#cr-l-navA .cr-l-navA_block-2 {
  margin: 50px 0 30px 0;
}

#cr-l-navA .cr-l-navA_itemList > li + li {
  margin-top: 30px;
}

#cr-l-navA .cr-l-navA_item {
  color: #1e1e1e;
  font-size: 16px;
  line-height: 1.5;
  display: inline-block;
  padding: 0 0 0 8px;
  /* margin: 15px 0; */
  position: relative;
}

#cr-l-navA .cr-l-navA_item:before {
  content: '';
  width: 2px;
  height: 1em;
  background: #e60012;
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  /* translate: 0 -50%; */
}

#cr-l-navA .cr-l-navA_item2List > li + li {
  margin-top: 20px;
}

#cr-l-navA .cr-l-navA_item2 {
  color: #1e1e1e;
  font-size: 14px;
  line-height: 1.5;
  display: inline-block;
  position: relative;
}

#cr-l-navA .cr-l-navA_item3List > li + li {
  margin-top: 15px;
}

#cr-l-navA .cr-l-navA_item3 {
  color: #1e1e1e;
  font-size: 14px;
  line-height: 1.5;
  display: inline-block;
  position: relative;
}

/* icon */
#cr-l-navA .cr-l-navA_item[target='_blank'],
#cr-l-navA .cr-l-navA_item2[target='_blank'] {
  padding-right: 20px;
}

#cr-l-navA .cr-l-navA_item[target='_blank']:after,
#cr-l-navA .cr-l-navA_item2[target='_blank']:after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background: url('/recruit/career/shared/images/common/icon_blank_01.png') no-repeat center center / contain;
  position: absolute;
  bottom: 3px;
  right: 0;
  /* translate: 0 -50%; */
}

/* accordionContent */
#cr-l-navA .cr-l-navA_accordionContent {
  padding: 15px 0 0 10px;
  display: none;
}

#cr-l-navA .cr-l-navA_accordionContent_inner {
  background: #efefef;
  padding: 10px 10px;
}

/* accordionBtn */
#cr-l-navA .cr-l-navA_accordionBtn {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  text-align: left;
  display: block;
  width: 100%;
  padding: 0 22px 0 0;
  position: relative;
  cursor: pointer;
}

#cr-l-navA .cr-l-navA_accordionBtn:before,
#cr-l-navA .cr-l-navA_accordionBtn:after {
  content: '';
  position: absolute;
  display: block;
  width: 15px;
  height: 2px;
  background: #1e1e1e;
  top: 50%;
  right: 0;
  transition: all 0.3s ease-in-out;
  translate: 0 -50%;
}

#cr-l-navA .cr-l-navA_accordionBtn:after {
  rotate: 90deg;
}

#cr-l-navA .cr-l-navA_accordionBtn.is-active:after {
  rotate: 0deg;
}

/* btn */
#cr-l-navA .cr-l-navA_btn {
  font-weight: bold;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  border-radius: 100vh;
  background: #e60027;
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.3);
  transition: all 200ms;
}

#cr-l-navA .cr-l-navA_btn:hover {
  color: #e60027;
  background: #fff;
}

#cr-l-navA .cr-l-navA_btn + .cr-l-navA_btn {
  margin-top: 20px;
}

/* ----------------------------------
  gotop
 * ------------------------------- */
#cr-l-pagetop {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  aspect-ratio: 1/1;
  background: #fff;
  position: fixed;
  top: 0;
  right: 265px;
  z-index: 20;
  opacity: 0;
}

#cr-l-pagetop img {
  width: calc(33 / 70 * 100%);
}

@media screen and (min-width: 965px) {
  #cr-l-pagetop {
    right: calc(50% - 965px / 2 + 265px);
  }
}

@media screen and (max-width: 768px) {
  #cr-l-pagetop {
    width: 60px;
    top: 60px;
    right: 0;
  }

  #cr-l-pagetop img {
    width: calc(33 / 60 * 100%);
  }
}
/* ----------------------------------
  Side
 * ------------------------------- */
#cr-l-side {
  width: 265px;
  height: 100%;
  /* background: #fff; */
  position: absolute;
  top: 0;
  right: 0;
  z-index: 20;
}

@media screen and (min-width: 965px) {
  #cr-l-side {
    right: calc(50% - 965px / 2);
  }
}

@media screen and (max-width: 768px) {
  #cr-l-side {
    display: none;
  }
}

#cr-l-side .cr-l-side_bg {
  display: block;
  width: 100%;
  height: 100vh;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

#cr-l-side.is-fixed {
  position: fixed;
  top: 0;
}

#cr-l-side .cr-l-side_inner {
  height: 100%;
  overflow-y: scroll;
  background: #fff;
  position: relative;
}

#cr-l-side .cr-l-side_inner::-webkit-scrollbar {
  display: none;
}

#cr-l-side .cr-l-side_inner {
  scrollbar-width: none;
}

/* ----------------------------------
  Footer
 * ------------------------------- */
/* - bannerA
---------------------------------- */
.cr-l-bannerAWrap {
  margin: 90px 0 0 0;
  background: #fff;
  padding: 10px;
}

.cr-l-bannerA {
  display: block;
  position: relative;
}

.cr-l-bannerA .cr-l-bannerA_title {
  color: #fff;
  font-size: min(calc(16 / 965 * 100vw), 16px);
  line-height: 1.5;
  text-align: center;
  display: inline-block;
  min-width: 120px;
  padding: 0.2em 1em;
  background: linear-gradient(90deg, rgba(230, 0, 18, 1) 0%, rgba(114, 0, 9, 1) 100%);
  position: absolute;
  top: 0;
  left: 0;
}

@media (any-hover: hover) {
  .cr-l-bannerA {
    transition: all 300ms;
  }

  .cr-l-bannerA:hover {
    opacity: 0.6;
  }
}

@media screen and (max-width: 768px) {
  .cr-l-bannerAWrap {
    width: calc(340 / 375 * 100%);
    margin: 60px auto 0 auto;
  }

  .cr-l-bannerA .cr-l-bannerA_title {
    font-size: 14px;
    min-width: 110px;
  }
}

/* - bannerB
---------------------------------- */
.cr-l-bannerBWrap {
  margin: 30px 0 0 0;
  background: #fff;
  padding: 10px;
}

.cr-l-bannerB {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  height: 130px;
  padding: 0 0 0 calc(40 / 650 * 100%);
  background: linear-gradient(90deg, rgba(230, 0, 18, 1) 0%, rgba(114, 0, 9, 1) 100%);
  position: relative;
}

.cr-l-bannerB .cr-l-bannerB_title {
  color: #fff;
  font-size: min(calc(28 / 965 * 100vw), 28px);
  line-height: 1.5;
}

.cr-l-bannerB .cr-l-bannerB_text {
  color: #fff;
  font-size: min(calc(14 / 965 * 100vw), 14px);
  line-height: 1.8;
  margin: 1em 0 0 0;
}

/* icon */
.cr-l-bannerB:not([target='_blank']):after {
  content: '';
  display: block;
  width: 9px;
  aspect-ratio: 1/1;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  top: 50%;
  right: calc(25 / 650 * 100%);
  translate: 0 -50%;
  rotate: 45deg;
}

.cr-l-bannerB[target='_blank']:after {
  content: '';
  display: block;
  width: 12px;
  aspect-ratio: 1/1;
  background: url('/recruit/career/shared/images/common/icon_blank_01_w.png') no-repeat center center / contain;
  position: absolute;
  top: 50%;
  right: calc(25 / 650 * 100%);
  translate: 0 -50%;
}

@media (any-hover: hover) {
  .cr-l-bannerB {
    transition: all 300ms;
  }

  .cr-l-bannerB:hover {
    opacity: 0.6;
  }
}

@media screen and (max-width: 768px) {
  .cr-l-bannerBWrap {
    width: calc(340 / 375 * 100%);
    margin: 30px auto 0 auto;
  }

  .cr-l-bannerB {
    height: calc(100 / 375 * 100vw);
    padding: 0 0 0 calc(20 / 300 * 100%);
  }

  .cr-l-bannerB .cr-l-bannerB_title {
    font-size: calc(20 / 375 * 100vw);
  }

  .cr-l-bannerB .cr-l-bannerB_text {
    font-size: calc(12 / 375 * 100vw);
    line-height: 1.7;
    margin: 0.5em 0 0 0;
  }

  /* icon */
  .cr-l-bannerB:not([target='_blank']):after {
    width: calc(9 / 375 * 100vw);
    right: calc(20 / 300 * 100%);
  }

  .cr-l-bannerB[target='_blank']:after {
    width: calc(12 / 375 * 100vw);
    right: calc(20 / 300 * 100%);
  }
}

/* ----------------------------------
  Main
 * ------------------------------- */
.cr-l-inner {
  width: min(100%, 965px);
  padding: 0 calc(265px + 30px) 0 0;
  margin: 0 auto;
}

@media screen and (max-width: 965px) {
  .cr-l-inner {
    padding: 0 calc(265px + calc(30 / 965 * 100%)) 0 0;
  }
}

@media screen and (max-width: 768px) {
  .cr-l-inner {
    padding: 0 0 0 0;
  }
}

.cr-l-bg {
  padding: 60px 0 150px 0;
  background: url('/recruit/career/shared/images/common/bg_01-sp.svg') repeat-y top center / 100% auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  .cr-l-bg {
    padding: 30px 0 60px 0;
    background: url('/recruit/career/shared/images/common/bg_01-sp.svg') repeat-y top center / 100% auto;
  }
}

/* ----------------------------------
  Component
 * ------------------------------- */
#Contents .cr-c-fit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* - mv
---------------------------------- */
.cr-c-mv {
  width: 100%;
  height: min(calc(500 / 965 * 100vw), 500px);
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .cr-c-mv {
    width: 100%;
    height: auto;
    aspect-ratio: 375/482;
  }

  /* cr-c-mv_text なし */
  .cr-c-mv:not(:has(.cr-c-mv_text)) {
    aspect-ratio: 375/332;
  }
}

.cr-c-mv .cr-c-mv_img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#Contents .cr-c-mv .cr-c-mv_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cr-c-mv .cr-c-mv_container-text {
  width: min(100%, 1065px);
  padding: 0 50px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.cr-c-mv .cr-c-mv_title {
  color: #fff;
  font-size: min(calc(40 / 965 * 100vw), 40px);
  line-height: 1.5;
  position: relative;
}

/* cr-c-mv_text なし */
.cr-c-mv:not(:has(.cr-c-mv_text)) .cr-c-mv_container-text {
  height: 100%;
  display: flex;
  align-items: center;
}

.cr-c-mv:not(:has(.cr-c-mv_text)) .cr-c-mv_title {
  margin: 0 0 0 calc(8 / 965 * 100%);
}

/* cr-c-mv_text あり */
.cr-c-mv:has(.cr-c-mv_text) .cr-c-mv_title {
  display: inline-block;
  padding: calc(100 / 965 * 100%) 0 calc(30 / 965 * 100%) 0;
  margin: 0 0 calc(35 / 965 * 100%) calc(8 / 965 * 100%);
}

.cr-c-mv:has(.cr-c-mv_text) .cr-c-mv_title:after {
  content: '';
  display: block;
  width: 73px;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50%;
}

.cr-c-mv .cr-c-mv_text {
  color: #fff;
  font-size: min(calc(16 / 965 * 100vw), 16px);
  line-height: 1.8;
  margin: 0 0 0 calc(8 / 965 * 100%);
}

@media screen and (max-width: 768px) {
  .cr-c-mv .cr-c-mv_container-text {
    padding: 0 0;
  }

  .cr-c-mv .cr-c-mv_title {
    font-size: calc(26 / 375 * 100vw);
    text-align: center;
  }

  /* cr-c-mv_text なし */
  .cr-c-mv:not(:has(.cr-c-mv_text)) .cr-c-mv_container-text {
    height: auto;
    display: block;
  }

  .cr-c-mv:not(:has(.cr-c-mv_text)) .cr-c-mv_title {
    display: block;
    margin: 0 auto;
    padding: calc(170 / 375 * 100%) 0 calc(20 / 375 * 100%) 0;
  }

  /* cr-c-mv_text あり */
  .cr-c-mv:has(.cr-c-mv_text) .cr-c-mv_title {
    display: block;
    margin: 0 auto calc(20 / 375 * 100%) auto;
    padding: calc(170 / 375 * 100%) 0 calc(20 / 375 * 100%) 0;
  }

  .cr-c-mv .cr-c-mv_text {
    font-size: calc(14 / 375 * 100vw);
    text-align: center;
    margin: 0 auto;
  }
}

/* .cr-c-mv .cr-c-mv_t {
  width: 144px;
  height: 50px;
  position: absolute;
  top: 200px;
  left: 200px;
  background: gray;
  z-index: 10;
} */

.cr-c-mv .cr-c-mv_layer-1 {
  width: min(calc(390 / 1440 * 100%), 390px);
  aspect-ratio: 390/270;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  background: #d61518;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 4;
}

.cr-c-mv .cr-c-mv_layer-1 > span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 40%);
  opacity: 0.5;
  position: absolute;
  top: 0;
}

.cr-c-mv .cr-c-mv_layer-2,
.cr-c-mv .cr-c-mv_layer-2-2 {
  width: calc(1000 / 1440 * 100%);
  aspect-ratio: 1000/750;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.cr-c-mv .cr-c-mv_layer-2 {
  background: rgba(94, 78, 35, 0.8);
  mix-blend-mode: multiply;
  z-index: 2;
}

.cr-c-mv .cr-c-mv_layer-2-2 {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%);
  z-index: 3;
}

.cr-c-mv .cr-c-mv_copy {
  width: min(calc(124 / 965 * 100vw), 124px);
  aspect-ratio: 124/105;
  background: url('/recruit/career/shared/images/common/text_career_01.png') no-repeat center center / contain;
  opacity: 0.4;
  position: absolute;
  bottom: calc(90 / 275 * 100%);
  left: min(calc(75 / 1440 * 100vw), 75px);
  z-index: 6;
}

@media screen and (max-width: 768px) {
  /* .cr-c-mv .cr-c-mv_t {
    width: calc(375px / 2);
    height: calc(482px / 2);
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    background: gray;
    z-index: 10;
  } */

  .cr-c-mv .cr-c-mv_layer-1 {
    width: calc(280 / 375 * 100%);
    aspect-ratio: 280/195;
  }

  .cr-c-mv .cr-c-mv_layer-2,
  .cr-c-mv .cr-c-mv_layer-2-2 {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    clip-path: polygon(0 0, 100% 0, 100% 61%, 50% 100%, 0 100%);
  }

  .cr-c-mv .cr-c-mv_copy {
    width: calc(102 / 375 * 100vw);
    bottom: calc(64 / 195 * 100%);
    left: calc(42 / 375 * 100vw);
  }
}

/* ----------------------------------
  Effect
 * ------------------------------- */
.cr-ef-a {
  position: relative;
  overflow-x: hidden;
}

.cr-ef-a_inner {
  visibility: hidden;
}

.cr-ef-a.is-inview .cr-ef-a_inner {
  animation: inview-a-inner 1s cubic-bezier(0, 0, 0, 1) both;
  backface-visibility: hidden;
}

.cr-ef-a:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #ddd;
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 2;
  transform-origin: right center;
  visibility: visible;
}

.cr-ef-a.is-inview:after {
  animation: inview-a-color 1s cubic-bezier(0, 0, 0, 1) both;
  backface-visibility: hidden;
}

@keyframes inview-a-color {
  0% {
    left: -100%;
  }
  49% {
    left: 0;
  }
  50% {
    left: 0;
    transform-origin: right center;
    transform: scaleX(1);
  }
  to {
    left: 0;
    transform-origin: right center;
    transform: scaleX(0);
  }
}

@keyframes inview-a-inner {
  0% {
    visibility: hidden;
  }
  49% {
    visibility: hidden;
  }
  50% {
    visibility: visible;
  }
  to {
    visibility: visible;
  }
}
