@charset "UTF-8";
/*default*/
.att {
  padding-left: 1em;
  text-indent: -1em;
}

.att02 {
  padding-left: 1.3em;
  text-indent: -1.3em;
}

/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, height 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, width 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}
:root {
  --offset: 20vw;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
}

.bg_image {
  --offset: 20vw;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
}

*::-ms-backdrop, :root {
  --move-initial: 50vw;
  --move-final: -150vw;
}

.marquee {
  width: 100vw;
  overflow: hidden;
}

.marquee__inner {
  width: 100%;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: space-between;
  position: relative;
  transform: translate3d(var(--move-initial), 0, 0);
  animation: marquee 20s linear infinite;
  -webkit-animation: marquee 20s linear infinite;
}
.marquee__inner span {
  display: block;
  width: 100vw;
  margin: 0 3rem;
  flex-shrink: 0;
}
.marquee__inner.life01 span {
  width: 80vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.life01 span {
    width: 100vw;
  }
}
.marquee__inner.life02 span {
  width: 65vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.life02 span {
    width: 100vw;
  }
}
.marquee__inner.rezi04 span {
  width: 50vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.rezi04 span {
    width: 100vw;
  }
}
.marquee__inner.rezi05 span {
  width: 40vw;
}
@media only screen and (max-width: 768px) {
  .marquee__inner.rezi05 span {
    width: 80vw;
  }
}

*::-ms-backdrop, .marquee__inner {
  width: 800vw;
  margin: 0;
  animation: marquee_ie 20s linear infinite;
  -webkit-animation: marquee_ie 20s linear infinite;
}
*::-ms-backdrop span, .marquee__inner span {
  display: block;
  width: 500px;
  margin: 0;
}

@keyframes marquee_ie {
  0% {
    transform: translate3d(0vw, 0, 0);
  }
  100% {
    transform: translate3d(-150vw, 0, 0);
  }
}
@keyframes marquee {
  0% {
    transform: translate3d(var(--move-initial), 0, 0);
  }
  100% {
    transform: translate3d(var(--move-final), 0, 0);
  }
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes loop3 {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes loop4 {
  0% {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0);
  }
}
div.insefa {
  width: 100%;
  overflow: hidden;
  display: flex;
}

.text {
  margin: 0 1rem;
  animation: flowing 40s linear infinite;
  transform: translateX(0%); /*初期位置*/
}

@keyframes flowing {
  100% {
    transform: translateX(-100%);
  }
}
/*! locomotive-scroll v4.1.1 | MIT License | https://github.com/locomotivemtl/locomotive-scroll */
html.has-scroll-smooth {
  overflow: hidden;
}

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.has-scroll-smooth body {
  overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}

[data-scroll-direction=horizontal] [data-scroll-container] {
  height: 100vh;
  display: inline-block;
  white-space: nowrap;
}

[data-scroll-direction=horizontal] [data-scroll-section] {
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  height: 100%;
}

.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 11px;
  height: 100%;
  transform-origin: center right;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
}

.c-scrollbar:hover {
  transform: scaleX(1.45);
}

.c-scrollbar:hover, .has-scroll-dragging .c-scrollbar, .has-scroll-scrolling .c-scrollbar {
  opacity: 1;
}

[data-scroll-direction=horizontal] .c-scrollbar {
  width: 100%;
  height: 10px;
  top: auto;
  bottom: 0;
  transform: scaleY(1);
}

[data-scroll-direction=horizontal] .c-scrollbar:hover {
  transform: scaleY(1.3);
}

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #000;
  opacity: 0.5;
  width: 7px;
  border-radius: 10px;
  margin: 2px;
  cursor: grab;
}

.has-scroll-dragging .c-scrollbar_thumb {
  cursor: grabbing;
}

[data-scroll-direction=horizontal] .c-scrollbar_thumb {
  right: auto;
  bottom: 0;
}

