@charset "UTF-8";
.appear.up .item {
  transform: translateY(30px);
}

.appear.down .item {
  transform: translateY(-40px);
}

.appear.left .item {
  transform: translateX(40px);
}

.appear.right .item {
  transform: translateX(-40px);
}

.appear.rotate .item {
  transform: rotate(-5deg);
}

.appear .item {
  transition: all 0.6s ease;
  transform: translate3d(0, 0, 0);
  opacity: 0;
}
.appear.inview .item {
  transform: none;
  opacity: 1;
}
.appear.inview .item:nth-child(1) {
  transition-delay: 0.2s;
}
.appear.inview .item:nth-child(2) {
  transition-delay: 0.4s;
}
.appear.inview .item:nth-child(3) {
  transition-delay: 0.6s;
}
.appear.inview .item:nth-child(4) {
  transition-delay: 0.8s;
}
.appear.inview .item:nth-child(5) {
  transition-delay: 1s;
}
.appear.inview .item:nth-child(6) {
  transition-delay: 1.2s;
}
.appear.inview .item:nth-child(7) {
  transition-delay: 1.4s;
}
.appear.inview .item:nth-child(8) {
  transition-delay: 1.6s;
}
.appear.inview .item:nth-child(9) {
  transition-delay: 1.8s;
}
.appear.inview .item:nth-child(10) {
  transition-delay: 2s;
}

.animation-txt__char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
  animation: catchCharFade 0.5s ease forwards;
  animation-play-state: paused;
}
.animation-txt.inview .animation-txt__char {
  animation-play-state: running;
}

