@charset "UTF-8";
main {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 3;
  display: block;
}

#intro {
  position: fixed;
  background: #ffffff;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 9000;
  overflow: hidden;
  opacity: 1;
  transition: opacity 1s ease-out;
}
#intro.fade-out {
  opacity: 0;
}
#intro.hidden {
  display: none;
}
#intro #skipbtn {
  position: fixed;
  z-index: 1000;
  display: block;
  width: 80px;
  height: 80px;
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 30px;
  right: 30px;
  cursor: pointer;
}

body.intro-active {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
  height: 100vh;
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}
body.intro-active::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
}
body.intro-active #intro {
  pointer-events: auto;
}
body.intro-active #intro .copys {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

body.intro-scrolling {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
body.intro-scrolling #intro {
  pointer-events: auto;
}
body.intro-scrolling #intro .copys {
  pointer-events: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

#intro .copys {
  height: 100vh;
  overflow-y: hidden;
  scroll-behavior: auto;
  position: relative;
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
  /*
  &.auto-scrolling {
    overflow-y: auto;
    pointer-events: none; // ユーザー操作を無効化
    user-select: none;
  }
  */
}
#intro .copys::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}
#intro .copys::-webkit-scrollbar-track {
  display: none !important;
}
#intro .copys::-webkit-scrollbar-thumb {
  display: none !important;
}

#intro .inners {
  text-align: center;
  padding: 50vh 3vw 0rem 3vw;
  min-height: 180vh;
}
@media screen and (max-width: 767px) {
  #intro .inners {
    padding-top: 40vh;
  }
}
#intro .inners .mcopy {
  width: 600px;
  max-width: 90%;
  margin: 0 auto 5rem auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0s forwards;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  position: relative;
}
#intro .inners .mcopy img {
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  position: relative;
}
#intro .inners .txts {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.5s ease-out 1.5s forwards;
}
#intro .inners .txts p {
  font-size: clamp(1.6rem, 1.136rem + 0.6vw, 2rem);
  line-height: 1.8;
  margin: 0 0 1em 0;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(20px);
}
@media screen and (max-width: 767px) {
  #intro .inners .txts p {
    font-size: 16px;
  }
}
#intro .inners .txts p:nth-child(1) {
  animation: fadeInUp 1s ease-out 1.8s forwards;
}
#intro .inners .txts p:nth-child(2) {
  animation: fadeInUp 1s ease-out 2.1s forwards;
}
#intro .inners .txts p:nth-child(3) {
  animation: fadeInUp 1s ease-out 2.4s forwards;
}
#intro .inners .txts p:nth-child(4) {
  animation: fadeInUp 1s ease-out 2.7s forwards;
}
#intro .inners .txts p:nth-child(5) {
  animation: fadeInUp 1s ease-out 3s forwards;
}
#intro .inners .txts p:nth-child(6) {
  animation: fadeInUp 1s ease-out 3.3s forwards;
}
#intro .inners .txts p:nth-child(7) {
  animation: fadeInUp 1s ease-out 3.6s forwards;
}
#intro .inners .txts p:nth-child(8) {
  animation: fadeInUp 1s ease-out 3.9s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#flow_btn {
  position: fixed;
  bottom: 10rem;
  right: 2.5vw;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
@media screen and (max-width: 767px) {
  #flow_btn {
    bottom: 5rem;
  }
}
#flow_btn.show {
  opacity: 1;
  visibility: visible;
}
#flow_btn a {
  width: 150px;
  height: 150px;
  display: block;
  border-radius: 50%;
  background: #FF0000;
  color: #ffffff;
  text-align: center;
  line-height: 150px;
  font-weight: bold;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  #flow_btn a {
    width: 90px;
    height: 90px;
    font-size: 12px;
    line-height: 90px;
  }
}
#flow_btn a:hover {
  background: #be0030;
}

#hero {
  min-height: 100vh;
  margin: 90px 0 0 0;
  padding: 0 3vw;
}
@media screen and (max-width: 767px) {
  #hero {
    min-height: auto;
    margin: 0 0 45px;
    padding-top: 40px;
  }
}
#hero .hero_txt {
  margin: 10rem 0 10rem 0;
}
@media screen and (max-width: 767px) {
  #hero .hero_txt {
    margin: 0 0 2rem 0;
  }
}
#hero .hero_txt h1 {
  font-size: 1.6rem;
}
#hero .hero_txt .en {
  font-size: 1.2rem;
}
#hero .main_copy {
  width: 65%;
  margin: 0 0 2rem 0;
}