header {
  background-color: transparent;
}
header #header_wrapper .header_inner #logo .txt {
  color: #fff;
}
header #header_wrapper .header_inner #header_menu #sns_icon a svg path {
  fill: #fff;
}

main {
  width: 100%;
  overflow: hidden;
  position: relative;
}

#hero {
  height: 100vh;
  position: relative;
  width: 100%;
}
#hero .copy {
  position: absolute;
  bottom: 25%;
  left: 5%;
  color: #ffffff;
  z-index: 400;
}
@media only screen and (max-width: 768px) {
  #hero .copy {
    top: 35%;
  }
}
#hero .copy .sub-title {
  padding-left: 15px;
  border-left: 4px solid #fff;
}
#hero .copy .sub-title p.enl {
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  #hero .copy .sub-title p.enl {
    font-size: 1.2rem;
  }
}
#hero .copy .sub-title p.jp {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  #hero .copy .sub-title p.jp {
    font-size: 1.6rem;
  }
}
#hero .copy .english {
  display: flex;
  align-items: baseline;
  font-size: 6vw;
  line-height: 1;
  letter-spacing: 0.03em;
  padding: 1rem 0;
}
#hero .copy .english p.enb {
  margin: 0 0.3em 0 0;
}
@media only screen and (max-width: 768px) {
  #hero .copy .english {
    font-size: 16vw;
  }
}
#hero .copy p.serif {
  text-align: left;
}
#hero .copy p.serif img {
  height: 27px;
  width: auto;
}
@media only screen and (max-width: 768px) {
  #hero .copy p.serif img {
    height: 58px;
  }
}

.video-area {
  position: fixed !important;
  z-index: -1;
  /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.video-area:after {
  display: block;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  content: "";
  z-index: 100;
  background: rgba(0, 0, 0, 0.2);
}
.video-area iframe {
  box-sizing: border-box;
  height: 56.25vw;
  /* 16:9 の高さなので 56.25% (= 9 ÷ 16) */
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 177.77777778vh;
  /* 16:9 の幅なので 177.77% (= 16 ÷ 9) */
}
@media only screen and (max-width: 768px) {
  .video-area iframe {
    height: 177.77777778vh;
    /* 9:16 の高さ */
    width: 56.25vw;
    /* 9:16 の幅 */
  }
}

.scwrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5rem;
  z-index: 300;
}
@media only screen and (max-width: 768px) {
  .scwrap {
    bottom: 20rem;
    top: auto;
    right: 3rem;
  }
}
.scwrap p {
  color: #ffffff;
  font-size: 1rem;
  position: absolute;
  top: 0;
  right: -2em;
}

#news {
  padding-block: 60px 80px;
}
@media only screen and (max-width: 768px) {
  #news {
    padding-block: 0px 40px;
  }
}
#news .inner {
  padding: 0 3vw;
  max-width: 1200px;
  margin: auto;
}
#news .news_flex {
  display: flex;
  align-items: center;
  padding: 35px;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 4px;
}
@media only screen and (max-width: 768px) {
  #news .news_flex {
    flex-direction: column;
    padding: 25px 16px;
  }
}
#news .news_flex .title {
  width: 20%;
  max-width: 220px;
  font-size: 2.6rem;
  border-right: 1px solid #D1D1D1;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #news .news_flex .title {
    width: 100%;
    font-size: 1.6rem;
    text-align: left;
    border: none;
    max-width: none;
    margin-bottom: 20px;
  }
}
#news .news_flex .news_main {
  flex: 1;
  padding-left: 5%;
}
@media only screen and (max-width: 768px) {
  #news .news_flex .news_main {
    padding-left: 0;
    width: 100%;
  }
}
#news .news_flex .news_main dl {
  display: flex;
  gap: 24px;
}
#news .news_flex .news_main dl dt {
  width: 80px;
}
#news .news_flex .news_main dl dd {
  flex: 1;
}

