@charset "utf-8";

body {
  overflow-wrap: anywhere;
  word-break: normal;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* HEADER */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 3%;
  padding: 0 3%;
  display: flex;
  align-items: center;
  justify-content: right;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0 0 20px 20px;
  z-index: 5;
  height: 5rem;
  /* overflow: hidden; */
  /* ←これ重要 */
  transition: 0.4s;
}

header.active {
  height: auto;
}

.header_logo-box {
  position: absolute;
  top: 1.8rem;
  z-index: 11;
  left: 3%;
}

.header-logo {
  width: 236px;
  flex-shrink: 0;
  display: block;
}

@media (max-width: 1122px) {
  .nav-pc {
    display: none;
  }
}

.nav-pc ul {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 2.5vw;
}

.nav-pc ul li {
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
  font-weight: bold;
}

.nav-pc ul li:last-child {
  margin-left: -29px;
}

.nav-pc ul li .header-abchorlink {
  font-size: 0.88rem;
  transition: .5s;
  display: inline-block;
}

@media (max-width: 1536px) {
  .nav-pc ul li .header-abchorlink {
    font-size: 0.75rem;
  }
}

.nav-pc ul li .header-abchorlink:hover {
  color: rgba(0, 0, 0, .5);
}

.nav-pc ul li:has(.btn-entry),
.nav-pc ul li:has(.btn-login) {
  flex: 0;
}

/* NAVIGATION SP */

.nav-sp_01 {
  display: none;
}

@media (max-width: 1122px) {
  .nav-sp_01 {
    display: block;
  }
}

.nav-sp_01 li {
  border-bottom: 1px solid #EE1C2C;
  padding-bottom: 0.1rem;
}

.nav-sp_01 li:last-of-type {
  margin-bottom: 1.88rem;
}

.nav-sp_02 {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}

@media (max-width: 820px) {
  .nav-sp_02 {
    display: block;
    background-color: #FFEEEA;
    padding: 10px;
    transition: opacity 0.3s;
  }

  .nav-sp_02.is-hide {
    opacity: 0;
    pointer-events: none;
  }
}

.nav-sp_02-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
}

.nav-sp_02-box li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 3.13rem;
}

.nav-sp_02-box li a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  border-radius: 25px;
  width: 100%;
  height: 100%;
}

.nav-sp_02-box .btn-entry_sp {
  background-color: #EE1C2C;
  border: 1px solid #EE1C2C;
  border-radius: 25px;
}

.nav-sp_02-box .btn-entry_sp a {
  color: #fff;
}

.nav-sp_02-box .btn-login_sp {
  background-color: #fff;
  border: 1px solid #EE1C2C;
  border-radius: 25px;
}

.nav-sp_02-box .btn-login_sp a {
  color: #EE1C2C;
}

/* FIRST VIEW */

.fv-container {
  position: relative;
  overflow: visible;
  padding: 0 2rem 1.25rem;

  @media (max-width: 820px) {
    padding: 0 2.6666% 1.25rem;
  }
}

.fv-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1200px;
  object-fit: cover;
  z-index: 1;
}

@media (max-width: 820px) {
  .fv-container video {
    height: 1400px;
  }
}

.fv-container .content {
  position: relative;
  z-index: 2;
  padding-top: 8.44rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 820px) {
  .fv-container .content {
    padding-top: 7.5rem;
  }
}

@media (max-width: 412px) {
  .fv-container .content {
    padding-top: 6rem;
  }
}

.fv-container .flex-pc {
  flex-direction: row-reverse;
  justify-content: space-between;
}

/* FV RIGHT */

.fv-container-right {
  width: 52%;
  position: relative;
  padding-right: 0.3rem;
  min-width: 0;
  flex-shrink: 1;
}

@media (max-width: 820px) {
  .fv-container-right {
    width: 100%;
    padding-left: 0.3rem;
    box-sizing: border-box;
  }
}

.slide-area {
  overflow: hidden;
  width: 100%;
  padding-bottom: 0.5rem;
}

.main-slide-wrapper {
  display: flex;
  /*gap: 0.94rem;
  animation: slideFlow 40s linear infinite;*/
  width: max-content;
  will-change: transform;
}

.main-slide-wrapper li {
  flex-shrink: 0;
}

.main-slide {
  width: 36.5rem;
}