#visual {
  position: relative;
  overflow: hidden;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #visual {
    height: calc(100vh - 310px);
  }
  #visual img {
    height: 50vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#visual .visual-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  scale: 1.1;
}
#visual .visual-slide.active {
  opacity: 1;
  position: relative;
}

#topics .in {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: auto;
  padding: 5rem 3vw;
}
@media screen and (max-width: 767px) {
  #topics .in {
    display: block;
    padding: 5vw;
  }
}
#topics .topictitle {
  font-size: clamp(4rem, 1.68rem + 3vw, 6rem);
  letter-spacing: 0.1em;
  flex: 1;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #topics .topictitle {
    margin: 0 0 1rem 0;
  }
}
#topics .topicmain {
  width: 600px;
}
@media screen and (max-width: 767px) {
  #topics .topicmain {
    width: 100%;
  }
}
#topics .topicmain .olds {
  display: none;
}
#topics .topicmain dl {
  display: flex;
  margin: 0 0 1rem 0;
  font-size: clamp(1.1rem, 0.868rem + 0.3vw, 1.3rem);
}
@media screen and (max-width: 767px) {
  #topics .topicmain dl {
    display: block;
  }
}
#topics .topicmain dl dt {
  width: 20%;
}
#topics .topicmain dl dd {
  flex: 1;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
#topics .sp_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
#topics .sp_flex p.sp {
  flex: 1;
  text-align: center;
}
#topics .plus_btn {
  cursor: pointer;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  #topics .plus_btn {
    width: 100%;
    border: 1px solid #eee;
    padding: 0.5rem 1rem;
    border-radius: 3px;
  }
}
#topics .plus_btn .icon {
  width: 40px;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  #topics .plus_btn .icon {
    width: 20px;
    line-height: 0;
  }
}
#topics .plus_btn.active .icon {
  transform: rotate(45deg);
}

#tags .tagsearchbtn a {
  cursor: pointer;
}
#tags .tagsearchbtn.active a {
  background: #000;
}
#tags #tagsearch {
  display: none;
}

#top_menu {
  background: #f7f7f4;
  padding: 5vw;
}
#top_menu .block {
  display: flex;
  justify-content: space-between;
  padding: 0 0 2rem 0;
}
#top_menu .block .number {
  flex: 1;
  padding: 1rem 0 0 0;
}
#top_menu .block .linkblock {
  border-top: 1px solid #ccc;
  width: 70%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1160px) {
  #top_menu .block .linkblock {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  #top_menu .block .linkblock {
    display: block;
  }
}
#top_menu .block .entitle {
  font-size: 3rem;
  width: 8em;
  padding: 1rem 0 0 0;
  font-size: clamp(2rem, 5vw, 3rem);
}
@media screen and (max-width: 767px) {
  #top_menu .block .entitle {
    font-size: 1.5rem;
    width: auto;
  }
}
#top_menu .block .jplink {
  flex: 1;
  padding: 2rem 0 0 0;
}
@media screen and (max-width: 767px) {
  #top_menu .block .jplink {
    padding: 1rem 0 0 0;
  }
}
#top_menu .block .jplink ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  #top_menu .block .jplink ul {
    display: block;
  }
}
#top_menu .block .jplink ul li {
  width: 48%;
  margin: 0 0 1rem 0;
}
@media screen and (max-width: 767px) {
  #top_menu .block .jplink ul li {
    width: 100%;
  }
}
#top_menu .block .jplink ul li a {
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}
#top_menu .block .jplink ul li a:hover {
  color: #FF0000;
}
#top_menu .block .jplink ul li a[target=_blank]::after {
  content: "";
  background: url(/assets/image/common/blank.svg) no-repeat center center/contain;
  display: inline-block;
  margin-left: 5px;
  line-height: 0;
  vertical-align: 0px;
  width: 14px;
  height: 10px;
}