#content_block {
  background-color: #EFEFEF;
}
#content_block .inner {
  position: relative;
  max-width: 1200px;
  margin: auto;
  padding: 100px 3vw;
}
@media only screen and (max-width: 768px) {
  #content_block .inner {
    padding: 50px 3vw;
  }
}
#content_block h2 .jp {
  position: relative;
  padding-left: 20px;
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  #content_block h2 .jp {
    font-size: 1.4rem;
  }
}
#content_block h2 .jp::before {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #FFDE33;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#content_block h2 .en {
  font-size: clamp(6rem, 6vw, 7rem);
}
@media only screen and (max-width: 768px) {
  #content_block h2 .en {
    font-size: 2.8rem;
  }
}
#content_block .shadow {
  position: relative;
}
#content_block .shadow .image {
  position: relative;
  display: block;
  overflow: hidden;
}
#content_block .shadow .image::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.4));
}
#content_block .shadow .title {
  position: absolute;
  z-index: 1;
  bottom: 5%;
  left: 5%;
  color: #fff;
  width: 90%;
}
#content_block .link-mark {
  position: relative;
}
@media only screen and (max-width: 768px) {
  #content_block .link-mark {
    font-size: clamp(1rem, 3.8vw, 1.4rem);
    font-weight: 500;
    line-height: 1.5;
    padding-right: 34px;
  }
}
#content_block .link-mark::before {
  content: "";
  display: block;
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background-color: #FFDE33;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
#content_block .link-mark::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 12px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
}
#content_block .swiper-button-wrap {
  position: relative;
  display: flex;
  gap: 60px;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  #content_block .swiper-button-wrap {
    gap: 20px;
  }
}
#content_block .swiper-button-wrap .progress {
  position: relative;
  flex: 1;
  /*
  span {
    background-color: $y;
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateX(0);
    transition: all 0.3s ease;
  }
  */
}
#content_block .swiper-button-wrap .progress::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  top: 50%;
  background-color: #A8A8A8;
}
#content_block .swiper-button-wrap .swiper-buttons {
  width: 122px;
  display: flex;
  gap: 6px;
}
@media only screen and (max-width: 768px) {
  #content_block .swiper-button-wrap .swiper-buttons {
    width: 82px;
  }
}
#content_block .swiper-button-wrap .swiper-buttons .slider-button-prev,
#content_block .swiper-button-wrap .swiper-buttons .slider-button-next {
  width: 58px;
  height: 58px;
  background-color: #000;
  border-radius: 4px;
  color: #fff;
  background-color: #fff;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 768px) {
  #content_block .swiper-button-wrap .swiper-buttons .slider-button-prev,
  #content_block .swiper-button-wrap .swiper-buttons .slider-button-next {
    width: 38px;
    height: 38px;
  }
}
#content_block .swiper-button-wrap .swiper-buttons .slider-button-prev::after,
#content_block .swiper-button-wrap .swiper-buttons .slider-button-next::after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%) rotate(-135deg);
}
#content_block .swiper-button-wrap .swiper-buttons .slider-button-prev:hover,
#content_block .swiper-button-wrap .swiper-buttons .slider-button-next:hover {
  background-color: #3E3E3E;
}
#content_block .swiper-button-wrap .swiper-buttons .slider-button-prev:hover::after,
#content_block .swiper-button-wrap .swiper-buttons .slider-button-next:hover::after {
  border-color: #fff;
}
#content_block .swiper-button-wrap .swiper-buttons .slider-button-next::after {
  transform: rotate(45deg);
  top: 42%;
  left: 38%;
}
@media only screen and (max-width: 768px) {
  #content_block .swiper-button-wrap .swiper-buttons .slider-button-next::after {
    top: 39%;
    left: 29%;
  }
}
#content_block #about {
  padding-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  #content_block #about {
    padding-bottom: 0;
  }
}
#content_block #about #about-slider {
  width: calc(100% + (100vw - 100%) / 2);
  max-width: 100vw;
  overflow: visible;
  padding-right: 35px;
}
#content_block #about #about-slider .swiper-wrapper {
  align-items: flex-start;
}
#content_block #about #about-slider .swiper-slide {
  position: relative;
  transition: 0.2s;
  transform-origin: center top;
  width: 30%;
  margin: 0;
  transition: width 1s ease;
  height: auto;
  -webkit-transform: translate3d(0, 0, 0);
  /*
  &.swiper-slide-active {
    // width: 420px;
    // transform: scale(1);
    width: 420px;
    margin-top: 0;

    @include media(sp) {
      width: 260px;
    }
  }
  */
}
@media screen and (max-width: 1024px) {
  #content_block #about #about-slider .swiper-slide {
    width: 45%;
  }
}
@media screen and (max-width: 600px) {
  #content_block #about #about-slider .swiper-slide {
    width: 80%;
  }
}
#content_block #job {
  background-color: #DDDDDD;
}
#content_block #job.bg {
  background-color: #EFEFEF;
}
@media only screen and (max-width: 768px) {
  #content_block #job {
    padding-bottom: 0;
  }
}
#content_block #job .inner {
  display: flex;
  flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  #content_block #job .inner {
    flex-direction: column;
  }
}
#content_block #job h2 {
  width: 22%;
  padding-left: 5%;
}
@media only screen and (max-width: 768px) {
  #content_block #job h2 {
    width: 100%;
    padding-left: 0;
  }
}
#content_block #job .content_layout {
  width: 78%;
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  #content_block #job .content_layout {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }
}
#content_block #job .content_layout a {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  #content_block #job .content_layout a {
    width: 100%;
  }
}
#content_block #people #people-slider {
  width: calc(100% + (100vw - 100%) / 2);
  max-width: 100vw;
  overflow: visible;
  padding-right: 35px;
}
#content_block #people #people-slider .swiper-wrapper {
  align-items: flex-start;
  margin-bottom: 3rem;
}
#content_block #people #people-slider .swiper-slide {
  position: relative;
  transition: 0.2s;
  transform-origin: center top;
  width: 23%;
  margin: 0;
  transition: width 1s ease;
  height: auto;
  /*
  &.swiper-slide-active {
    // width: 420px;
    // transform: scale(1);
    width: 362px;
    margin-top: 0;

    @include media(sp) {
      width: 260px;
    }
  }
  */
}
@media screen and (max-width: 1024px) {
  #content_block #people #people-slider .swiper-slide {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  #content_block #people #people-slider .swiper-slide {
    width: 45%;
  }
}
@media screen and (max-width: 500px) {
  #content_block #people #people-slider .swiper-slide {
    width: 80%;
  }
}
#content_block #people #people-slider .box .iconss {
  display: none;
}
#content_block #people #people-slider .box .image {
  position: relative;
}
#content_block #people #people-slider .box .image .job {
  position: absolute;
  display: inline-block;
  bottom: 0;
  left: 0;
  background-color: #FFDE33;
  font-size: 1.5rem;
  line-height: 1;
  padding: 12px 15px;
}
@media only screen and (max-width: 768px) {
  #content_block #people #people-slider .box .image .job {
    font-size: 1.2rem;
  }
}
#content_block #people #people-slider .box a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#content_block #people .swiper-button-wrap {
  margin-top: 0;
}
#content_block .readmore_btn {
  text-align: center;
  padding-top: 20px;
}
#content_block .readmore_btn a {
  position: relative;
  display: inline-block;
  background-color: #FFDE33;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  padding: 20px 80px 20px 60px;
  border-radius: 100px;
  transition: 0.3s;
}
#content_block .readmore_btn a:hover {
  background-color: #3E3E3E;
  color: #fff;
}
#content_block .readmore_btn a:hover::after {
  border-color: #fff;
}
#content_block .readmore_btn a i {
  position: absolute;
  right: 40px;
}
#content_block #voice {
  background-color: #DDDDDD;
  padding: 100px 0;
}
@media only screen and (max-width: 768px) {
  #content_block #voice {
    padding: 50px 0;
  }
}
#content_block #voice h2 {
  padding-left: 3vw;
  padding-block: 0;
}
#content_block #voice .content_layout {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#content_block #voice .content_layout a {
  width: 33%;
  margin-bottom: 5px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  #content_block #voice .content_layout a {
    width: 49.5%;
  }
}
#content_block #voice .content_layout a picture {
  line-height: 0;
}
#content_block #voice #interview {
  position: relative;
  max-width: 1200px;
  margin: auto;
  padding: 100px 3vw 0;
}
@media only screen and (max-width: 768px) {
  #content_block #voice #interview {
    padding: 50px 3vw 0;
  }
}
#content_block #voice #interview h2 {
  position: relative;
  padding-left: 20px;
  font-size: 2.3rem;
  margin-bottom: 40px;
}
#content_block #voice #interview h2::before {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #FFDE33;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#content_block #voice #interview #interview-slider {
  width: calc(100% + (100vw - 100%) / 2);
  max-width: 100vw;
  overflow: visible;
  padding-right: 35px;
}
#content_block #voice #interview #interview-slider .swiper-slide {
  position: relative;
  max-width: 400px;
  flex-shrink: 0;
  transition: 0.2s;
  transform-origin: center top;
  margin-right: 33px;
}
@media only screen and (max-width: 768px) {
  #content_block #voice #interview #interview-slider .swiper-slide {
    width: 70%;
  }
}
#content_block #voice #interview #interview-slider .swiper-slide .title {
  position: relative;
  bottom: auto;
  left: auto;
  color: #3E3E3E;
  margin-top: -24px;
}
#content_block #voice #interview #interview-slider .swiper-slide .title .cat {
  display: inline-block;
  background-color: #3E3E3E;
  color: #fff;
  line-height: 1;
  padding: 12px 18px;
  margin-bottom: 10px;
}
#content_block #challenge {
  padding-bottom: 40px;
}
#content_block #challenge #challenge-slider {
  width: calc(100% + (100vw - 100%) / 2);
  max-width: 100vw;
  margin-bottom: 3rem;
  overflow: visible;
  padding-right: 35px;
}
#content_block #challenge #challenge-slider .swiper_wrap {
  align-items: flex-start;
}
#content_block #challenge #challenge-slider .swiper-slide {
  position: relative;
  transition: 0.2s;
  transform-origin: center top;
  padding-top: 15px;
  width: 42%;
  margin: 0;
  transition: width 1s ease;
  height: auto;
  /*
  &.swiper-slide-active {
    width: 590px;
    margin-top: 0;

    @include media(sp) {
      width: 300px;
    }
  }
  */
}
@media screen and (max-width: 940px) {
  #content_block #challenge #challenge-slider .swiper-slide {
    width: 75%;
  }
}
@media only screen and (max-width: 768px) {
  #content_block #challenge #challenge-slider .swiper-slide {
    width: 80%;
  }
}
#content_block #challenge #challenge-slider .swiper-slide .cat {
  display: inline-block;
  background-color: #3E3E3E;
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  padding: 12px 18px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  #content_block #challenge #challenge-slider .swiper-slide .cat {
    font-size: 1.4rem;
    white-space: nowrap;
  }
}
#content_block #challenge #challenge-slider .swiper-slide .image {
  position: relative;
}
#content_block #challenge .swiper-button-wrap {
  margin-top: 0;
}
#content_block #workstyle {
  background-color: #DDDDDD;
  position: relative;
}
#content_block #workstyle .inner {
  padding: 0;
}
#content_block #workstyle .content_layout {
  display: flex;
}
@media only screen and (max-width: 768px) {
  #content_block #workstyle .content_layout {
    flex-direction: column;
  }
}
#content_block #workstyle .content_layout .txt {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 100px;
  padding-inline: 3vw;
}
@media only screen and (max-width: 768px) {
  #content_block #workstyle .content_layout .txt {
    width: 100%;
    padding: 50px 3vw 20px;
  }
}
#content_block #workstyle .content_layout .txt ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
#content_block #workstyle .content_layout .txt ul li {
  width: 49%;
  margin-bottom: 12px;
}
#content_block #workstyle .content_layout .txt ul li a {
  position: relative;
  display: block;
  background-color: #fff;
  border-radius: 4px;
  padding: 10px;
  padding-right: 50px;
  font-size: clamp(1.3rem, 1.3vw, 1.6rem);
  line-height: 1.3;
  height: 60px;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