@keyframes slideFlow {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.img-box_grade {
  position: relative;
  display: inline-block;
  list-style: none;
  z-index: 0;
}

.img-box_grade img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 2.5rem;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

@media (max-width: 820px) {
  .img-box_grade .main-slide {
    width: 40rem;
    height: 30rem;
  }
}

@media (max-width: 412px) {
  .img-box_grade .main-slide {
    width: 20rem;
    height: 16rem;
  }
}

/* 
.img-box_grade::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0.3rem;
  left: 0.3rem;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #ff1e2d, #4b8df8);
  border-radius: 2.5rem;
} */
.card {
  position: relative;
  border-radius: 2.5rem;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(0.3rem, 0.3rem);
  background: linear-gradient(90deg, #ff1e2d, #4b8df8);
  border-radius: 2.5rem;
  z-index: -1;
}

.fv_sub-img_pc {
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 5;
  margin-top: 0.5rem;
  padding-bottom: 0.3rem;

  @media (max-width: 820px) {
    gap: 0.5rem;
  }
}

@media (max-width: 820px) {
  .fv_sub-img_pc {
    position: initial;
    margin-top: 0 !important;
  }
}

@media (max-width: 412px) {
  .fv_sub-img_pc {
    margin-top: 1rem;
  }
}

.fv_sub-img_pc div {
  width: 48%;
}

@media (max-width: 820px) {
  .fv_sub-img_pc div {
    width: 32%;
  }
}

.img-box_05 {
  aspect-ratio: 33 / 20;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border-radius: 2.5rem;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  list-style: none;
  z-index: 0;
  overflow: visible;
}

@media (max-width: 820px) {
  .img-box_05 {
    aspect-ratio: 1 / 1;
    border-radius: 20px;
  }
}

.img-box_05 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 2.5rem;
  position: relative;
  z-index: 2;

  @media (max-width: 820px) {
    border-radius: 20px;
  }
}

.img-box_05:last-child img {
  object-position: right center;
}

.img-box_05::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #ff1e2d, #4b8df8);
  border-radius: 2.5rem;

  @media (max-width: 820px) {
    border-radius: 20px;
  }
}

/* FV LEFT */

.fv-container-left {
  width: 45%;
  position: relative;
}

@media (max-width: 820px) {
  .fv-container-left {
    width: 100%;
    position: relative;
    margin-top: 1rem;
  }
}

.fv-container-left h1 {
  max-width: 90%;
  margin-bottom: 2rem;
}

@media (max-width: 820px) {
  .fv-container-left h1 {
    max-width: 100%;
  }
}

.fv-container-left h1 img {
  width: 100%;
}

.fv-container-left_text {
  font-size: 1.75rem;
  line-height: 2.5rem;
  margin-bottom: 5rem;
}

/* CIRCLE */

.circle-wrap {
  position: absolute;
  width: 130px;
  height: 130px;
  bottom: -1rem;
  right: -2rem;
  z-index: 10;
}

@media (max-width: 820px) {
  .circle-wrap {
    width: 100px;
    height: 100px;
    top: -8rem;
    right: 0.5rem;
    overflow: hidden;
  }
}

.circle-text {
  width: 100%;
  animation: rotateCircle 18s linear infinite;
}

@media (max-width: 820px) {
  .circle-text {
    width: 100%;
    font-size: 15px;
  }
}

.center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.375rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  width: 100%;
}

@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 820px) {
  .center-text {
    /* transform: translate(-79%, -87%); */
    width: 80%;
    font-size: 15px;
  }
}

/*  ABOUT/ABOUT MORE */

.about_about-more-wrapper {
  background: #fff;
  padding: 6%;
  border-radius: 4rem 4rem 0 0;
  position: relative;
  margin-top: 2.5rem;
  z-index: 1;
}

@media (max-width: 820px) {
  .about_about-more-wrapper {
    padding: 5rem 2.666%;
  }
}

/* SECTION ABOUT */

#about {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ABOUT 01 */

.about_01 {
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: 3.13rem;
}

.about_01-left {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

@media (max-width: 820px) {
  .about_01-left {
    margin-bottom: 3.13rem;
  }
}

.about_01-left h3 {
  background: rgba(255, 255, 255, 0.5);
  display: inline-block;
}

.about_01-left .about_01-left_text {
  margin-top: 1.25rem;
}

.about_01_img-box {
  position: relative;
  z-index: 0;
  display: inline-block;
  margin-top: 3.75rem;
  margin-left: 1.88rem;
}

@media (max-width: 820px) {
  .about_01_img-box {
    display: none;
  }
}

.about_01_img-box::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0.5rem;
  left: 0.5rem;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #ff1e2d, #4b8df8);
  border-radius: 2.5rem;
}

.about_01_img-box_grade {
  width: 15rem;
  position: relative;
  z-index: 1;
}

.about_01_img-box_grade img {
  width: 100%;
  display: block;
  border-radius: 2.5rem;
}

.about_01_img-box .about_01_img-box_icon {
  position: absolute;
  z-index: 2;
  width: 8rem;
  top: 15rem;
  right: -4rem;
}

.about_01-right {
  width: 72%;
  margin-left: -10%;
  position: relative;
  z-index: 1;
}