@keyframes catchCharFade {
  0% {
    opacity: 0;
    transform: translateY(0.5em);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .animation-txt__char {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-height: 0vw;
}

html {
  font-size: 62.5%;
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.075rem;
  color: #454545;
  background: #F4F3ED;
  overflow-x: hidden;
}

.wrapper {
  position: relative;
  padding-top: 80px;
}
@media screen and (max-width: 960px) {
  .wrapper {
    padding-top: 70px;
  }
}

.section_content {
  overflow: hidden;
  margin: 0 0 120px;
}
@media screen and (max-width: 960px) {
  .section_content {
    margin: 0 0 60px;
  }
}

.first {
  margin-top: 120px;
}
@media screen and (max-width: 960px) {
  .first {
    margin-top: 40px;
  }
}

img {
  max-width: 100%;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}

a {
  text-decoration: none;
  transition: 0.3s all;
}

.anchor {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

.lg-inner {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.inner {
  width: min(800px, 90%);
  margin: 0 auto;
}

.flex {
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 960px) {
  .flex {
    flex-direction: column;
    flex-wrap: wrap;
  }
}

.pc {
  display: inline-block;
}
@media screen and (max-width: 960px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 960px) {
  .sp {
    display: inline-block;
  }
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: text;
    text-decoration: none;
  }
}
@media screen and (max-width: 960px) {
  img {
    image-rendering: auto;
  }
}
.subat {
  font-size: clamp(1.2rem, 1.154rem + 0.21vw, 1.4rem);
  text-indent: -1em;
  padding-left: 1em;
}

.mv {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  overflow: hidden;
  background: url(../images/mv_pc.webp) no-repeat center center/cover;
}
@media screen and (max-width: 960px) {
  .mv {
    height: calc(100vh - 70px);
    z-index: 0;
  }
}
@media screen and (max-width: 600px) {
  .mv {
    height: calc(100svh - 70px);
  }
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.catch {
  color: white;
  font-size: clamp(3rem, 2.538rem + 2.05vw, 5rem);
  font-weight: 900;
  letter-spacing: 0.3rem;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 600px) {
  .catch {
    font-size: 6.5vw;
    padding-left: 0.75em;
    white-space: nowrap;
    font-feature-settings: "palt";
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2), 0 0 8px rgba(0, 0, 0, 0.7), 0 0 12px rgba(0, 0, 0, 0.5);
  }
}

.mv_bg_sp {
  display: none;
}
@media screen and (max-width: 960px) {
  .mv_bg_sp {
    display: block;
    width: 100%;
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
  }
  .mv_bg_sp img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
  .mv_bg_sp .panel {
    height: calc(33.3333333333vh - 23.3333333333px);
    height: calc(33.3333333333svh - 23.3333333333px);
  }
}

.about {
  /** 右側画像のレイアウト **/
}
.about .flex {
  align-items: center;
}
.about .layout-b .l_box {
  width: min(600px, 42vw);
}
@media screen and (max-width: 960px) {
  .about .layout-b .l_box {
    width: 100%;
    padding: 0;
  }
}
.about .layout-b .r_box {
  flex: 1;
  margin: 0 calc(50% - 50vw) 0 0;
  padding-left: 2vw;
}
@media screen and (max-width: 960px) {
  .about .layout-b .r_box {
    padding-left: 0;
  }
}
.about .layout-b .r_box img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-ttl {
  font-size: clamp(2.4rem, 2.262rem + 0.62vw, 3rem);
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0.2rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 960px) {
  .about-ttl {
    margin-bottom: 2rem;
  }
}

.about-txt {
  font-size: clamp(1.6rem, 1.554rem + 0.21vw, 1.8rem);
  line-height: 2;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 480px) {
  .about-txt {
    font-size: 4.3vw;
  }
}

.global-ttl {
  font-size: clamp(2.4rem, 2.262rem + 0.62vw, 3rem);
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 960px) {
  .global-ttl {
    margin-bottom: 3rem;
  }
}

@media screen and (max-width: 600px) {
  .features_list {
    width: 90%;
    margin: 0 auto;
  }
}
.features_list ul {
  counter-reset: featureNumber;
}
.features_list .flex {
  margin-left: -3rem;
}
@media screen and (max-width: 960px) {
  .features_list .flex {
    flex-direction: row;
    margin-left: -2rem;
    flex-wrap: wrap;
  }
}
.features_list li {
  position: relative;
  counter-increment: featureNumber;
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 25px;
  margin-left: 3rem;
}
@media screen and (max-width: 960px) {
  .features_list li {
    width: calc(50% - 2rem);
    margin-left: 2rem;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 600px) {
  .features_list li {
    width: calc(100% - 2rem);
  }
}
.features_list li::before {
  font-family: Arial, sans-serif;
  font-style: italic;
  content: counter(featureNumber);
  position: absolute;
  top: -0.5em;
  left: -0.1em;
  font-size: clamp(6rem, 5.769rem + 1.03vw, 7rem);
  font-weight: 800;
  letter-spacing: 0.05em;
}
.features_list .sub-ttl {
  font-size: 2rem;
  line-height: 1.4;
  text-align: center;
}
.features_list .sub-txt {
  line-height: 1.8;
}

.features {
  position: relative;
  padding: 0 0 100px;
}
@media screen and (max-width: 960px) {
  .features {
    padding: 0 0 60px;
  }
}
.features::before {
  position: absolute;
  content: "";
  background: url(../images/features_bg.webp) no-repeat center/cover;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
}
@media screen and (max-width: 960px) {
  .features::before {
    height: 60%;
    background: url(../images/features_bg_sp.webp) no-repeat center/cover;
  }
}
.features .ico {
  width: 160px;
  margin: 3rem auto;
}
@media screen and (max-width: 960px) {
  .features .ico {
    width: 100px;
    margin: 2rem auto;
  }
}

.interview {
  overflow: hidden;
  font-size: clamp(1.4rem, 1.377rem + 0.1vw, 1.5rem);
}
.interview .sub_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.interview-ttlWrap {
  height: 600px;
}
.interview-ttlWrap._01 {
  background: url(../images/interview_ttl_bg01.webp) no-repeat center/cover;
}
.interview-ttlWrap._02 {
  background: url(../images/interview_ttl_bg02.webp) no-repeat center/cover;
}
.interview-ttlWrap._03 {
  background: url(../images/interview_ttl_bg03.webp) no-repeat center/cover;
}
.interview-ttlWrap:not(:first-of-type) {
  margin-top: 120px;
}
@media screen and (max-width: 960px) {
  .interview-ttlWrap:not(:first-of-type) {
    margin-top: 80px;
  }
}
@media screen and (max-width: 960px) {
  .interview-ttlWrap {
    height: 250px;
  }
}
.interview-ttlWrap .lg-inner {
  position: relative;
  height: 100%;
}

.interview-ttl {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: clamp(2rem, 1.538rem + 2.05vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.5rem;
  color: white;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 0, 0, 0.5);
  margin-bottom: 4rem;
}
@media screen and (max-width: 960px) {
  .interview-ttl {
    letter-spacing: 0.3rem;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.5), 0 0 5px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
    line-height: 1.6;
  }
}

@media screen and (max-width: 960px) {
  .interview-item .flex {
    flex-direction: column-reverse;
  }
}

.interview-list {
  padding: 80px 0;
}

.interview-txt {
  margin: 80px 0;
}
@media screen and (max-width: 960px) {
  .interview-txt {
    margin: 30px 0 20px;
  }
}

.interview-img {
  padding: 100px 0;
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
}
.interview-img::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  background: #FF5D5D;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .interview-img::before {
    left: -6%;
  }
}
.interview-img .sub_img {
  position: relative;
  display: inline-block;
  width: min(40vw, 80%);
}
@media screen and (max-width: 960px) {
  .interview-img .sub_img {
    width: 80%;
    height: 90vw;
    margin-left: auto;
  }
}
.interview-img .sub_img img {
  aspect-ratio: 629/704;
}
@media screen and (max-width: 960px) {
  .interview-img .sub_img img {
    -o-object-position: top;
       object-position: top;
  }
}
@media screen and (max-width: 960px) {
  .interview-img {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    padding: 40px 0;
  }
}

.interview-dept-en {
  position: absolute;
  z-index: 1;
  left: -3rem;
  top: -5rem;
  font-family: Arial, sans-serif;
  font-style: italic;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  direction: rtl;
  color: transparent;
  -webkit-text-stroke: 1px white;
  text-stroke: 1px white;
  font-size: clamp(5rem, 4.769rem + 1.03vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  transform: rotate(180deg);
}
@media screen and (max-width: 960px) {
  .interview-dept-en {
    left: -3rem;
    top: -2rem;
  }
}
.interview-dept-en span {
  display: inline-block;
}

.interview-dept {
  font-size: clamp(2rem, 1.908rem + 0.41vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 0.075rem;
}

.interview-name {
  font-size: clamp(3rem, 2.862rem + 0.62vw, 3.6rem);
  margin-bottom: 3rem;
}
@media screen and (max-width: 960px) {
  .interview-name {
    margin-bottom: 2rem;
  }
}

.interview-about {
  font-size: clamp(1.6rem, 1.554rem + 0.21vw, 1.8rem);
  line-height: 1.8;
  margin-bottom: 4rem;
}
@media screen and (max-width: 960px) {
  .interview-about {
    margin-bottom: 3rem;
  }
}
.interview-about span {
  color: #FF5D5D;
  font-weight: 700;
  margin-right: 1em;
}

.interview-qa dt {
  font-size: clamp(1.6rem, 1.554rem + 0.21vw, 1.8rem);
  font-weight: 700;
  color: #FF5D5D;
  text-indent: -1em;
  padding-left: 1em;
}
.interview-qa span {
  font-size: clamp(1.8rem, 1.754rem + 0.21vw, 2rem);
}
.interview-qa dd {
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
  padding-left: 1.5em;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .interview-qa dd {
    padding-left: 1.15em;
  }
}

.interview-box .l_box {
  width: min(55%, 55vw);
  padding-right: 5vw;
}
@media screen and (max-width: 960px) {
  .interview-box .l_box {
    width: 100%;
    padding-right: 0;
  }
}
.interview-box .r_box {
  width: max(50vw, 100%);
  margin-right: calc(50% - 50vw);
  flex: 1;
}
@media screen and (max-width: 960px) {
  .interview-box .r_box {
    width: 100%;
    margin-right: 0;
  }
}

.interview-flowWrap {
  background: #FAF9F2;
}
@media screen and (max-width: 960px) {
  .interview-flowWrap .flex {
    flex-direction: column-reverse;
  }
}
.interview-flowWrap .interview-flow {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .interview-flowWrap .interview-flow {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 960px) {
  .interview-flowWrap .sub_img {
    width: 100vw;
    margin-left: -5vw;
    margin-right: -5vw;
    max-width: 100vw;
  }
}
.interview-flowWrap .sub_img img {
  aspect-ratio: 960/797;
}
@media screen and (max-width: 960px) {
  .interview-flowWrap .sub_img img {
    height: 60vw;
  }
}

.interview-flow-ttl {
  color: #FF5D5D;
  font-size: clamp(2rem, 1.908rem + 0.41vw, 2.4rem);
  margin-bottom: 3rem;
}
@media screen and (max-width: 960px) {
  .interview-flow-ttl {
    text-align: center;
  }
}

.time-schedule {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.time-schedule dt {
  font-weight: 700;
  color: #FF5D5D;
  position: relative;
  width: min(5em, 15%);
  padding-right: 1.5rem;
  text-align: right;
  text-wrap: nowrap;
}
@media screen and (max-width: 600px) {
  .time-schedule dt {
    width: 17%;
    padding-right: 1rem;
  }
}
.time-schedule dt::before {
  content: "";
  background: #FF5D5D;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  z-index: 2;
}
.time-schedule dt:first-of-type::after, .time-schedule dt:last-of-type::after {
  content: "";
  background: #FAF9F2;
  width: 1px;
  height: 0.75em;
  position: absolute;
  right: -1px;
}
.time-schedule dt:first-of-type::after {
  top: 0;
}
.time-schedule dt:last-of-type::after {
  bottom: 0;
}
.time-schedule dd {
  border-left: 1px solid #FF5D5D;
  width: 85%;
  padding: 0 0 3rem 1.5em;
}
@media screen and (max-width: 600px) {
  .time-schedule dd {
    width: 83%;
    padding-left: 1em;
  }
}
.time-schedule dd:last-of-type {
  padding-bottom: 0;
}
.time-schedule dd span {
  font-weight: 700;
  color: #FF5D5D;
  display: block;
  margin-bottom: 0.5rem;
}
.time-schedule dd span:last-of-type {
  margin-bottom: 0;
}

.entry-btnWrap {
  text-align: center;
  padding: 80px 0;
}
@media screen and (max-width: 960px) {
  .entry-btnWrap {
    padding: 60px 0;
  }
}

.entry-btn-ttl {
  font-size: clamp(1.6rem, 1.554rem + 0.21vw, 1.8rem);
  color: #FF5D5D;
  margin-bottom: 1.5rem;
}

.entry-link-btn a {
  font-family: Arial, sans-serif;
  font-style: italic;
  display: inline-block;
  position: relative;
  background: #FF5D5D;
  color: white;
  font-size: clamp(2.4rem, 2.215rem + 0.82vw, 3.2rem);
  font-weight: 700;
  padding: 1.5rem;
  width: 400px;
  max-width: 90%;
}
.entry-link-btn a:hover {
  opacity: 0.6;
}
.entry-link-btn a:hover::before {
  right: 1rem;
}
@media screen and (max-width: 960px) {
  .entry-link-btn a {
    padding: 1rem;
    letter-spacing: 0.1rem;
  }
}
.entry-link-btn a::before {
  position: absolute;
  content: "";
  background: url(../images/arrows.svg) no-repeat center/contain;
  top: 0;
  bottom: 0;
  right: 2rem;
  margin: auto;
  width: 1.25em;
  aspect-ratio: 27/5;
  transition: 0.3s all;
}

header {
  background: #F4F3ED;
  width: 100%;
  height: 80px;
  padding: 0 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  transition: 0.3s all;
}
header.is-scrolled {
  background: white;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 960px) {
  header {
    background: white;
    height: 70px;
    padding: 15px;
  }
}

.logo a {
  display: block;
  width: 320px;
  max-width: 100%;
  padding: 1rem 2rem;
  border: 1px solid #454545;
}
.logo a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 960px) {
  .logo a {
    width: 200px;
    padding: 1.15rem 0.75rem;
  }
}

.entry-btn a {
  position: relative;
  background: #FF5D5D;
  color: white;
  font-size: clamp(1.4rem, 1.354rem + 0.21vw, 1.6rem);
  font-weight: 900;
  letter-spacing: 0.2rem;
  padding: 1rem 7rem;
}
.entry-btn a:hover {
  opacity: 0.6;
}
.entry-btn a:hover::before {
  right: 1rem;
}
@media screen and (max-width: 960px) {
  .entry-btn a {
    padding: 1rem;
    letter-spacing: 0.1rem;
  }
}
.entry-btn a::before {
  position: absolute;
  content: "";
  background: url(../images/arrows.svg) no-repeat center/contain;
  top: 0;
  bottom: 0;
  right: 1.5rem;
  margin: auto;
  width: 1.5em;
  aspect-ratio: 27/5;
  transition: 0.3s all;
}
@media screen and (max-width: 960px) {
  .entry-btn a::before {
    display: none;
  }
}

.footer {
  padding: 60px 0 20px;
  text-align: center;
  background: white;
}
@media screen and (max-width: 960px) {
  .footer {
    padding: 50px 0 20px;
  }
}
.footer a:hover {
  opacity: 0.5;
}
.footer .sns_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 30px 0 60px;
}
@media screen and (max-width: 960px) {
  .footer .sns_list {
    margin: 30px 0 40px;
  }
}
.footer .sns_list li {
  display: inline-flex;
  margin: 0 5px;
}
.footer .sns_list li a {
  display: inline-flex;
}

.foot-logo a {
  width: 350px;
  max-width: 100%;
  border: 1px solid #454545;
  display: inline-block;
  padding: 2rem;
}

.backtotop {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 80px;
  height: 80px;
  z-index: 500;
}
@media screen and (max-width: 960px) {
  .backtotop.is-lifted {
    bottom: 60px;
  }
  .backtotop.is-lifted a {
    bottom: 60px;
  }
}
@media screen and (max-width: 480px) {
  .backtotop {
    width: 60px;
    height: 60px;
  }
}
.backtotop.show {
  opacity: 1;
  visibility: visible;
}
.backtotop a {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 60px;
  height: 60px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all;
}
.backtotop a:hover {
  opacity: 0.5;
}
.backtotop a img {
  width: 100%;
  height: auto;
  display: block;
}

.copy {
  font-size: clamp(1rem, 0.954rem + 0.21vw, 1.2rem);
}/*# sourceMappingURL=style.css.map */