@charset "utf-8";
/* CSS Document */

/* -------------------------
/* Created date: unknown 
/* Created user: unknown 
/* Last up date: 2024.10.17
/* Last up date user: yamaguchi
/* for sp and pc
--------------------------*/

/* corpAppeals kaisha no miryoku */
.corpBox .corpAppeals ul {
  display: grid;
  gap: 3rem;
  margin: 0 auto;
}

.corpBox .corpAppeals ul li {
  display: grid;
  gap: 1.5rem;
}

.corpBox .corpAppeals .pointWrap {
  display: grid;
  grid-template-columns: 6rem auto;
  align-items: center;
  gap: 1rem;
}

.corpBox .corpAppeals .point {
  display: grid;
  place-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: rgb(var(--kyo-color-02));
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1;
}

.corpBox .corpAppeals .point span {
  font-size: 180%;
}

.corpBox .corpAppeals .pointWrap h3 {
  text-align: left;
  color: #333;
}

/* Photo Slider */
.corpBox .corpPhotos,
.corpBox .corpTvs {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  max-width: var(--innerWidth);
  container: corpBoxSlids / inline-size;
}

.corpBox .corpTvs{
  margin: 0 auto var(--paddingMin);
}

.corpBox .swiper {
  width: 100%;
  padding: 0 0 3rem;
  max-width: 100cqw;
  container: corpBoxSlidsSwiper / inline-size;
}

@container corpBoxSlids (width > 900px) {
  .corpBox .swiper {
    max-width: 95cqw;
  }
}

.corpBox .swiper-slide {
  cursor: pointer;
  padding: 15px 5px;
  width: 80cqw;
  max-width: 350px;
  max-height: 350px;
  transform: scale(0.85, 0.85);
  transition: all 0.25s 0s linear;
}

.corpBox .swiper-slide figure {
  margin: 0 auto 15px;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.corpBox .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #fff;
  border: solid 1px #fafafa;
  border-radius: 1rem;
  opacity: 0.75;
  transition: all 0.25s 0s linear;
}

.corpBox .swiper-slide.swiper-slide-active {
  transform: scale(1, 1);
}

.corpBox .swiper-slide.swiper-slide-active img {
  opacity: 1;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.2));
}

.corpBox .swiper-button-next,
.corpBox .swiper-button-prev {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
}

.corpBox .swiper-button-prev {
  left: 2px;
}

.corpBox .swiper-button-next {
  right: 2px;
}

.corpBox .swiper-button-next:after,
.corpBox .swiper-button-prev:after {
  font-size: 30px;
}

.corpBox .swiper-pagination-bullet-active {
  background: rgb(var(--kyo-color-04));
}

.noslide .swiper {
  padding: 0;
}

.noslide .swiper-button-next,
.noslide .swiper-button-prev,
.noslide .swiper-pagination {
  display: none;
}

.noslide .swiper-wrapper {
  justify-content: center;
}

.noslide .swiper-wrapper .swiper-slide {
  padding: 0 15px 15px;
  transform: scale(1, 1);
}

.noslide .swiper-wrapper .swiper-slide img {
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.2));
  opacity: 1;
}


/* --- ポップアップ用のスタイル --- */
.corpPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background: rgba(51, 51, 51, 0.75);
  pointer-events: none;
  opacity: 0;
  transition: all 0.5s 0s ease-out;
}

.corpPopup.open {
  pointer-events: auto;
  opacity: 1;
}

.corpPopup .wrap {
  position: absolute;
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 1000px) {
  .corpPopup .wrap {
    left: calc(50% - 500px);
    max-width: 1000px;
  }
}

.corpPopup .wrap.hide {
  display: none;
}