.about_circle_pc {
  width: 100%;
}

.about_01_sp_items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 3.13rem;
}

.about_01_sp_items li {
  text-align: center;

  img+p {
    font-weight: bold;
  }
}

.about_01_sp_items li img {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  height: 100px;
  object-fit: contain;

  @media (max-width: 820px) {
    width: 80px;
    height: 80px;
  }
}

.about_01_sp_items>li {
  width: calc(50% - 0.75rem);

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ABOUT 02 */


.about_02 {
  margin-top: 9.375rem;
}

@media (max-width: 820px) {
  .about_02 {
    margin-top: 5rem;
  }
}

.about_02-text {
  margin-bottom: 2.5rem;
}

.about_02_title-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

@media (max-width: 820px) {
  .about_02_title-box {
    text-align: center;
    padding-bottom: 13.75rem;
  }

  .about_02_title-box h3 {
    line-height: 3.5rem;
    font-size: 1.3rem;
  }
}

.about_02_title-box h3 span {
  font-size: 2.5rem;
  color: #EE1C2C;
}

.about_02_title-box img {
  position: absolute;
  width: 9.37rem;
  left: 82%;
  bottom: -50%;
}

@media (max-width: 820px) {
  .about_02_title-box img {
    width: 14rem;
    left: 30%;
    bottom: 0%;
  }
}

.about_02-text-content {
  text-align: center;
  font-size: 1.25rem;

  @media (max-width: 820px) {
    font-size: 1.125rem;
  }
}

.about_02_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3列 */
  gap: 2.25rem;
}

.about_02_cards img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width:820px) {
  .about_02_cards {
    grid-template-columns: 1fr;
  }
}

/* SECTION ABOUT MORE */

#about-more {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 9.375rem;
}


@media (max-width: 820px) {
  #about-more {
    margin-top: 5rem;
  }
}

.about-more_content.flex-pc {
  gap: 4.69rem;
  align-items: stretch;
}

@media screen and (max-width: 820px) {
  .about-more_content.flex-pc {
    flex-direction: column;
    gap: 2rem;
  }
}

.about-more_content article {
  flex: 1;
  min-width: 0;
}

@media (max-width: 820px) {
  .about-more_content article {
    margin-bottom: 3.13rem;
  }

  .about-more_content article:last-of-type {
    margin-bottom: 0;
  }
}

.about-more_content article a {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.img-box_01 {
  aspect-ratio: 35 / 22;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border-radius: 1.16rem;
  box-sizing: border-box;
}

.img-box_01 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-more_content .article-bottom {
  margin-top: 1.88rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 820px) {
  .about-more_content .article-bottom {
    margin-top: 1.25rem;
  }
}

.about-more_content h3 {
  font-size: 1.375rem;
  font-weight: 600;
}

/* JOBS/JOBS MORE WRAPPER */

.jobs_jobs-more-wrapper {
  position: relative;
  background-color: #FDDFE1;
  padding: 6%;
  z-index: 2;
  border-radius: 4rem 4rem 0 0;
}

@media (max-width: 820px) {
  .jobs_jobs-more-wrapper {
    padding: 5rem 2.666%;
  }
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
  border-radius: 4rem 4rem 0 0;
}

#jobs,
#jobs-more {
  position: relative;
  z-index: 1;
}

/* SECTION JOBS */

#jobs {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 9.375rem;
  scroll-margin-top: 100px;
}

#jobs .heading {
  position: sticky;
  top: 6.25rem;
  align-self: flex-start;
}

#jobs .flex-pc {
  justify-content: space-between;
  align-items: flex-start;
}

.jobs-cards {
  width: 64%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (max-width: 820px) {
  .jobs-cards {
    width: 100%;
  }
}

#jobs .jobs-cards .flex-pc {
  align-items: center;
}

.job-card {
  position: sticky;
  top: 6.25rem;
  aspect-ratio: 77 / 30;
  overflow: hidden;
  border-radius: 1.88rem;
  background-color: #fff;
}

@media (max-width: 820px) {
  .job-card {
    aspect-ratio: initial;
    top: 13.5rem;
  }
}

.jobs-cards .img-box_02 {
  aspect-ratio: 1 / 1;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
}

@media (max-width: 820px) {
  .jobs-cards .img-box_02 {
    height: 50%;
    aspect-ratio: 2 / 1;
  }
}

.jobs-cards .img-box_02 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 820px) {
  .jobs-cards .img-box_02 img {
    object-position: top;
  }
}

.job-card .card-text {
  padding: 0 1.88rem;
}

@media (max-width: 820px) {
  .job-card .card-text {
    padding: 1.88rem;
  }
}

.job-card .card-text h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #EE1C2C;
  margin-bottom: 1.25rem;
}