@media only screen and (max-width: 768px) {
  #content_block #workstyle .content_layout .txt ul li a {
    padding-right: 60px;
  }
}
#content_block #workstyle .content_layout .txt ul li a:hover {
  background-color: #3E3E3E;
  color: #fff;
}
#content_block #workstyle .content_layout .txt ul li a::before {
  right: 10px;
  width: 40px;
  height: 40px;
}
#content_block #workstyle .content_layout .txt ul li a::after {
  right: 28px;
}
#content_block #workstyle .content_layout .image {
  position: absolute;
  left: 55%;
  top: 0;
  height: 100%;
  width: 50vw;
  background: url(/company/recruitment/assets/img/top/workstyle04.jpg) no-repeat center center/cover;
}
@media only screen and (max-width: 768px) {
  #content_block #workstyle .content_layout .image {
    width: 100%;
    margin: 0;
    padding: 0;
    background: none !important;
    position: static;
    height: auto;
  }
}
#content_block #workstyle .content_layout .image span {
  display: block;
  width: 100%;
  height: 100%;
  background: url(/company/recruitment/assets/img/top/workstyle04.jpg) no-repeat center center/cover;
}
@media only screen and (max-width: 768px) {
  #content_block #workstyle .content_layout .image span {
    display: none;
  }
}
#content_block #workstyle .content_layout .image#workstyle04 {
  background-position: right center;
}
#content_block #workstyle .content_layout .image#workstyle04 span {
  background-position: right center;
}
#content_block #recruit .content_layout {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  #content_block #recruit .content_layout {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
#content_block #recruit .content_layout h2 {
  width: 30%;
}
#content_block #recruit .content_layout .link {
  position: relative;
  width: 70%;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
}
@media only screen and (max-width: 768px) {
  #content_block #recruit .content_layout .link {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
}
#content_block #recruit .content_layout .link .image {
  width: 65%;
  transition: 0.3s;
}
@media only screen and (max-width: 768px) {
  #content_block #recruit .content_layout .link .image {
    width: 100%;
  }
  #content_block #recruit .content_layout .link .image a {
    position: relative;
    display: block;
  }
  #content_block #recruit .content_layout .link .image a::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7));
  }
}
#content_block #recruit .content_layout .link .image:hover {
  opacity: 0.8;
}
#content_block #recruit .content_layout .link .title {
  width: 35%;
  border-left: 1px solid #000;
  padding-left: 3%;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  #content_block #recruit .content_layout .link .title {
    position: absolute;
    bottom: 5%;
    left: 5%;
    color: #fff;
    border-color: #fff;
  }
}
#content_block #recruit .content_layout .link .title .sub {
  font-size: clamp(1.5rem, 1.5vw, 1.8rem);
}
#content_block #recruit .content_layout .link .title h3 {
  font-size: clamp(2rem, 2vw, 2.5rem);
}
#content_block #recruit .links_layout {
  display: flex;
  gap: 22px;
}
@media only screen and (max-width: 768px) {
  #content_block #recruit .links_layout {
    flex-wrap: wrap;
    gap: 0;
    justify-content: space-between;
  }
}
#content_block #recruit .links_layout .box {
  width: 25%;
  border-radius: 4px;
  background-color: #707070;
  color: #fff;
  transition: 0.3s;
}
@media only screen and (max-width: 768px) {
  #content_block #recruit .links_layout .box {
    width: 49%;
    margin-bottom: 2%;
  }
}
#content_block #recruit .links_layout .box:hover {
  background-color: #FFDE33;
  color: #3E3E3E;
}
#content_block #recruit .links_layout .box:hover .title {
  border-bottom: 1px solid rgba(62, 62, 62, 0.4);
}
#content_block #recruit .links_layout .box:hover .title .image .fill {
  fill: #707070;
}
#content_block #recruit .links_layout .box:hover .link-mark::before {
  background-color: #fff;
}
#content_block #recruit .links_layout .box .title {
  text-align: center;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
