@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;
}

main section.int_wrap {
  padding: 0 0 0 3vw;
}
main section.int_wrap .in {
  border-left: 1px solid #ccc;
}
main span.sup {
  font-size: 0.7em;
  vertical-align: top;
  display: inline-block;
}
main .cross_title {
  text-align: center;
  margin: 5rem 0 10rem 0;
}
@media only screen and (max-width: 768px) {
  main .cross_title {
    margin: 3rem 0;
  }
}
main .cross_title h1 {
  font-size: 3.6rem;
}
@media only screen and (max-width: 768px) {
  main .cross_title h1 {
    font-size: 2rem;
  }
}
main #int_visual {
  position: relative;
  padding: 0 0 10rem 0;
}
@media only screen and (max-width: 768px) {
  main #int_visual {
    padding: 0 0 8vw 0;
  }
}
main #int_visual .bgb {
  display: block;
  position: absolute;
  width: 50%;
  height: 95%;
  top: 10rem;
  left: 50%;
  content: "";
  z-index: 0;
  background: #FEE200;
}
@media only screen and (max-width: 768px) {
  main #int_visual .bgb {
    display: none;
  }
}
main #int_visual .image {
  width: 80%;
  margin: 0 0 0 auto;
}
@media only screen and (max-width: 768px) {
  main #int_visual .image {
    width: 100%;
    margin: 0 0 0 0;
  }
}
main #int_visual .copys {
  background: #ffffff;
  width: 30%;
  padding: 5rem 5rem 5rem 2rem;
  position: absolute;
  top: 45%;
  left: 3vw;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  main #int_visual .copys {
    position: static;
    transform: none;
    width: 100%;
    padding: 0;
    background: #ffffff;
    padding: 5vw 8vw 0 8vw;
  }
}
main #int_visual .copys h1 {
  font-size: 1.2rem;
  margin: 0 0 3rem 0;
}
@media only screen and (max-width: 768px) {
  main #int_visual .copys h1 {
    margin: 0 0 1rem 0;
  }
}
main #int_visual .copys .copy h2 {
  font-weight: 500;
  font-size: 2.4rem;
  margin: 0 0 3rem 0;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-size: clamp(2rem, 1.8vw, 2.8rem);
}
main #int_visual .copys .prof .name {
  position: relative;
}
main #int_visual .copys .prof .name p.jp {
  font-size: 2rem;
  font-weight: 500;
}
main #int_visual .copys .prof .name:after {
  content: "";
  width: 3rem;
  height: 1px;
  display: block;
  margin: 1rem 0;
  background: #ccc;
}
main #int_visual .copys .prof .profile {
  font-size: 1.3rem;
  line-height: 1.6;
  margin: 0 0 3rem 0;
}
main #int_visual .copys .prof .jobs h3 {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
main #int_visual .copys .prof .jobs h3:after {
  flex: 1;
  content: "";
  width: 100%;
  margin: 0 0 0 1rem;
  height: 1px;
  display: block;
  background: #ccc;
}
main .profbox {
  background: #F8F8F8;
  padding: 5rem;
  position: relative;
  z-index: 4;
  max-width: 1200px;
  margin: 0 auto 10rem auto;
}
@media only screen and (max-width: 768px) {
  main .profbox {
    padding: 8vw;
    margin: 0 0 0 0;
  }
}
main .profbox .title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px dotted #ccc;
  margin: 0 0 3rem 0;
  padding: 0 0 1rem 0;
}
main .profbox .title .left p.enb {
  font-size: 2rem;
}
main .profile_flex {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  main .profile_flex {
    display: block;
  }
}
main .profile_flex .left {
  width: 48%;
}
@media only screen and (max-width: 768px) {
  main .profile_flex .left {
    width: 100%;
  }
}
main .profile_flex .left h3 {
  font-weight: bold;
  margin: 0 0 1rem 0;
}
main .profile_flex .left .txtblock {
  margin: 0 0 2rem 0;
}
main .profile_flex .right {
  width: 48%;
}
@media only screen and (max-width: 768px) {
  main .profile_flex .right {
    width: 100%;
  }
}
main .profile_flex .right.wide {
  width: 100%;
}
main .profile_flex .right h3 {
  margin: 0 0 1rem 0;
}
main .int_main {
  margin: 0 0 10rem 0;
  position: relative;
  z-index: 5;
}
@media only screen and (max-width: 768px) {
  main .int_main {
    margin: 0 0 5rem 0;
  }
}
main .int_main p.detail {
  font-size: 1.2rem;
}
main .int_main .int_flex {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  main .int_main .int_flex {
    display: block;
  }
}
main .int_main .int_flex.rv {
  flex-direction: row-reverse;
  margin: 0 0 15rem 0;
}
@media only screen and (max-width: 768px) {
  main .int_main .int_flex.rv {
    margin: 0 0 5rem 0;
  }
}
main .int_main .int_flex.rv .txt {
  padding: 0 10vw 0 0;
}
@media only screen and (max-width: 768px) {
  main .int_main .int_flex.rv .txt {
    padding: 0 8vw;
  }
}
main .int_main .int_flex.wide {
  flex-direction: row;
}
main .int_main .int_flex.wide .txt {
  width: 40%;
}
@media only screen and (max-width: 768px) {
  main .int_main .int_flex.wide .txt {
    width: 100%;
  }
}
main .int_main .int_flex.wide .images {
  width: 60%;
}
@media only screen and (max-width: 768px) {
  main .int_main .int_flex.wide .images {
    width: 100%;
  }
}
main .int_main .int_flex .txt {
  width: 50%;
  padding: 0 5vw;
}
main .int_main .int_flex .txt p {
  margin: 0 0 1rem 0;
}
main .int_main .int_flex .txt p.detail {
  margin: 0;
}
@media only screen and (max-width: 768px) {
  main .int_main .int_flex .txt {
    width: 100%;
    padding: 0 8vw;
  }
}
main .int_main .int_flex .txt h3 {
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.07em;
  font-size: 2.4rem;
  margin: 0 0 2rem 0;
}
@media only screen and (max-width: 768px) {
  main .int_main .int_flex .txt h3 {
    font-size: 2rem;
    text-align: center;
  }
}
main .int_main .int_flex .txt .intbox {
  margin: 0 0 2rem 0;
}
main .int_main .int_flex .txt .intbox h4 {
  font-weight: 500;
  position: relative;
  display: flex;
  margin: 0 0 2rem 0;
}
main .int_main .int_flex .txt .intbox h4::before {
  background: #000;
  margin: 0.8em 1rem 0 0;
  content: "";
  width: 2rem;
  height: 1px;
  display: block;
}
main .int_main .int_flex .images {
  width: 48%;
  padding: 0 5vw 0 3vw;
}
@media only screen and (max-width: 768px) {
  main .int_main .int_flex .images {
    width: 100%;
    padding: 0;
    margin: 0 0 3rem 0;
  }
}
main .int_main .int_flex .images .image01 {
  margin: 0 0 5rem 0;
}
@media only screen and (max-width: 768px) {
  main .int_main .int_flex .images .image01 {
    width: 100%;
    padding: 0;
    margin: 0;
  }
}
main .int_main .int_flex .images .image02 {
  width: 60%;
  margin: 0 0 0 auto;
}
@media only screen and (max-width: 768px) {
  main .int_main .int_flex .images .image02 {
    width: 100%;
    padding: 0;
    margin: 0;
  }
}
main .midimage {
  position: relative;
  padding: 5rem 0 7rem 0;
  margin: 0 0 15rem 0;
}
@media only screen and (max-width: 768px) {
  main .midimage {
    padding: 0;
    margin: 0 0 3rem 0;
  }
}
@media only screen and (max-width: 768px) {
  main .midimage img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 200px;
  }
}
main .midimage:before {
  display: block;
  position: absolute;
  width: 50%;
  height: 95%;
  top: 10rem;
  left: 50%;
  content: "";
  z-index: 0;
  background: #FEE200;
}
@media only screen and (max-width: 768px) {
  main .midimage:before {
    display: none;
  }
}
main .midimage:after {
  display: block;
  position: absolute;
  width: 50%;
  height: 95%;
  top: -5rem;
  left: 0%;
  content: "";
  z-index: 0;
  background: #FEE200;
}
@media only screen and (max-width: 768px) {
  main .midimage:after {
    display: none;
  }
}
main .midimage .image {
  position: relative;
  z-index: 3;
}
main .aritai {
  position: relative;
  z-index: 5;
}
main .aritai.bon {
  background: #FEE200;
  padding: 5rem 0;
}
@media only screen and (max-width: 768px) {
  main .aritai.bon {
    padding: 2rem;
  }
}
main .aritai .inner {
  background: #ffffff;
  width: 800px;
  padding: 10rem;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  main .aritai .inner {
    width: 100%;
    padding: 8vw;
  }
}
main .aritai .inner h3 {
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.07em;
  font-size: 2.4rem;
  position: relative;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  main .aritai .inner h3 {
    font-size: 2rem;
  }
}
main .aritai .inner h3:after {
  content: "";
  width: 3rem;
  height: 1px;
  display: block;
  margin: 2rem auto;
  background: #ccc;
}
main .aritai .inner h4 {
  font-weight: bold;
  margin: 0 0 1em 0;
  text-align: center;
}
main .offs {
  position: relative;
  padding: 0 5vw;
}
@media only screen and (max-width: 768px) {
  main .offs {
    padding: 2rem;
  }
}
main .offs .inner {
  position: relative;
  padding: 8rem 0 20rem 0;
}
@media only screen and (max-width: 768px) {
  main .offs .inner {
    padding: 8vw;
  }
}
main .offs .inner:after {
  display: block;
  position: absolute;
  width: 50%;
  height: 95%;
  top: 5rem;
  left: 55%;
  content: "";
  z-index: 0;
  background: #FEE200;
}
main .offs .bgb {
  display: block;
  position: absolute;
  width: 100%;
  height: 110%;
  top: -20%;
  left: 0;
  content: "";
  z-index: 1;
  background: #F8F8F8;
}
@media only screen and (max-width: 768px) {
  main .offs .bgb {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    z-index: 1;
  }
}
main .offs .off_box {
  width: 500px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  main .offs .off_box {
    width: 100%;
  }
}
main .offs .off_box p.cap {
  font-size: 1.2rem;
}
main .offs .title {
  display: flex;
  position: relative;
  z-index: 4;
  justify-content: space-between;
  margin: 0 0 2rem 0;
}
main .offs .title p.jp {
  font-weight: bold;
}
main .offs .image {
  position: relative;
  z-index: 3;
  margin: 0 0 2rem 0;
}
main .offs .txt {
  position: relative;
  z-index: 5;
}
main .back_btn {
  padding: 10rem 0;
  text-align: center;
}
main .back_btn a {
  border: 1px solid #ccc;
  padding: 2rem 10rem;
  display: inline-block;
  border-radius: 50px;
  transition: all 0.3s ease;
}
main .back_btn a:hover {
  background: #FEE200;
}
main .back_btn a i {
  display: inline-block;
  margin: 0 2rem 0 0;
}
main .interview_list .inner {
  padding: 0 8vw;
}
main .detailtxt {
  padding: 8vw 8vw 0 8vw;
}
main .detailtxt p {
  font-size: 1.2rem;
  text-align: center;
}
main .moviewrap {
  background: #FEE200;
  margin: 5rem 0 0 0;
  padding: 5rem 0;
}
main .moviewrap .title {
  text-align: center;
  margin: 0 0 2rem 0;
}
main .moviewrap h3 {
  font-weight: bold;
  text-align: center;
  margin: 0;
  font-size: 2rem;
}
main .moviewrap a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 300;
}
main .moviewrap .image {
  width: 600px;
  margin: auto;
  position: relative;
}
@media only screen and (max-width: 768px) {
  main .moviewrap .image {
    width: 100%;
  }
}
main .moviewrap .image .images {
  position: relative;
}
main .moviewrap .image .images:after {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 3;
  background: rgba(0, 0, 0, 0.3);
}
main .moviewrap .image .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 4rem;
  color: #ffffff;
  z-index: 5;
  transition: all 0.3s ease;
}
main .moviewrap .image .icon i {
  display: inline-block;
}
main section.movies .inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 5vw;
}
main section.movies .movies_flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  main section.movies .movies_flex {
    display: block;
  }
}
main section.movies .movies_flex .box {
  width: 46%;
  margin: 0 0 5rem 0;
  position: relative;
}
main section.movies .movies_flex .box .title_bar {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
main section.movies .movies_flex .box .title_bar .iconss ul {
  display: flex;
  align-items: center;
}
main section.movies .movies_flex .box .title_bar .iconss ul li {
  display: inline-block;
  background: #ffffff;
  border: 1px solid #ccc;
  color: #000;
  padding: 0.2rem 0.5rem;
  margin: 0 10px 0 0;
  font-weight: 500;
  font-size: 1.3rem;
  border-radius: 5px;
}
@media only screen and (max-width: 768px) {
  main section.movies .movies_flex .box .title_bar .iconss ul li {
    font-size: 1.2rem;
    margin: 0 5px 0 0;
  }
}
main section.movies .movies_flex .box .title_bar .iconss ul li.job01 {
  background: #004AAC;
  color: #ffffff;
  border: none;
}
main section.movies .movies_flex .box .title_bar .iconss ul li.job02 {
  background: #EB8725;
  color: #ffffff;
  border: none;
}
main section.movies .movies_flex .box .title_bar .iconss ul li.job03 {
  background: #00ACC3;
  color: #ffffff;
  border: none;
}
main section.movies .movies_flex .box .title_bar .iconss ul li.job04 {
  background: #4B008A;
  color: #ffffff;
  border: none;
}
main section.movies .movies_flex .box .title_bar .iconss ul li.job05 {
  background: #C51522;
  color: #ffffff;
  border: none;
}
main section.movies .movies_flex .box .title_bar .iconss ul li.job06 {
  background: #8FBB10;
  color: #ffffff;
  border: none;
}
main section.movies .movies_flex .box .title_bar .iconss ul li.job09 {
  background: #333;
  color: #ffffff;
  border: none;
}
main section.movies .movies_flex .box .title_bar .title {
  display: flex;
  align-items: center;
  margin: 0 30px 0 0;
}
main section.movies .movies_flex .box .title_bar .title .icon {
  width: 40px;
  margin: 0 2rem 0 0;
}
main section.movies .movies_flex .box .title_bar .title p.en {
  font-size: 3rem;
  color: #000;
}
@media only screen and (max-width: 768px) {
  main section.movies .movies_flex .box .title_bar .title p.en {
    font-size: 2rem;
  }
}
main section.movies .movies_flex .box .title_bar .title p.en span {
  display: inline-block;
  margin: 0 0 0 1rem;
  font-size: 3.2rem;
}
@media only screen and (max-width: 768px) {
  main section.movies .movies_flex .box .title_bar .title p.en span {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  main section.movies .movies_flex .box {
    width: 100%;
  }
}
main section.movies .movies_flex .box a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 300;
}
main section.movies .movies_flex .box .image {
  position: relative;
}
@media only screen and (max-width: 768px) {
  main section.movies .movies_flex .box .image {
    width: 100%;
  }
}
main section.movies .movies_flex .box .image .images {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
main section.movies .movies_flex .box .image .images:after {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 3;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
main section.movies .movies_flex .box .image .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 5rem;
  color: #ffffff;
  z-index: 5;
  opacity: 1;
  line-height: 1.4;
  transition: all 0.3s ease;
  color: #FEE200;
}
@media only screen and (max-width: 768px) {
  main section.movies .movies_flex .box .image .icon {
    opacity: 1;
    color: #FEE200;
  }
}
main section.movies .movies_flex .box .image .icon p {
  font-size: 1.4rem;
  text-align: center;
}
main section.movies .movies_flex .box:hover .image .images:after {
  background: rgba(0, 0, 0, 0.2);
}
main section.movies .movies_flex .box:hover .image .icon {
  opacity: 1;
  color: #FEE200;
  transform: translateX(-50%) translateY(-50%) scale(1.2);
}
main section.movies .movies_flex .box .txts h3 {
  font-weight: bold;
  margin: 0 0 1rem 0;
  letter-spacing: 0.05em;
  padding: 1rem;
  font-size: 2rem;
  color: #000;
}
main section.movies .movies_flex .box .job {
  position: relative;
  z-index: 9;
  font-size: 1.8rem;
  padding: 0 1rem;
  display: inline-block;
  background: #FEE200;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  main section.movies .movies_flex .box .job {
    font-size: 1.4rem;
  }
}
main section.movies .movies_flex .box .name {
  font-size: 2rem;
  margin: 0 0 0 0;
}
@media only screen and (max-width: 768px) {
  main section.movies .movies_flex .box .name {
    font-size: 1.6rem;
    margin: 0 0 0.5rem 0;
  }
}
main section.movies .movies_flex .box .name i {
  display: inline-block;
  margin: 0 0 0 1.5rem;
}
main section.movies .movies_flex .box .profile {
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  main section.movies .movies_flex .box .profile {
    font-size: 1.3rem;
  }
}
main #searchbox {
  margin: 0 0 5rem 0;
  padding: 3rem 0;
}
@media only screen and (max-width: 768px) {
  main #searchbox {
    padding: 2rem 0;
  }
}
main #searchbox .label {
  font-weight: bold;
  margin: 0 3rem 0 0;
}
@media only screen and (max-width: 768px) {
  main #searchbox .label {
    text-align: center;
    margin: 0 0 1rem 0;
  }
}
main #searchbox .row {
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 900px;
  margin: auto;
  padding: 1rem 0;
  gap: 1rem;
}
@media only screen and (max-width: 768px) {
  main #searchbox .row {
    display: block;
    padding: 0.5rem 0;
  }
}
main #searchbox .btns {
  flex: 1;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  main #searchbox .btns {
    padding: 0;
  }
}
main #searchbox .btns.hash {
  padding: 0 0 0 60px;
}
@media only screen and (max-width: 768px) {
  main #searchbox .btns.hash {
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  main #searchbox .btns {
    padding: 0;
  }
}
main .btns,
main .reset {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  main .btns,
  main .reset {
    width: 100%;
    justify-content: center;
  }
}
main .btns.hash,
main .reset.hash {
  padding: 0 0 0 30px;
}
main .btns.hash a,
main .reset.hash a {
  border: none;
  border-radius: 100px;
  background: #efefef;
  margin: 0 10px 1.5px 0;
  padding: 0.1px 20px;
  background: #ffffff;
}
main .btns.hash a:hover,
main .btns.hash a .active,
main .reset.hash a:hover,
main .reset.hash a .active {
  background: #333;
}
main .btns a,
main .reset a {
  display: block;
  background: #fff;
  font-weight: 500;
  margin: 0 1rem 0 0;
  cursor: pointer;
  display: block;
  padding: 0.5rem 2rem;
  border: 1px solid #eee;
  border-radius: 5px;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 768px) {
  main .btns a,
  main .reset a {
    padding: 0.7rem 10px;
    margin: 0 1px 10px 0;
    font-size: 1.2rem;
  }
}
main .btns a:hover, main .btns a.is-checked,
main .reset a:hover,
main .reset a.is-checked {
  background: #FEE200;
  color: #000;
}
main .interviews_flex,
main .swiper-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 0 -1%;
}
main .interviews_flex .box,
main .swiper-container .box {
  width: 23%;
  position: relative;
  margin: 0 1% 3rem 1%;
}
main .interviews_flex .box .iconss,
main .swiper-container .box .iconss {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-block;
  margin: 0 0.5em 0 0;
  z-index: 100;
  display: none !important;
}
main .interviews_flex .box .iconss p,
main .swiper-container .box .iconss p {
  background: #ffffff;
  color: #000;
  font-size: 1.3rem;
  display: inline-block;
  line-height: 1;
  padding: 0.5rem;
  transform: translateY(-0.1em);
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  main .interviews_flex .box,
  main .swiper-container .box {
    width: 48%;
  }
}
main .interviews_flex .box a,
main .swiper-container .box a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 300;
}
main .interviews_flex .box .job,
main .swiper-container .box .job {
  transform: translateY(-1em);
  margin: 0 0 0em 0;
  font-weight: 500;
  display: inline-block;
  background: #FEE200;
  color: #000;
}
main .interviews_flex .box .job p,
main .swiper-container .box .job p {
  display: inline-block;
  padding: 0 0.5rem;
}
@media only screen and (max-width: 768px) {
  main .interviews_flex .box .job p,
  main .swiper-container .box .job p {
    font-size: 1rem;
  }
}
main .interviews_flex .box .name,
main .swiper-container .box .name {
  font-size: 2rem;
  margin: 0 0 1rem 0;
}
@media only screen and (max-width: 768px) {
  main .interviews_flex .box .name,
  main .swiper-container .box .name {
    font-size: 1.6rem;
    margin: 0 0 0.5rem 0;
  }
}
main .interviews_flex .box .name i,
main .swiper-container .box .name i {
  display: inline-block;
  margin: 0 0 0 1.5rem;
}
main .interviews_flex .box .profile,
main .swiper-container .box .profile {
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  main .interviews_flex .box .profile,
  main .swiper-container .box .profile {
    font-size: 1.3rem;
  }
}