@media (max-width: 820px) {
  .job-card .card-text h3 {
    margin-bottom: 0.62rem;
  }
}

.jobs_btn-area {
  margin-top: 6.25rem;
  text-align: center;
}

.jobs_btn-area p {
  font-size: 1.75rem;

  @media (max-width: 820px) {
    font-size: 1.4rem;
  }
}

.jobs_btn-area div {
  margin-top: 3.13rem;
}

#jobs .jobs_btn-area .flex-pc {
  justify-content: center;
  gap: 3.13rem;
}

/* SECTION JOBS MORE */

#jobs-more {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 9.375rem;
}

.jobs-more_youtube-box {
  margin-bottom: 6.25rem;
}

#jobs-more .thumb-box {
  display: flex;
  justify-content: center;
}

#jobs-more .movie-box {
  aspect-ratio: 68 / 43;
  width: 50%;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
  border: 3px solid;
  border-image-source: linear-gradient(to bottom, #ff1e2d, #4b8df8);
  border-image-slice: 1;
  background-color: #fff;
}

@media (max-width: 820px) {
  #jobs-more .movie-box {
    width: 100%;
  }
}

#jobs-more .movie-box .movie-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.movie-box_add {
  text-align: center;
  margin-top: 1.88rem;
}

/* CROSS TALK BANNER*/

.jobs-more_crosstalk {
  display: flex;
  width: 100%;
  background-color: #fff;
  border: 3px solid #EE1C2C;
  color: inherit;

  @media (max-width: 820px) {
    flex-direction: column;
  }
}

.jobs-more_crosstalk .img-box_03 {
  aspect-ratio: 2 / 1;
  width: 45%;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
}

@media (max-width: 820px) {
  .jobs-more_crosstalk .img-box_03 {
    flex-shrink: initial;
    width: 100%;
    aspect-ratio: 4 / 2;
  }
}

.jobs-more_crosstalk .img-box_03 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;

}

.crosstalk_text-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  padding: 0 6.25rem;
}

@media (max-width: 820px) {
  .crosstalk_text-box {
    padding: 0 3.13rem;
    font-size: 1.8rem;
  }
}

@media (max-width: 820px) {
  .crosstalk_text-box {
    padding: 0 1.88rem;
    font-size: 1.8rem;
  }
}

@media (max-width: 412px) {
  .crosstalk_text-box {
    padding: 0 1rem;
    font-size: 1.8rem;
  }
}

.crosstalk_text-box p {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.3;
}

@media (max-width: 820px) {
  .crosstalk_text-box p {
    font-size: 1.25rem;
  }
}

@media (max-width: 412px) {
  .crosstalk_text-box p {
    font-size: 1.8rem;
    padding: .7rem 0;
    line-height: 1.2;
  }
}


/* MODAL WINDOW */

/* モーダル背景（初期状態は隠す） */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;

  /* ふわっと表示するための設定 */
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-inner {
  position: relative;
  width: 90%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
}

.modal-inner iframe {
  width: 100%;
  height: 100%;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 30px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* POINT/SCHEDULE */

#internship-opencompany {
  position: relative;
  z-index: 3;
  margin-top: -6.25rem;
  border-radius: 4rem 4rem 0 0;
  background-color: #F7F7F7;
}

.schedule-wrapper {
  padding-top: 60px;
}

.point_schedule-wrapper {
  position: relative;
  background-color: #F7F7F7;
  padding: 0 6% 6% 6%;
  z-index: 3;
  border-radius: 4rem 4rem 0 0;
  margin-top: -6.25rem;

  @media (max-width: 820px) {
    padding: 0 2.666% 6% 2.666%;
  }
}

.internship-opencompany_title-box {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 18.75rem;
  margin-bottom: 6.25rem;
  text-align: center;
  padding: 18.75rem 6% 0 6%;

  @media (max-width: 820px) {
    padding: 13.75rem 2.666% 0 2.666%;
  }
}

.internship-opencompany_title {
  font-size: 3.13rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.88rem;
}

@media (max-width: 820px) {
  .internship-opencompany_title {
    font-size: 1.6rem;
  }
}

.internship-opencompany_title_add {
  font-size: 1.24rem;
}

#point {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 6% 9.375rem 6%;
  box-sizing: border-box;

  @media (max-width: 820px) {
    padding: 0 2.666% 1rem 2.666%;
  }
}

#point .flex-pc {
  justify-content: space-around;
  align-items: center;
}

#point .flex-pc p {
  text-align: center;
  font-size: 1.25rem;
}

#point .flex-pc img {
  width: 11.25rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.25rem;
}

@media (max-width: 820px) {
  #point .flex-pc img {
    width: 8rem;
    margin-left: auto;
    margin-right: auto;
  }

  #point .point-list li {
    margin-bottom: 3.13rem;
  }
}