@media only screen and (max-width: 768px) {
  #content_block #recruit .links_layout .box .title {
    padding: 0 0 20px;
  }
}
#content_block #recruit .links_layout .box .title .image {
  max-width: 78px;
  text-align: center;
  margin: auto;
  line-height: 0;
}
#content_block #recruit .links_layout .box .title .image .fill {
  transition: 0.3s;
  fill: #fff;
}
#content_block #recruit .links_layout .box .title h3 {
  font-size: 1.7rem;
}
#content_block #recruit .links_layout .box .link-mark {
  text-align: center;
  padding: 25px;
}
@media only screen and (max-width: 768px) {
  #content_block #recruit .links_layout .box .link-mark {
    padding: 15px 30px 15px 15px;
  }
}
#content_block #recruit .links_layout .box .link-mark::before {
  right: 25px;
}
#content_block #recruit .links_layout .box .link-mark::after {
  right: 37px;
}
#content_block #more-nikon {
  background-color: #CFCFCF;
}
@media only screen and (max-width: 768px) {
  #content_block #more-nikon {
    padding: 0;
  }
}
#content_block #more-nikon h2 small {
  font-size: 1.2rem;
  margin-left: 20px;
}
@media only screen and (max-width: 768px) {
  #content_block #more-nikon h2 small {
    display: block;
    margin-bottom: 20px;
    margin-left: 0;
  }
}
#content_block #more-nikon .content_layout {
  display: flex;
  gap: 35px;
}
@media only screen and (max-width: 768px) {
  #content_block #more-nikon .content_layout {
    flex-direction: column;
  }
}
#content_block #more-nikon .content_layout a {
  width: 33.333%;
}
@media only screen and (max-width: 768px) {
  #content_block #more-nikon .content_layout a {
    width: 100%;
    margin-bottom: 20px;
  }
}
#content_block #more-nikon .content_layout a .image {
  margin-bottom: 0px;
}

#career #content_block #voice a.wide {
  width: 49.666%;
}
@media only screen and (max-width: 768px) {
  #career #content_block #voice a.wide {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  #career #content_block #voice a.wide-sp {
    width: 100%;
  }
}
#career #content_block #recruit .links_layout .box {
  width: 33.3333%;
}
@media only screen and (max-width: 768px) {
  #career #content_block #recruit .links_layout .box {
    width: 49.5%;
  }
}

body.pad #content_block .swiper .swiper-slide .image {
  overflow: visible !important;
}
body.pad #content_block .swiper .swiper-slide .image::after {
  content: none !important;
}
body.pad #content_block .swiper .swiper-slide .image img {
  transform: none !important;
}
body.pad #content_block .swiper .swiper-slide .title {
  width: 100%;
  position: static;
  margin-top: 10px;
  color: #000;
}
body.pad #content_block #people #people-slider .box .image .job {
  position: static;
  margin-top: 10px;
}
body.pad #content_block #voice #interview #interview-slider .swiper-slide .title {
  margin-top: 10px;
}