#interview {
  padding: 0 0 10rem 0;
}
@media screen and (max-width: 767px) {
  #interview {
    padding: 0 0 0 0;
  }
}
#interview h2 {
  font-size: 5rem;
  padding: 5vw 5vw 1rem 3vw;
  letter-spacing: 0.1em;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #interview h2 {
    font-size: clamp(1.6rem, 4vw, 1.6rem);
    text-align: center;
  }
}
#interview .in {
  padding: 1vw;
  display: flex;
  flex-wrap: wrap;
}
#interview .in .box {
  width: 33.333%;
  margin: 0 0 0.6% 0;
  padding: 0 0.5%;
}
@media screen and (max-width: 767px) {
  #interview .in .box {
    width: 49%;
  }
}
#interview .in .box .image {
  position: relative;
  line-height: 1;
}
#interview .in .box .image .icon {
  width: 40px;
  position: absolute;
  bottom: 2rem;
  right: 2rem;
}
#interview .in .box .image.zoom img {
  transition: opacity 1s ease-out, transform 1s ease-out;
}
#interview .in .box .image.zoom .img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.1);
}
#interview .in .box .image.zoom p {
  opacity: 0;
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  color: #fff;
  font-size: clamp(1.2rem, 0.504rem + 0.9vw, 1.8rem);
  text-align: left;
  line-height: 2;
  transition: opacity 0.5s ease;
  z-index: 3;
}
#interview .in .box .image.zoom::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
  transition: opacity 0.5s ease;
  opacity: 0;
}
#interview .in .box .image.zoom:hover {
  /*
  .img-default {
    // 元の画像はフェードアウトしながら少し縮小
    opacity: 0;
    transform: scale(0.95);
  }

  .img-hover {
    // ホバー画像はフェードインしながら元のサイズに戻る
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }
  */
}
#interview .in .box .image.zoom:hover::after {
  opacity: 1;
}
#interview .in .box .image.zoom:hover p {
  opacity: 1;
}
#interview .in .box .txt {
  background: #f7f7f7;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  #interview .in .box .txt {
    display: block;
  }
}
#interview .in .box .txt p.name {
  font-size: 2rem;
  flex: 1;
  font-size: clamp(1.6rem, 3vw, 1.6rem);
}
@media screen and (max-width: 767px) {
  #interview .in .box .txt p.name {
    font-size: 1.6rem;
  }
}
#interview .in .box .txt .prof {
  border-left: 1px solid #333;
  padding: 0 0 0 1rem;
  width: 200px;
}
@media screen and (max-width: 767px) {
  #interview .in .box .txt .prof {
    width: 100%;
    font-size: 1.2rem;
    border-left: none;
    border-top: 1px solid #333;
    padding-left: 0;
    line-height: 1.3;
    padding-top: 10px;
  }
}
#interview #sort {
  background: #f7f7f7;
}
@media screen and (max-width: 767px) {
  #interview #sort {
    display: none;
  }
}
#interview #sort span.toggle-icon {
  font-size: 1.2rem;
  display: inline-block;
  margin: 0 0 0 0.5rem;
}
#interview #sort .title {
  text-align: center;
  padding: 1rem 0;
  cursor: pointer;
}
#interview #sort .sorts {
  padding: 0 3vw;
  display: none;
}
#interview #sort .sorts .block {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ccc;
  padding: 1rem 0;
}
#interview #sort .sorts .block p.jp {
  width: 8em;
}
@media screen and (max-width: 767px) {
  #interview #sort .sorts .block p.jp {
    font-size: 1.4rem;
    width: 8rem;
  }
}
#interview #sort .sorts .block .sort_btns {
  flex: 1;
}
#interview #sort .sorts .block .sort_btns ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5%;
}
@media screen and (max-width: 767px) {
  #interview #sort .sorts .block .sort_btns ul {
    gap: 4px;
  }
}
#interview #sort .sorts .block .sort_btns ul li {
  width: 19%;
  margin: 0 0 1rem 0;
}
@media screen and (max-width: 767px) {
  #interview #sort .sorts .block .sort_btns ul li {
    width: auto;
    margin-bottom: 0.5rem;
  }
}
#interview #sort .sorts .block .sort_btns ul li a {
  background: #ffffff;
  display: block;
  padding: 10px;
  transition: all 0.3s ease;
  font-size: clamp(1rem, 0.536rem + 0.6vw, 1.4rem);
}
#interview #sort .sorts .block .sort_btns ul li a:hover {
  background: #000;
  color: #ffffff;
}
#interview #sort .sorts .block .sort_btns ul li a.active {
  background: #000;
  color: #ffffff;
}
#interview .reset_btn {
  text-align: right;
  padding: 0 0 3rem 0;
}
#interview .reset_btn a {
  display: inline-block;
  background: #9B9B9B;
  border-radius: 50px;
  padding: 0.8rem 5rem;
  color: #ffffff;
  transition: all 0.3s ease;
}
#interview .reset_btn a:hover {
  background: #000;
}