/* SECTION SCHEDULE 01 */

.red_back {
  background-color: #EE1C2C;
  width: 100%;
}

#schedule01 {
  max-width: calc(1200px + 10%);
  width: 100%;
  margin: 0 auto;
  padding: 6.9rem 5% 5rem;
  box-sizing: border-box;

  @media (max-width: 820px) {
    padding: 6.9rem 2.666% 6rem;
  }
}

#schedule01 .flex-pc {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3.13rem;
}

@media (max-width: 820px) {
  #schedule01 .flex-pc {
    padding: 0;
  }
}

#schedule01 h2 {
  color: #fff;
}

.schedule01_btn-box {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem 1rem;
  justify-content: right;
}

.schedule01_btn-box a {
  width: calc(35% - 0.75rem);
  height: 3.75rem;
  display: block;
  position: relative;
  border-radius: 999px;
  text-decoration: none;
  isolation: isolate;
  z-index: 1;
}

.btn-content {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: #fff;
  overflow: hidden;
  border-radius: 999px;
  color: #EE1C2C;
  font-weight: 700;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.3rem;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
  transition: transform 0.2s ease-out;
}

.btn-content span,
.btn-content img {
  position: relative;
  z-index: 15;
}

.schedule01_btn-box a img {
  width: 0.94rem;
  height: auto;
}

.schedule01_btn-box a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  z-index: 5;
}

.schedule01_btn-box a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff1e2d, #4b8df8);
  transform: translate(0.3rem, 0.3rem);
  z-index: 1;
}

.schedule01_btn-box a:hover .btn-content {
  transform: translate(0.3rem, 0.3rem);
}

@media (max-width: 820px) {

  .schedule-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .schedule-scroll img {
    width: 150%;
    /* ←ここ重要：あえて大きくする */
    max-width: none;
    display: block;
  }
}

@media (max-width: 820px) {
  .schedule01_head {
    flex-direction: column;
    gap: 2rem;
  }

  .schedule01_btn-box {
    justify-content: space-between;
  }

  .schedule01_btn-box a {
    width: calc(50% - 0.5rem);
    height: 4rem;
  }

  .schedule-scroll img {
    width: 220%;
  }
}

/* SECTION SCHEDULE 02 */
#technology {
  scroll-margin-top: 80px;
  padding-bottom: 50px;
  @media (max-width: 1536px) {
    scroll-margin-top: 75px;
  }
}

#management {
  scroll-margin-top: 100px;
  @media (max-width: 1536px) {
    scroll-margin-top: 80px;
  }
}

.grey_back {
  background-color: #F7F7F7;
  background-image: linear-gradient(to top, #EE1C2C 15.6rem, transparent 15.6rem);
  padding-bottom: 6.25rem;

  @media (max-width: 820px) {
    padding-bottom: 0;
    background-image: linear-gradient(to top, #EE1C2C 9.6rem, transparent 9.6rem);
  }

}

#schedule02 {
  max-width: calc(1200px + 10%);
  width: 100%;
  margin: 0 auto;
  padding: 4.3125rem 5% 0;
  box-sizing: border-box;
}

@media (max-width: 820px) {
  #schedule02 {
    padding-left: 2.6666%;
    padding-right: 2.6666%;
    padding-top: 0;
  }
}

#schedule02 .schedule-wrapper.pd-0 {
  padding-top: 0;
  @media (max-width: 820px) {
    padding-top: 60px;
  }
}

.schedule02_title {
  border-top: 1px solid #EE1C2C;
  border-bottom: 1px solid #EE1C2C;
  width: 100%;
  text-align: center;
  background-color: #fff;
}

.schedule02_title h3 {
  padding: 1.25rem 0;
}

#schedule02 article .flex-pc {
  align-items: center;
  margin-bottom: 1.88rem;
}

#schedule02 .h4-mb {
  margin-bottom: 1.88rem;
}

#schedule02 h4 {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 1.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  max-width: 620px;
  flex: 1 1 620px;
  line-height: 1;
}

@media (max-width: 820px) {
  #schedule02 h4 {
    padding-left: 1rem;
    font-size: 1.25rem;
  }
}

#schedule02 h4::before {
  content: "";
  display: block;
  width: 10px;
  height: 50px;
  background-color: #EE1C2C;
  position: absolute;
  left: 0;
}

@media (max-width: 820px) {
  #schedule02 h4::before {
    height: 40px;
  }
}

#schedule02 article {
  margin-top: 5rem;
}

#schedule02 h4 span {
  display: inline-block;
  background-color: #EE1C2C;
  color: #fff;
  font-size: 1rem;
  padding: 0.2rem 0.8rem;
  border-radius: 4px;
  margin-left: 1rem;
  line-height: 1.8;
}