.corpPopup .wrap.open {
  opacity: 0;
  animation: 0.15s 0s ease-in forwards fadeIn;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.corpPopup .closeBtn {
  cursor: pointer;
  position: relative;
  z-index: 1000;
  justify-self: flex-end;
  margin-right: 15px;
  width: 34px;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

.corpPopup .closeBtn::before,
.corpPopup .closeBtn::after {
  content: '';
  width: 34px;
  height: 4px;
  background: #fff;
  transform-origin: center;
  transform: translate(0, 17px) rotate(45deg);
}

.corpPopup .closeBtn::after {
  transform: translate(0, 17px) rotate(-45deg);
}

.corpPopup .inner {
  padding: 5px 0 0;
  width: 100%;
  max-width: 960px;
  max-height: 75vh;
  text-align: center;
  overflow-y: auto;
  -webkit-appearance: none;
  appearance: none;
  scroll-behavior: smooth;
}

.corpPopup .inner::-webkit-scrollbar {
  width: 8px;
}

.corpPopup .inner::-webkit-scrollbar-track {
  margin: 5px 0 0;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 8px;
}

.corpPopup .inner::-webkit-scrollbar-thumb {
  background: rgb(var(--naviCream));
  border-radius: 8px;
  border: 1px solid rgb(var(--naviBlue));
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
  background-clip: padding-box;
}

.corpPopup .figCaption {
  margin: 0 auto;
  padding: 5px;
  font-size: 2rem;
  line-height: 1.2;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.corpPopup .figTxt {
  display: none;
}

.corpPopup .figFrame {
  display: none;
  margin: 0 auto;
  width: 95vw;
  max-width: 400px;
  max-height: auto;
  aspect-ratio: 16 / 9;
}

@media screen and (min-height: 500px) {
  .corpPopup .figFrame {
    max-width: 900px;
  }
}

.corpPopup.life .figTxt {
  display: block;
  margin: 0 auto;
  padding: 5px 15px;
  width: fit-content;
  line-height: 1.6;
  color: #fff;
  font-weight: bold;
  text-align: left;
}

.corpPopup.youtube figure {
  display: none;
}

.corpPopup.youtube .figFrame {
  display: block;
}


/* jobTv kaisha no douga */
.corpBox .jobTv {
  display: grid;
  gap: 1.5rem;
  margin: 0 auto var(--paddingMax);
  padding: 1.5rem;
  background: url('/new/_app/_webroot/img/page/shinrotv/background_pic_sp.png') center 30% / auto 20% repeat-x,
    url('/new/_app/_webroot/img/page/shinrotv/background_pic_sp.png') center 90% / auto 20% repeat-x, rgba(var(--kyo-color-02), 0.2);
}

.corpBox .corpTvs figure {
  position: relative;
}

.corpBox .corpTvs figure::before {
  content: '';
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.1);
  border: solid 3px #fff;
  border-radius: 50%;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
  transform: translate(-50%, -50%);
}

.corpBox .corpTvs figure::after {
  content: '';
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  background: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  transform: translate(calc(-50% + 3px), -50%);
}

.corpBox .corpTvs figcaption {
  grid-area: catchcopy;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 1.6rem;
  line-height: 1;
  max-height: 1em;
  font-weight: bold;
  text-align: center;
}

.corpBox .corpTvPopup {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.25s 0s linear;
}

.corpBox .corpTvPopup.open {
  pointer-events: auto;
  opacity: 1;
}

.corpBox .corpTvPopup iframe {
  display: block;
  width: 95vw;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  background: #fff;
  transform: scale(0, 0);
  opacity: 0;
  transition: all 0.15s 0s ease-in;
}

@media (orientation: landscape) {
  .corpBox .corpTvPopup iframe {
    width: 100vh;
  }
}

.corpBox .corpTvPopup.open iframe {
  opacity: 1;
  transform: scale(1, 1);
}


.corpBox .corpTvPopup .movieClose {
  position: fixed;
  z-index: 900;
  cursor: pointer;
  top: -50px;
  right: 0.25vw;
  width: 40px;
  height: 40px;
}

.corpBox .corpTvPopup .movieClose::before {
  content: '';
  top: 50%;
  right: 50%;
  width: 30px;
  height: 3px;
  background: #fff;
  transform: translate(50%, calc(-100% - 9px)) rotate(-45deg);
  transform-origin: right center;
  transition: all 0.25s 0s ease-out;
}

.corpBox .corpTvPopup .movieClose::after {
  content: '';
  bottom: 50%;
  right: 50%;
  width: 30px;
  height: 3px;
  background: #fff;
  transform: translate(50%, calc(100% + 9px)) rotate(45deg);
  transform-origin: right center;
  transition: all 0.25s 0s ease-out;
}



@media screen and (min-width: 768px) {
  .corpBox .corpHead {
    padding: 30px 0 60px;
    gap: 0 10px;
  }

  .corpBox .corpSlide li {
    width: 30%;
    height: 200px;
  }

  .corpBox .corpAppeals ul li {
    grid-template-columns: 350px auto;
    grid-template-areas:
      'thmb pointWrap'
      'thmb textBox';
    gap: 0 3rem;
    padding: 1.5rem 3rem;
    background: #fafafa;
  }

  .corpBox .corpAppeals .pointWrap {
    grid-area: pointWrap;
  }

  .corpBox .corpAppeals figure {
    grid-area: thmb;
  }

  .corpBox .corpAppeals .textBox {
    grid-area: textBox;
  }

  .corpBox .jobTv {
    padding: 3rem;
    max-width: calc(1300px - 6rem);
  }
}