#career_site #career_hero {
  position: relative;
}
#career_site #career_hero #visual {
  position: relative;
}
#career_site #career_hero #visual::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(#F6F6F4, #A0A0A0);
  z-index: 1;
  mix-blend-mode: multiply;
}
#career_site #career_hero .hero_txt {
  position: absolute;
  z-index: 5;
  color: #fff;
  top: 50px;
  left: 3%;
}
@media screen and (max-width: 767px) {
  #career_site #career_hero .sp-wrap {
    position: relative;
  }
}
#career_site #career_hero .main_copy {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  left: 3%;
  width: 60%;
}
@media (max-width: 1080px) {
  #career_site #career_hero .main_copy {
    top: 5rem;
    transform: none;
    left: auto;
    right: 3%;
  }
}
@media screen and (max-width: 767px) {
  #career_site #career_hero .main_copy {
    right: auto;
    left: 3%;
    top: auto;
    bottom: 5rem;
  }
}
#career_site #career_hero #topics {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #fff;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  #career_site #career_hero #topics {
    position: static;
    color: #000;
  }
}
#career_site #career_hero #topics .in {
  position: relative;
  padding-bottom: 3rem;
}
#career_site #career_hero #topics .topictitle {
  font-size: clamp(3rem, 1.84rem + 1.5vw, 4rem);
  margin-right: 5%;
}
#career_site #career_hero #topics .topicmain {
  padding-right: 40px;
}
#career_site #career_hero #topics .plus_btn {
  width: 25px;
  position: fixed;
  bottom: 5rem;
  right: 3vw;
}
@media screen and (max-width: 767px) {
  #career_site #career_hero #topics .plus_btn {
    position: static;
    width: 100%;
  }
}

#career_menu_recruit {
  padding: 5vw;
}
#career_menu_recruit h2 {
  width: 8em;
  padding: 1rem 0 0 0;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 2px;
}
#career_menu_recruit .process {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #EAEAEA;
}
@media screen and (max-width: 767px) {
  #career_menu_recruit .process {
    flex-direction: column;
  }
}
#career_menu_recruit .process h3 {
  width: 16%;
  font-size: clamp(1.6rem, 1.368rem + 0.3vw, 1.8rem);
}
@media screen and (max-width: 767px) {
  #career_menu_recruit .process h3 {
    width: 100%;
    margin: 0 0 10px 0;
  }
}
#career_menu_recruit .process ul {
  flex: 1;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  #career_menu_recruit .process ul {
    flex-direction: column;
    width: 100%;
  }
}
#career_menu_recruit .process ul li {
  width: 33.333%;
}
@media screen and (max-width: 767px) {
  #career_menu_recruit .process ul li {
    width: 100%;
  }
}
#career_menu_recruit .process ul li a {
  position: relative;
  background-color: #F6F6F4;
  display: block;
  padding: 22px 30px 22px 30px;
  font-size: clamp(1.4rem, 0.704rem + 0.9vw, 2rem);
  font-weight: 500;
}
#career_menu_recruit .process ul li a::after {
  content: url(/assets/image/top/arrow.svg);
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
#career_menu_recruit .process ul li a .note {
  display: block;
  font-size: clamp(1rem, 0.492rem + 0.7vw, 1.5rem);
  font-weight: 400;
}
#career_menu_recruit .other_link {
  display: flex;
  gap: 5%;
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  #career_menu_recruit .other_link {
    display: block;
    padding-top: 0;
  }
}
#career_menu_recruit .other_link li {
  width: 33.333%;
}
@media screen and (max-width: 767px) {
  #career_menu_recruit .other_link li {
    width: 100%;
  }
}
#career_menu_recruit .other_link li a {
  position: relative;
  display: block;
  border-bottom: 1px solid #EAEAEA;
  padding-block: 20px;
}
#career_menu_recruit .other_link li a::after {
  content: url(/assets/image/top/arrow.svg);
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
#career_menu_recruit .other_link li a:hover {
  color: #FF0000;
}