#schedule02 article table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ccc;
}

#schedule02 article th,
#schedule02 article td {
  border: 1px solid #ccc;
  padding: 1.5rem;
  vertical-align: middle;
  text-align: left;
  line-height: 1.6;
}

#schedule02 article th {
  background-color: #E6E6E6;
  font-weight: 600;
  width: 25%;
  text-align: center;
}

#schedule02 article td {
  background-color: #fff;
  width: auto;
}

#schedule02 table tr:nth-child(2) th:nth-of-type(2) {
  width: 25%;
}

#schedule02 article td p {
  margin: 0;
}

#schedule02 article td p+p {
  margin-top: 0.5rem;
}

.table-title_add {
  flex-shrink: 0;
  width: fit-content;
}

@media (max-width: 820px) {
  .table-title_add {
    margin-left: 0;
    margin-top: 1.25rem;
  }
}

.table-title_add span {
  color: #EE1C2C;
  font-weight: 700;
}

@media (max-width: 820px) {

  /* テーブルをブロック化 */
  #schedule02 table,
  #schedule02 tbody,
  #schedule02 tr {
    display: block;
    width: 100%;
  }

  /* 2列レイアウト */
  #schedule02 tr {
    display: grid;
    grid-template-columns: 40% 60%;
  }

  #schedule02 article th {
    padding: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 15px;
  }

  #schedule02 article td {
    padding: 1.5rem 1rem;
    width: 100%;
    text-align: left;
    font-size: 14px;
  }

  #schedule02 tr:nth-child(2) {
    grid-template-columns: 40% 60%;
  }

  #schedule02 tr:nth-child(2) th:nth-of-type(1) {
    grid-column: 1;
    grid-row: 1;
  }

  #schedule02 tr:nth-child(2) td:nth-of-type(1) {
    grid-column: 2;
    grid-row: 1;
  }

  #schedule02 tr:nth-child(2) th:nth-of-type(2) {
    grid-column: 1;
    grid-row: 2;
  }

  #schedule02 tr:nth-child(2) td:nth-of-type(2) {
    grid-column: 2;
    grid-row: 2;
  }

  #schedule02 table tr:nth-child(2) th:nth-of-type(2) {
    width: 100%;
  }

  #schedule02 article th {
    width: 100%;
    padding: 1.5rem 1rem;
    font-weight: normal;
  }

}

.open-company h4 {
  margin-bottom: 1.88rem;
}

.open-company .open-company_text {
  text-align: center;
  margin-bottom: 3.13rem;
  font-weight: 400;
}

.open-company .open-company_add {
  display: inline-block;
  width: 100%;
  background-color: #fff;
  text-align: center;
  margin-bottom: 1.88rem;
  padding: 0.31rem 0;

  @media (max-width: 820px) {
    text-align: left;
    padding: 15px 13px;
    line-height: 1.375;
  }
}

.open-company .flex-pc {
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.open-company .img-box_04 {
  aspect-ratio: 29 / 15;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  flex: 1;
}

@media (max-width: 820px) {
  .open-company .img-box_04:first-of-type {
    aspect-ratio: 29 / 15;
    margin-bottom: 1.88rem;
  }
}

.open-company .img-box_04 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* SECTION FLOW */

#flow {
  background-color: #fff;
  background-image:
    repeating-linear-gradient(to bottom,
      #F7F7F7 0,
      #F7F7F7 1px,
      transparent 1px,
      transparent 1.25rem),
    repeating-linear-gradient(to right,
      #F7F7F7 0,
      #F7F7F7 1px,
      transparent 1px,
      transparent 1.25rem);
}

.flow-wrapper {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 6.25rem 6%;

  @media (max-width: 820px) {
    padding: 6.25rem 2.666%;
  }
}

#flow .flex-pc {
  justify-content: space-around;
}

#flow .flow-list {
  width: 25rem;
  font-size: 1.125rem;
}

@media (max-width: 820px) {
  #flow .flow-list {
    width: 100%;
    font-size: 1rem;
  }
}

#flow .flow-item {
  width: 100%;
  height: 3.75rem;
  border-radius: 9999px;
  background-color: #fff;
  border: 1px solid #707070;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 3.13rem;
}

@media (max-width: 820px) {
  #flow .flow-item {
    height: 5rem;
  }
}

#flow .flow-item::after {
  content: "";
  background-image: url("/jp/recruit/movie/images/icon_index_arrowdown.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  top: 4.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}

@media (max-width: 820px) {
  #flow .flow-item::after {
    top: 6rem;
  }
}

#flow .flow-item:last-child::after {
  display: none;
}

#flow .flow-item:first-of-type {
  background-color: #EE1C2C;
  color: #fff;
  border: none;
  font-size: 1.25rem;
}

@media (max-width: 820px) {
  #flow .flow-item:first-of-type {
    font-size: 1.125rem;
  }
}

/* SECTION VOICE */

#voice {
  background-color: #F7F7F7;
  padding-bottom: 5rem;
}

#voice .heading {
  margin-bottom: 0;
}

.voice-wrapper {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 6.25rem 6% 5rem 6%;

  @media (max-width: 820px) {
    padding: 6.25rem 2.666% 5rem;
  }
}

#voice .flex-pc {
  align-items: center;
}

#voice h3 {
  margin-left: 3.13rem;
  font-size: 1.25rem;
}

@media (max-width: 820px) {
  #voice h3 {
    margin-left: 0;
    margin-top: 3.13rem;
    font-size: 1.88rem;
    line-height: 3rem;
    text-align: center;
  }
}

.voice-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 5rem;
  text-align: center;
}

@media (max-width: 820px) {
  .voice-container {
    margin-top: 3.13rem;
  }
}

.voice-item {
  width: 73%;
  display: flex;
  flex-direction: column;
}

@media (max-width: 820px) {
  .voice-item {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}

.voice-item {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.voice-item.is-show {
  opacity: 1;
  transform: translateY(0);
}

.voice-item:nth-child(1).is-show {
  transition-delay: 0.1s;
}

.voice-item:nth-child(2).is-show {
  transition-delay: 0.2s;
}

.voice-item:nth-child(3).is-show {
  transition-delay: 0.3s;
}

.voice-item:nth-child(4).is-show {
  transition-delay: 0.4s;
}

.voice-item:nth-child(5).is-show {
  transition-delay: 0.5s;
}

.voice-item:nth-child(6).is-show {
  transition-delay: 0.6s;
}

.voice-item.is-left {
  align-self: flex-start;
  align-items: flex-start;
}

.voice-item.is-right {
  align-self: flex-end;
}

.voice-balloon {
  background-color: #fff;
  padding: 1.88rem;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.voice-balloon::before {
  content: "";
  position: absolute;
  bottom: -20px;
  border-style: solid;
}

.is-left .voice-balloon::before,
.is-right .voice-balloon::before {
  left: 13rem;
  bottom: -25px;
  border-width: 40px 25px 0 0;
  border-color: #fff transparent transparent transparent;
  transform: rotate(30deg);
}

.voice-balloon p {
  line-height: 1.8;
  font-size: 0.95rem;
  text-align: left;
}

.highlight {
  background: linear-gradient(transparent 60%, #fff100 60%);
  font-weight: bold;
}

.voice-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  line-height: 1.125;
}

.voice-icon {
  width: 70px;
  height: auto;
}

.voice-info .dept {
  font-size: 0.9rem;
}

.voice-info .type {
  font-size: 0.9rem;
}

@media (min-width: 821px) {
  .voice-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2列にする */
    gap: 1.25rem 2.5rem;
  }

  .voice-item:nth-child(1),
  .voice-item:nth-child(2),
  .voice-item:nth-child(5),
  .voice-item:nth-child(6) {
    grid-column: 1 / 3;
    width: 75%;
  }

  .voice-item:nth-child(3),
  .voice-item:nth-child(4) {
    width: 100%;
    grid-column: auto;
  }

  .voice-item:nth-child(odd):not(:nth-child(3)) {
    justify-self: start;
  }

  .voice-item:nth-child(even):not(:nth-child(4)) {
    justify-self: end;
  }
}

.voice-item:nth-child(1) {
  margin-bottom: -3.13rem;
}

@media (max-width: 821px) {
  .voice-item:nth-child(1) {
    margin-bottom: 0;
  }
}

.voice-item:nth-child(5) {
  margin-left: 6.25rem;
}

@media (max-width: 820px) {
  .voice-item:nth-child(5) {
    margin-left: 0;
  }
}

.voide_btn-area {
  display: flex;
  justify-content: space-between;
  gap: 0.31rem;
  position: relative;
}

.voide_btn-area span {
  position: absolute;
  bottom: 3rem;
  left: 25%;
  transform: translate(-50%);
  color: #fff;
}

@media (max-width: 820px) {
  .voide_btn-area span {
    bottom: 2rem;
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.2;
  }
}

.voide_btn-area a img {
  margin-left: auto;
  margin-right: auto;
  width: 15.6rem;
}

.voide_btn-area a:first-child img {
  margin-left: auto;
  margin-right: auto;
  width: 12rem;
  margin-top: 1rem;
}

@media (max-width: 820px) {
  .voide_btn-area a img {
    width: 8rem;
  }

  .voide_btn-area a:first-child img {
    width: 6rem;
    margin-top: 0.5rem;
  }
}

/* SECTION MOVIE */

#movie {
  border-bottom: 2px solid #cccccc;
}

.movie-wrapper {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 6.25rem 6%;

  @media (max-width: 820px) {
    padding: 6.25rem 2.666%;
  }
}

#movie .heading {
  margin-bottom: 0;
}

.movie_heading-box {
  text-align: center;
  margin-top: 3.13rem;
  margin-bottom: 3.13rem;
}

.movie_heading-box img {
  margin-left: auto;
  margin-right: auto;
  width: 7.5rem;
}

.movie_heading-box h4 {
  font-size: 2.5rem;

  @media (max-width: 820px) {
    font-size: 1.8rem;
  }
}

#movie .flex-pc {
  align-items: center;
}

#movie h3 {
  margin-left: 3.13rem;
  font-size: 1.25rem;

  @media (max-width: 820px) {
    font-size: 1rem;
  }
}

@media (max-width: 820px) {
  #movie h3 {
    font-size: 1.125rem;
    margin-left: 0;
    text-align: center;
    line-height: 1.5rem;
    margin-top: 3.13rem;
  }
}

#movie .flex-pc {
  gap: 0.94rem;
}

@media (max-width: 820px) {
  #movie .flex-pc li {
    margin-bottom: 3.13rem;
  }
}

@media (max-width: 820px) {
  #movie .flex-pc li:last-of-type {
    margin-bottom: 0rem;
  }
}

#movie .movie-title {
  text-align: center;
  font-weight: 700;
  margin-top: 0.94rem;
}

@media (max-width: 820px) {
  #movie .movie-title {
    font-size: 1.25rem;
  }
}

#movie .movie-title span {
  color: #EE1C2C;
}

/* TAIYO YUDEN INTERNSHIP 2028 SCROLL */

.bg-scroll {
  position: absolute;
  top: 6.25rem;
  left: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}

.bg-scroll-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: scrollBg 35s linear infinite;
  animation-delay: 5s;
}

.bg-scroll-track img {
  height: 120px;
  margin-right: 10px;
  width: auto;
  flex-shrink: 0;

  /* opacity: 0.25; */
  @media (max-width: 820px) {
    height: 60px;
  }
}

@keyframes scrollBg {

  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

}

/* YOUTUBE THUMBNAIL */

.thumb-box {
  position: relative;
  display: inline-block;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95px;
  height: 60px;
  cursor: pointer;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.movie-box:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.2);
}

.thumb-box:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.2);
}

/* FOOTER */

.footer_btn-area {
  text-align: center;
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.footer_btn-area a {
  margin-left: auto;
  margin-right: auto;
}

.coyright-box {
  width: 100%;
  text-align: center;
  background-color: #F7F7F7;
  font-family: 'Gotham', 'noto sans jp', sans-serif;
  font-size: 0.75rem;
  height: 3.13rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  padding-right: 0.5rem;
  /* ←これで“余白風”を作る */
  box-sizing: border-box;
}

.swiper-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: end;
  position: static !important;
}

/* 通常（□） */
.swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ccc;
  opacity: 1;
  margin: 0 !important;
}

/* アクティブ（■） */
.swiper-pagination-bullet-active {
  background: #e60012 !important;
}

.swiper-control {
  display: flex;
  align-items: center;
  gap: 17px;
  justify-content: end;
  margin-top: 0.3em;
}

/* 外枠 */
.swiper-pause {
  width: 30px;
  height: 30px;
  background-color: #fff;
  border: 2px solid #e60012;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  box-sizing: border-box;

  @media (max-width: 820px) {
    width: 20px;
    height: 20px;
  }
}

/* || の線 */
.swiper-pause::before,
.swiper-pause::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 4px;
  height: 10px;
  background: #e60012;
  transform: translateY(-50%);

  @media (max-width: 820px) {
    width: 3px;
    height: 8px;
  }
}

.swiper-pause::before {
  left: 7px;

  @media (max-width: 820px) {
    left: 4px;
  }
}

.swiper-pause::after {
  right: 7px;

  @media (max-width: 820px) {
    right: 4px;
  }
}


/* 再生 ▶ に変える */
.swiper-pause.is-play::before {
  content: "";
  position: absolute;

  top: 50%;
  left: 15px;

  width: 10px;
  height: 14px;

  clip-path: polygon(0 0,100% 50%,0 100%);
  background-color: #e60012;

  transform: translate(-50%, -50%);
  @media (max-width: 820px) {
    width: 8px;
    height: 10px;
    left: 9px;
  }
}

.swiper-pause.is-play::after {
  display: none;
}

#about {
  scroll-margin-top: 100px;
  @media (max-width: 820px) {
    scroll-margin-top: 90px;
  }
}