@charset "UTF-8";

/* =========================================
   知立自動車学校 採用ページ
========================================= */

.new-recruit,
.new-recruit * {
  box-sizing: border-box;
}

.new-recruit {
  width: 100%;
  overflow: hidden;
  color: #263238;
  background: #fff;
  font-family:
    "Noto Sans JP",
    "Yu Gothic",
    "游ゴシック",
    "Hiragino Kaku Gothic ProN",
    sans-serif;
}

.new-recruit img {
  display: block;
  width: 100%;
  height: auto;
}

.new-recruit h1,
.new-recruit h2,
.new-recruit h3,
.new-recruit p {
  margin-top: 0;
}

.nr-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.nr-section {
  padding: 110px 0;
}

.nr-heading {
  margin-bottom: 60px;
  text-align: center;
}

.nr-heading--left {
  text-align: left;
}

.nr-heading__en {
  margin-bottom: 12px;
  color: #55a9dd;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.nr-heading h2 {
  margin-bottom: 18px;
  color: #174f79;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.nr-heading__line {
  display: inline-block;
  width: 70px;
  height: 4px;
  border-radius: 5px;
  background: #79c8ec;
}


/* メインビジュアル */

.nr-hero {
  position: relative;
  min-height: 720px;
  height: calc(100vh - 90px);
  max-height: 920px;
  overflow: hidden;
  background: #333;
}

.nr-hero__slides,
.nr-hero__slide {
  position: absolute;
  inset: 0;
}

.nr-hero__slide {
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity 1.5s ease,
    transform 7s linear;
}

.nr-hero__slide.is-active {
  z-index: 2;
  opacity: 1;
  transform: scale(1);
}

.nr-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.nr-hero__overlay {
  display: none !important;
}

.nr-hero__content {
  position: relative;
  z-index: 4;
  top: 50%;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  color: #fff;
  transform: translateY(-50%);
}

.nr-hero__small {
  margin-bottom: 25px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.nr-hero h1 {
  margin-bottom: 30px;
  font-size: clamp(46px, 6vw, 86px);
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.2);
}

.nr-hero h1 span {
  display: block;
}

.nr-hero__lead {
  margin: 0;
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}

.nr-hero__scroll {
  position: absolute;
  z-index: 4;
  right: 35px;
  bottom: 40px;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.nr-hero__scroll::after {
  display: block;
  width: 1px;
  height: 70px;
  margin: 15px auto 0;
  background: rgba(255, 255, 255, 0.8);
  content: "";
  animation: nrScrollLine 1.8s infinite;
}


/* 働く魅力 */

.nr-features {
  background:
    linear-gradient(
      180deg,
      #fff 0%,
      #f1f9fd 100%
    );
}

.nr-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.nr-feature {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(40, 98, 130, 0.12);
}

.nr-feature__number {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 18px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.nr-feature__image {
  height: 260px;
  overflow: hidden;
}

.nr-feature__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.nr-feature:hover .nr-feature__image img {
  transform: scale(1.06);
}

.nr-feature__body {
  padding: 32px 28px 35px;
}

.nr-feature__body h3 {
  margin-bottom: 17px;
  color: #176a9b;
  font-size: 24px;
  text-align: center;
}

.nr-feature__body p {
  margin-bottom: 0;
  color: #555;
  font-size: 15px;
  line-height: 2;
}


/* 仕事紹介 */

.nr-about {
  background: #fff;
}

.nr-about__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 75px;
}

.nr-about__image {
  position: relative;
}

.nr-about__image::before {
  position: absolute;
  z-index: -1;
  right: -25px;
  bottom: -25px;
  width: 70%;
  height: 70%;
  border-radius: 18px;
  background: #dff4fc;
  content: "";
}

.nr-about__image img {
  min-height: 520px;
  border-radius: 18px;
  object-fit: cover;
}

.nr-about__catch {
  margin-bottom: 30px;
  color: #1976a8;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.7;
}

.nr-about__content > p:not(.nr-about__catch) {
  margin-bottom: 18px;
  color: #555;
  line-height: 2.1;
}


/* 業務内容 */

.nr-works {
  background: #edf8fd;
}

.nr-works__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.nr-work {
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(31, 102, 140, 0.1);
}

.nr-work__image {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.nr-work__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.nr-work:hover img {
  transform: scale(1.05);
}

.nr-work__number {
  position: absolute;
  right: 18px;
  bottom: -2px;
  color: #fff;
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

.nr-work__body {
  padding: 30px 32px 34px;
}

.nr-work__body h3 {
  margin-bottom: 15px;
  color: #176a9b;
  font-size: 27px;
}

.nr-work__body p {
  margin-bottom: 0;
  color: #555;
  line-height: 1.9;
}


/* 指導員 */

.nr-day {
  background: #fff;
}

.nr-staff {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 55px;
  margin-bottom: 85px;
}

.nr-staff__photo {
  position: relative;
}

.nr-staff__photo img {
  height: 500px;
  border-radius: 22px;
  object-fit: cover;
}

.nr-staff__profile {
  padding: 25px 10px 0;
  text-align: center;
}

.nr-staff__label {
  margin-bottom: 5px;
  color: #62afd8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.nr-staff__profile h3 {
  margin-bottom: 7px;
  color: #174f79;
  font-size: 28px;
}

.nr-staff__profile p:last-child {
  margin: 0;
  color: #666;
}

.nr-comment {
  position: absolute;
  z-index: 2;
  top: 32px;
  width: 230px;
  padding: 24px 20px;
  border-radius: 50%;
  color: #155d88;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 30px rgba(20, 75, 105, 0.18);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.nr-comment::after {
  position: absolute;
  bottom: -17px;
  border-width: 22px 14px 0;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.95) transparent transparent;
  content: "";
}

.nr-comment--left {
  left: -30px;
}

.nr-comment--left::after {
  left: 65%;
  transform: rotate(-18deg);
}

.nr-comment--right {
  right: -30px;
}

.nr-comment--right::after {
  right: 65%;
  transform: rotate(18deg);
}


/* タイムライン */

.nr-timeline {
  position: relative;
  width: min(850px, 100%);
  margin: 0 auto;
}

.nr-timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 125px;
  width: 2px;
  background: #b8deef;
  content: "";
}

.nr-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 50px;
  padding-bottom: 42px;
}

.nr-timeline__item::before {
  position: absolute;
  top: 7px;
  left: 117px;
  width: 18px;
  height: 18px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #4ba5d4;
  box-shadow: 0 0 0 2px #4ba5d4;
  content: "";
}

.nr-timeline__time {
  color: #1976a8;
  font-size: 22px;
  font-weight: 800;
  text-align: right;
}

.nr-timeline__content {
  padding: 0 0 20px 20px;
}

.nr-timeline__content h3 {
  margin-bottom: 8px;
  color: #174f79;
  font-size: 21px;
}

.nr-timeline__content p {
  margin: 0;
  color: #666;
}


/* 選考フロー */

.nr-flow {
  background: #eaf7fc;
}

.nr-flow__list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
}

.nr-flow__item {
  flex: 1;
  max-width: 245px;
  padding: 35px 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(29, 95, 130, 0.08);
  text-align: center;
}

.nr-flow__step {
  display: inline-block;
  margin-bottom: 15px;
  color: #4ba5d4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.nr-flow__item h3 {
  margin-bottom: 13px;
  color: #174f79;
  font-size: 21px;
}

.nr-flow__item p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.8;
}

.nr-flow__arrow {
  display: flex;
  align-items: center;
  color: #62afd8;
  font-size: 25px;
}


/* 募集要項 */

.nr-requirements {
  background: #fff;
}

.nr-table {
  overflow: hidden;
  border: 1px solid #d7e6ed;
  border-radius: 14px;
}

.nr-table__row {
  display: grid;
  grid-template-columns: 230px 1fr;
  border-bottom: 1px solid #d7e6ed;
}

.nr-table__row:last-child {
  border-bottom: 0;
}

.nr-table__head {
  display: flex;
  align-items: center;
  padding: 25px 28px;
  color: #175f89;
  background: #eaf6fb;
  font-weight: 700;
}

.nr-table__body {
  padding: 25px 30px;
  color: #4f5b61;
  line-height: 1.9;
}

.nr-requirements__note {
  margin: 20px 0 0;
  color: #777;
  font-size: 13px;
}


/* エントリー */

.nr-entry {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nr-entry__background,
.nr-entry__background img,
.nr-entry__overlay {
  position: absolute;
  inset: 0;
}

.nr-entry__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.nr-entry__content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 40px));
  padding: 70px 30px;
  color: #fff;
  text-align: center;
}

.nr-entry__en {
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.25em;
}

.nr-entry h2 {
  margin-bottom: 25px;
  font-size: clamp(35px, 5vw, 58px);
  line-height: 1.45;
  letter-spacing: 0.07em;
}

.nr-entry__content > p:not(.nr-entry__en) {
  margin-bottom: 40px;
  font-size: 17px;
  line-height: 2;
}

.nr-entry__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: min(420px, 100%);
  padding: 23px 28px;
  border: 2px solid #fff;
  border-radius: 50px;
  color: #14658f;
  background: #fff;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.nr-entry__button:hover {
  color: #fff;
  background: transparent;
}

.nr-entry__arrow {
  font-size: 24px;
}


/* アニメーション初期状態 */

.nr-animate {
  opacity: 0;
}

.nr-animate.is-show {
  opacity: 1;
}

.nr-jack.is-show {
  animation: nrJackInTheBox 0.9s both;
}

.nr-rubber.is-show {
  animation: nrRubberBand 1s both;
}

.nr-pulse.is-show {
  animation: nrPulse 1.15s 2 both;
}

.nr-fade.is-show {
  animation: nrFadeUp 0.9s both;
}


/* キーフレーム */

@keyframes nrJackInTheBox {
  0% {
    opacity: 0;
    transform: scale(0.1) rotate(25deg);
    transform-origin: center bottom;
  }

  50% {
    transform: rotate(-10deg);
  }

  70% {
    transform: rotate(4deg);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes nrRubberBand {
  0% {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, 0.95, 1);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes nrPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes nrFadeUp {
  0% {
    opacity: 0;
    transform: translateY(35px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes nrScrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  45% {
    transform: scaleY(1);
    transform-origin: top;
  }

  55% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}


/* タブレット */

@media screen and (max-width: 1000px) {

  .nr-section {
    padding: 85px 0;
  }

  .nr-features__grid {
    gap: 20px;
  }

  .nr-feature__image {
    height: 220px;
  }

  .nr-about__grid {
    gap: 45px;
  }

  .nr-about__image img {
    min-height: 440px;
  }

  .nr-staff {
    gap: 30px;
  }

  .nr-comment--left {
    left: 10px;
  }

  .nr-comment--right {
    right: 10px;
  }

  .nr-flow__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .nr-flow__item {
    max-width: none;
  }

  .nr-flow__arrow {
    display: none;
  }
}


/* スマートフォン */

@media screen and (max-width: 767px) {

  .nr-inner {
    width: min(100% - 32px, 1180px);
  }

  .nr-section {
    padding: 70px 0;
  }

  .nr-heading {
    margin-bottom: 38px;
  }

  .nr-heading h2 {
    font-size: 28px;
  }

  .nr-heading__en {
    font-size: 11px;
  }

  .nr-hero {
    min-height: 650px;
    height: calc(100svh - 60px);
    max-height: 780px;
  }

  .nr-hero__content {
    width: calc(100% - 42px);
  }

  .nr-hero h1 {
    margin-bottom: 22px;
    font-size: 39px;
  }

  .nr-hero__lead {
    font-size: 15px;
  }

  .nr-hero__scroll {
    right: 17px;
    bottom: 20px;
  }

  .nr-hero__slide img {
    object-position: center;
  }

  .nr-features__grid,
  .nr-works__grid,
  .nr-staff,
  .nr-about__grid {
    grid-template-columns: 1fr;
  }

  .nr-features__grid {
    gap: 28px;
  }

  .nr-feature__image {
    height: 250px;
  }

  .nr-feature__body {
    padding: 27px 22px 30px;
  }

  .nr-about__grid {
    gap: 45px;
  }

  .nr-about__image {
    order: 1;
  }

  .nr-about__content {
    order: 2;
  }

  .nr-about__image img {
    min-height: auto;
    height: 350px;
  }

  .nr-about__catch {
    font-size: 23px;
  }

  .nr-work__image {
    height: 250px;
  }

  .nr-work__body {
    padding: 25px 22px 28px;
  }

  .nr-staff {
    gap: 55px;
    margin-bottom: 65px;
  }

  .nr-staff__photo img {
    height: 430px;
  }

  .nr-comment {
    top: 15px;
    width: 190px;
    padding: 20px 15px;
    font-size: 13px;
  }

  .nr-comment--left {
    left: 5px;
  }

  .nr-comment--right {
    right: 5px;
  }

  .nr-timeline::before {
    left: 72px;
  }

  .nr-timeline__item {
    grid-template-columns: 55px 1fr;
    gap: 28px;
  }

  .nr-timeline__item::before {
    left: 64px;
  }

  .nr-timeline__time {
    font-size: 16px;
  }

  .nr-timeline__content {
    padding-left: 10px;
  }

  .nr-flow__list {
    grid-template-columns: 1fr;
  }

  .nr-table {
    border: 0;
  }

  .nr-table__row {
    display: block;
    margin-bottom: 18px;
    overflow: hidden;
    border: 1px solid #d7e6ed;
    border-radius: 10px;
  }

  .nr-table__head,
  .nr-table__body {
    padding: 17px 18px;
  }

  .nr-entry {
    min-height: 570px;
  }

  .nr-entry__content {
    padding: 60px 10px;
  }

  .nr-entry h2 {
    font-size: 34px;
  }

  .nr-entry__content > p:not(.nr-entry__en) {
    font-size: 15px;
  }

  .nr-sp {
    display: block;
  }
}


/* 動きを抑える設定の利用者向け */

@media (prefers-reduced-motion: reduce) {

  .nr-hero__slide,
  .nr-feature__image img,
  .nr-work__image img {
    transition: none;
  }

  .nr-animate,
  .nr-animate.is-show {
    opacity: 1;
    animation: none !important;
  }
}

/* =========================================
   指導員スケジュール・吹き出し修正版
========================================= */

.nr-day {
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f4f9fd 50%,
      #ffffff 100%
    );
}

.nr-schedule-list {
  display: flex;
  flex-direction: column;
  gap: 130px;
}


/* 人物全体 */

.nr-schedule-person {
  position: relative;
  width: 100%;
}

.nr-schedule-person__top {
  display: grid;
  align-items: center;
  gap: 28px;
}

.nr-schedule-person--male .nr-schedule-person__top {
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
}

.nr-schedule-person--female .nr-schedule-person__top {
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1.45fr);
}


/* 人物写真 */

.nr-schedule-person__photo {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 350px;
}

.nr-schedule-person__photo--male {
  justify-self: end;
}

.nr-schedule-person__photo--female {
  justify-self: start;
}

.nr-schedule-person__photo::before {
  position: absolute;
  z-index: -1;
  top: -22px;
  right: -20px;
  width: 100%;
  height: 100%;
  border-radius: 46% 54% 52% 48% / 52% 46% 54% 48%;
  background: #e8f3fb;
  content: "";
}

.nr-schedule-person__photo--female::before {
  right: auto;
  left: -20px;
}

.nr-schedule-person__photo img {
  width: 100%;
  height: 390px;
  border-radius: 24px;
  object-fit: cover;
  object-position: center top;
}


/* 大きな吹き出し */

.nr-schedule-balloon {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 43px 50px;
  border: 4px solid #1373c4;
  border-radius: 55px;
  color: #222;
  background: #fff;
  box-shadow: 0 12px 35px rgba(29, 91, 135, 0.1);
}

.nr-schedule-balloon p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 2.15;
  letter-spacing: 0.04em;
}

/* 男性側：吹き出しの先を右下へ */

.nr-schedule-balloon--male::before {
  position: absolute;
  right: 45px;
  bottom: -39px;
  width: 55px;
  height: 55px;
  border-right: 4px solid #1373c4;
  border-bottom: 4px solid #1373c4;
  background: #fff;
  content: "";
  transform: rotate(45deg);
}

.nr-schedule-balloon--male::after {
  position: absolute;
  right: 31px;
  bottom: -8px;
  width: 82px;
  height: 28px;
  background: #fff;
  content: "";
}

/* 女性側：吹き出しの先を左下へ */

.nr-schedule-balloon--female::before {
  position: absolute;
  bottom: -39px;
  left: 45px;
  width: 55px;
  height: 55px;
  border-right: 4px solid #1373c4;
  border-bottom: 4px solid #1373c4;
  background: #fff;
  content: "";
  transform: rotate(45deg);
}

.nr-schedule-balloon--female::after {
  position: absolute;
  bottom: -8px;
  left: 31px;
  width: 82px;
  height: 28px;
  background: #fff;
  content: "";
}


/* 写真下のスケジュール */

.nr-schedule-person__bottom {
  display: grid;
  align-items: start;
  gap: 55px;
  margin-top: 30px;
}

.nr-schedule-person--male .nr-schedule-person__bottom {
  grid-template-columns: minmax(0, 1fr) 350px;
}

.nr-schedule-person--female .nr-schedule-person__bottom {
  grid-template-columns: 350px minmax(0, 1fr);
}

.nr-schedule-card {
  width: 100%;
  max-width: 470px;
  padding: 28px 32px 30px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 35px rgba(29, 91, 135, 0.13);
}

.nr-schedule-person--male .nr-schedule-card {
  justify-self: start;
}

.nr-schedule-person--female .nr-schedule-card {
  justify-self: end;
}

.nr-schedule-card__title {
  margin: 0;
  color: #1272c3;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.nr-schedule-card__subtitle {
  margin: 3px 0 22px;
  color: #333;
  font-size: 12px;
  font-weight: 700;
}

.nr-schedule-card__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nr-schedule-card__row {
  display: grid;
  grid-template-columns: 55px 18px 1fr;
  align-items: center;
  gap: 12px;
}

.nr-schedule-card__time {
  color: #1272c3;
  font-size: 14px;
  font-weight: 800;
}

.nr-schedule-card__icon {
  color: #1272c3;
  font-size: 9px;
  text-align: center;
}

.nr-schedule-card__text {
  color: #333;
  font-size: 15px;
  font-weight: 600;
}


/* 人物名 */

.nr-schedule-person__profile {
  align-self: center;
}

.nr-schedule-person__profile--male {
  padding-left: 25px;
}

.nr-schedule-person__profile--female {
  padding-right: 25px;
  text-align: right;
}

.nr-schedule-person__profile h3 {
  margin: 0 0 8px;
  color: #111;
  font-size: 27px;
  font-weight: 800;
}

.nr-schedule-person__profile p {
  margin: 0;
  color: #333;
  font-size: 15px;
  font-weight: 600;
}


/* タブレット */

@media screen and (max-width: 1000px) {

  .nr-schedule-list {
    gap: 100px;
  }

  .nr-schedule-balloon {
    padding: 35px 35px;
  }

  .nr-schedule-balloon p {
    font-size: 16px;
  }

  .nr-schedule-person__photo {
    max-width: 300px;
  }

  .nr-schedule-person__photo img {
    height: 350px;
  }

  .nr-schedule-person--male .nr-schedule-person__top {
    grid-template-columns: minmax(0, 1.3fr) 300px;
  }

  .nr-schedule-person--female .nr-schedule-person__top {
    grid-template-columns: 300px minmax(0, 1.3fr);
  }

  .nr-schedule-person--male .nr-schedule-person__bottom {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

  .nr-schedule-person--female .nr-schedule-person__bottom {
    grid-template-columns: 300px minmax(0, 1fr);
  }
}


/* スマートフォン */

@media screen and (max-width: 767px) {

  .nr-schedule-list {
    gap: 90px;
  }

  .nr-schedule-person__top,
  .nr-schedule-person--male .nr-schedule-person__top,
  .nr-schedule-person--female .nr-schedule-person__top {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }

  .nr-schedule-person--male .nr-schedule-balloon {
    order: 1;
  }

  .nr-schedule-person--male .nr-schedule-person__photo {
    order: 2;
  }

  .nr-schedule-person--female .nr-schedule-balloon {
    order: 1;
  }

  .nr-schedule-person--female .nr-schedule-person__photo {
    order: 2;
  }

  .nr-schedule-balloon {
    padding: 28px 22px;
    border-width: 3px;
    border-radius: 30px;
  }

  .nr-schedule-balloon p {
    font-size: 14px;
    line-height: 2;
  }

  .nr-schedule-balloon p br {
    display: none;
  }

  .nr-schedule-balloon--male::before,
  .nr-schedule-balloon--female::before {
    right: 50%;
    bottom: -28px;
    left: auto;
    width: 38px;
    height: 38px;
    border-right-width: 3px;
    border-bottom-width: 3px;
    transform: translateX(50%) rotate(45deg);
  }

  .nr-schedule-balloon--male::after,
  .nr-schedule-balloon--female::after {
    right: 50%;
    bottom: -5px;
    left: auto;
    width: 65px;
    height: 20px;
    transform: translateX(50%);
  }

  .nr-schedule-person__photo,
  .nr-schedule-person__photo--male,
  .nr-schedule-person__photo--female {
    justify-self: center;
    width: 78%;
    max-width: 280px;
  }

  .nr-schedule-person__photo img {
    height: 330px;
  }

  .nr-schedule-person__bottom,
  .nr-schedule-person--male .nr-schedule-person__bottom,
  .nr-schedule-person--female .nr-schedule-person__bottom {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 22px;
  }

  .nr-schedule-person--male .nr-schedule-person__profile,
  .nr-schedule-person--female .nr-schedule-person__profile {
    order: 1;
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .nr-schedule-person--male .nr-schedule-card,
  .nr-schedule-person--female .nr-schedule-card {
    order: 2;
    justify-self: center;
    width: 100%;
    max-width: none;
  }

  .nr-schedule-card {
    padding: 25px 22px;
  }

  .nr-schedule-card__title {
    font-size: 22px;
  }

  .nr-schedule-card__row {
    grid-template-columns: 50px 15px 1fr;
    gap: 8px;
  }

  .nr-schedule-card__text {
    font-size: 13px;
  }
}
/* =========================================
   教習指導員の一日・完成版
========================================= */

.nr-schedule-section {
  padding: 110px 0 130px;
  background:
    radial-gradient(
      circle at 15% 30%,
      rgba(218, 239, 252, 0.28) 0,
      rgba(218, 239, 252, 0) 30%
    ),
    radial-gradient(
      circle at 85% 55%,
      rgba(218, 239, 252, 0.25) 0,
      rgba(218, 239, 252, 0) 30%
    ),
    #fff;
}

.nr-schedule-intro {
  margin: 22px 0 0;
  color: #444;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.nr-schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 70px;
  margin-top: 70px;
}

.nr-schedule-column {
  min-width: 0;
}


/* ===============================
   吹き出し
================================ */

.nr-schedule-balloon {
  position: relative;
  z-index: 5;
  width: calc(100% + 20px);
  min-height: 235px;
  display: flex;
  align-items: center;
  padding: 36px 40px;
  border: 4px solid #0873ca;
  color: #111;
  background: #fff;
  box-shadow: 0 12px 30px rgba(30, 102, 154, 0.08);
}

.nr-schedule-balloon--female {
  margin-left: -20px;
  border-radius: 52px 52px 52px 20px;
}

.nr-schedule-balloon--male {
  margin-right: -20px;
  border-radius: 52px 52px 20px 52px;
}

.nr-schedule-balloon p {
  width: 100%;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.035em;
}

/* 吹き出しの先・女性 */

.nr-schedule-balloon--female::before {
  position: absolute;
  bottom: -35px;
  left: 95px;
  width: 48px;
  height: 48px;
  border-right: 4px solid #0873ca;
  border-bottom: 4px solid #0873ca;
  background: #fff;
  content: "";
  transform: rotate(45deg);
}

.nr-schedule-balloon--female::after {
  position: absolute;
  bottom: -7px;
  left: 78px;
  width: 82px;
  height: 25px;
  background: #fff;
  content: "";
}

/* 吹き出しの先・男性 */

.nr-schedule-balloon--male::before {
  position: absolute;
  right: 95px;
  bottom: -35px;
  width: 48px;
  height: 48px;
  border-right: 4px solid #0873ca;
  border-bottom: 4px solid #0873ca;
  background: #fff;
  content: "";
  transform: rotate(45deg);
}

.nr-schedule-balloon--male::after {
  position: absolute;
  right: 78px;
  bottom: -7px;
  width: 82px;
  height: 25px;
  background: #fff;
  content: "";
}


/* 飾り線 */

.nr-schedule-balloon--female {
  background-image:
    linear-gradient(#0873ca, #0873ca),
    linear-gradient(#0873ca, #0873ca),
    linear-gradient(#0873ca, #0873ca);
  background-repeat: no-repeat;
  background-size:
    5px 28px,
    5px 24px,
    5px 20px;
  background-position:
    14px -20px,
    31px -13px,
    46px -2px;
}

.nr-schedule-balloon--male {
  background-image:
    linear-gradient(#0873ca, #0873ca),
    linear-gradient(#0873ca, #0873ca),
    linear-gradient(#0873ca, #0873ca);
  background-repeat: no-repeat;
  background-size:
    5px 28px,
    5px 24px,
    5px 20px;
  background-position:
    calc(100% - 14px) -20px,
    calc(100% - 31px) -13px,
    calc(100% - 46px) -2px;
}


/* ===============================
   人物写真
================================ */

.nr-schedule-profile {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 290px;
  margin-top: 20px;
  padding: 0 20px;
}

.nr-schedule-profile--male {
  justify-content: flex-end;
}

.nr-schedule-photo {
  position: relative;
  z-index: 2;
  width: 285px;
  height: 285px;
}

.nr-schedule-photo__bg {
  position: absolute;
  z-index: -1;
  inset: 30px -40px 0;
  border-radius: 48% 52% 46% 54% / 55% 47% 53% 45%;
  background: rgba(221, 239, 251, 0.7);
  transform: rotate(-5deg);
}

.nr-schedule-profile--male .nr-schedule-photo__bg {
  transform: rotate(5deg);
}

.nr-schedule-photo img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: center top;
}

.nr-schedule-name {
  position: relative;
  z-index: 4;
  min-width: 125px;
  margin: 0 0 25px 20px;
}

.nr-schedule-profile--male .nr-schedule-name {
  order: -1;
  margin: 0 20px 25px 0;
  text-align: right;
}

.nr-schedule-name h3 {
  margin: 0 0 8px;
  color: #111;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.nr-schedule-name p {
  margin: 0;
  color: #111;
  font-size: 15px;
  font-weight: 700;
}


/* ===============================
   SCHEDULEカード
================================ */

.nr-schedule-card {
  width: calc(100% - 45px);
  min-height: 465px;
  margin: 15px auto 0;
  padding: 30px 38px 35px;
  border: 1px solid #edf1f4;
  border-radius: 18px;
  background: #fff;
  box-shadow:
    0 14px 35px rgba(29, 78, 112, 0.1),
    0 2px 8px rgba(29, 78, 112, 0.05);
}

.nr-schedule-card > h3 {
  margin: 0 0 20px;
  color: #0873ca;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.nr-schedule-row {
  position: relative;
  display: grid;
  grid-template-columns: 58px 34px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  min-height: 45px;
}

.nr-schedule-row:not(:last-of-type)::after {
  position: absolute;
  bottom: -2px;
  left: 29px;
  width: 1px;
  height: 14px;
  background: #9fcbed;
  content: "";
}

.nr-schedule-time {
  color: #0873ca;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.nr-schedule-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  border: 1px solid #c9e3f5;
  border-radius: 50%;
  color: #0873ca;
  background: #fff;
  font-size: 14px;
  line-height: 1;
}

.nr-schedule-text {
  color: #111;
  font-size: 15px;
  font-weight: 700;
}

.nr-schedule-note {
  margin: 22px 0 0;
  color: #888;
  font-size: 20px;
  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
  text-align: center;
}


/* ===============================
   タブレット
================================ */

@media screen and (max-width: 1050px) {

  .nr-schedule-grid {
    gap: 35px;
  }

  .nr-schedule-balloon {
    min-height: 250px;
    padding: 30px 28px;
  }

  .nr-schedule-balloon p {
    font-size: 14px;
  }

  .nr-schedule-photo {
    width: 235px;
    height: 260px;
  }

  .nr-schedule-name h3 {
    font-size: 20px;
  }

  .nr-schedule-card {
    width: calc(100% - 20px);
    padding: 28px 25px;
  }

  .nr-schedule-row {
    grid-template-columns: 52px 32px minmax(0, 1fr);
    gap: 8px;
  }

  .nr-schedule-text {
    font-size: 13px;
  }
}


/* ===============================
   スマートフォン
================================ */

@media screen and (max-width: 767px) {

  .nr-schedule-section {
    padding: 75px 0 90px;
  }

  .nr-schedule-grid {
    grid-template-columns: 1fr;
    gap: 85px;
    margin-top: 50px;
  }

  .nr-schedule-balloon,
  .nr-schedule-balloon--female,
  .nr-schedule-balloon--male {
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 25px 20px;
    border-width: 3px;
    border-radius: 30px;
  }

  .nr-schedule-balloon p {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.9;
  }

  .nr-schedule-balloon p br {
    display: none;
  }

  .nr-schedule-balloon--female::before,
  .nr-schedule-balloon--male::before {
    right: auto;
    bottom: -25px;
    left: 50%;
    width: 35px;
    height: 35px;
    border-right-width: 3px;
    border-bottom-width: 3px;
    transform: translateX(-50%) rotate(45deg);
  }

  .nr-schedule-balloon--female::after,
  .nr-schedule-balloon--male::after {
    right: auto;
    bottom: -5px;
    left: 50%;
    width: 60px;
    height: 18px;
    transform: translateX(-50%);
  }

  .nr-schedule-profile,
  .nr-schedule-profile--male {
    justify-content: center;
    min-height: 0;
    margin-top: 28px;
    padding: 0;
  }

  .nr-schedule-photo {
    width: 205px;
    height: 240px;
  }

  .nr-schedule-photo__bg {
    inset: 35px -30px 0;
  }

  .nr-schedule-name,
  .nr-schedule-profile--male .nr-schedule-name {
    min-width: 95px;
    margin: 0 0 18px 10px;
    text-align: left;
  }

  .nr-schedule-profile--male .nr-schedule-name {
    order: initial;
  }

  .nr-schedule-name h3 {
    font-size: 18px;
  }

  .nr-schedule-name p {
    font-size: 12px;
  }

  .nr-schedule-card {
    width: 100%;
    min-height: 0;
    margin-top: 10px;
    padding: 26px 20px 30px;
  }

  .nr-schedule-card > h3 {
    font-size: 20px;
  }

  .nr-schedule-row {
    grid-template-columns: 48px 30px minmax(0, 1fr);
    gap: 7px;
  }

  .nr-schedule-time {
    font-size: 13px;
  }

  .nr-schedule-icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .nr-schedule-text {
    font-size: 12px;
  }

  .nr-schedule-note {
    font-size: 17px;
  }
}
/* =========================================
   画像を使用した吹き出し
========================================= */

.nr-image-balloon {
  position: relative;
  z-index: 5;
  width: calc(100% + 25px);
  aspect-ratio: 3 / 1.3;
  overflow: visible;
}

.nr-image-balloon--female {
  margin-left: -25px;
}

.nr-image-balloon--male {
  margin-right: -25px;
}

.nr-image-balloon__bg {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
}

.nr-image-balloon__text {
  position: absolute;
  z-index: 2;
  top: 47%;
  left: 50%;
  width: 78%;
  margin: 0;
  color: #222;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: 0.035em;
  transform: translate(-50%, -50%);
}

/* 男性は画像を左右反転して、吹き出しの先を右側へ */

.nr-image-balloon--male .nr-image-balloon__bg {
  transform: scaleX(-1);
}

/* 文字まで反転しないようにする */

.nr-image-balloon--male .nr-image-balloon__text {
  transform: translate(-50%, -50%);
}


/* タブレット */

@media screen and (max-width: 1050px) {

  .nr-image-balloon {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .nr-image-balloon__text {
    width: 76%;
    font-size: 14px;
    line-height: 1.8;
  }
}


/* スマートフォン */

@media screen and (max-width: 767px) {

  .nr-image-balloon {
    width: 100%;
    min-height: 260px;
    aspect-ratio: auto;
    margin: 0;
  }

  .nr-image-balloon__bg {
    object-fit: fill;
  }

  .nr-image-balloon__text {
    top: 46%;
    width: 76%;
    font-size: 13px;
    line-height: 1.75;
  }

  .nr-image-balloon__text br {
    display: none;
  }
}

/* 吹き出し画像・表示修正版 */
.nr-image-balloon {
  position: relative;
  width: 100%;
  aspect-ratio: 1536 / 1024;
  margin-bottom: 10px;
}

.nr-image-balloon__bg {
  position: absolute !important;
  z-index: 1 !important;
  top: 0;
  left: 0;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: fill;
  opacity: 1 !important;
  visibility: visible !important;
}

.nr-image-balloon__text {
  position: absolute;
  z-index: 2;
  top: 48%;
  left: 50%;
  width: 76%;
  margin: 0;
  color: #222;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.9;
  transform: translate(-50%, -50%);
}

.nr-image-balloon--male .nr-image-balloon__bg {
  transform: scaleX(-1);
}

@media screen and (max-width: 767px) {
  .nr-image-balloon {
    min-height: 250px;
    aspect-ratio: auto;
  }

  .nr-image-balloon__text {
    width: 74%;
    font-size: 13px;
    line-height: 1.7;
  }

  .nr-image-balloon__text br {
    display: none;
  }
}
/* =========================================
   吹き出し画像の中に文字を重ねる・最終修正
========================================= */

.nr-image-balloon {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1536 / 1024 !important;
  margin: 0 0 20px !important;
  overflow: visible !important;
}

.nr-image-balloon__bg {
  position: absolute !important;
  z-index: 1 !important;
  top: 0 !important;
  right: auto !important;
  bottom: auto !important;
  left: 0 !important;

  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  margin: 0 !important;

  object-fit: fill !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.nr-image-balloon__text {
  position: absolute !important;
  z-index: 2 !important;
  top: 48% !important;
  left: 50% !important;

  display: block !important;
  width: 76% !important;
  margin: 0 !important;
  padding: 0 !important;

  color: #222 !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.9 !important;
  letter-spacing: 0.03em !important;
  text-align: left !important;

  transform: translate(-50%, -50%) !important;
}

/* 男性側も同じ向きで使用 */
.nr-image-balloon--male .nr-image-balloon__bg {
  transform: none !important;
}

@media screen and (max-width: 1000px) {
  .nr-image-balloon__text {
    width: 75% !important;
    font-size: 14px !important;
    line-height: 1.8 !important;
  }
}

@media screen and (max-width: 767px) {
  .nr-image-balloon {
    min-height: 250px !important;
    aspect-ratio: auto !important;
  }

  .nr-image-balloon__text {
    top: 47% !important;
    width: 73% !important;
    font-size: 13px !important;
    line-height: 1.7 !important;
  }

  .nr-image-balloon__text br {
    display: none;
  }
}

/* =========================================
   メインビジュアル修正
   黒いフィルター削除・画像上部の切れ防止
========================================= */

/* 黒いフィルターを完全に透明にする */
.nr-hero__overlay {
  background: transparent !important;
}

/* 画像全体を上寄せで表示 */
.nr-hero__slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center top !important;
  background: #fff;
}

/* メイン画像の高さを少し抑える */
.nr-hero {
  min-height: 650px !important;
  height: calc(100vh - 90px) !important;
  max-height: 820px !important;
}

/* =========================================
   選考フロー・参考画像再現版
========================================= */

.nr-flow {
  padding: 115px 0 130px;
  background: #fff;
}

.nr-flow-heading {
  margin-bottom: 85px;
  text-align: center;
}

.nr-flow-heading__title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.nr-flow-heading__title-wrap h2 {
  margin: 0;
  color: #005497;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.nr-flow-heading__side-line {
  display: block;
  width: 95px;
  height: 2px;
  background: #2296d0;
}

.nr-flow-heading__subtitle {
  position: relative;
  display: inline-block;
  margin: 26px 0 0;
  color: #005497;
  font-size: clamp(17px, 2vw, 25px);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.nr-flow-heading__subtitle::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 6px;
  background: #f5df5c;
  content: "";
  opacity: 0.8;
}


/* カード全体 */

.nr-flow-list {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    34px
    minmax(0, 1fr)
    34px
    minmax(0, 1fr)
    34px
    minmax(0, 1fr);
  align-items: center;
  gap: 15px;
}

.nr-flow-card {
  position: relative;
  min-width: 0;
  padding-top: 50px;
}

.nr-flow-card__inner {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 82px 25px 35px;
  border: 2px solid #76b6df;
  border-radius: 12px;
  background: #fff;
  text-align: center;
}


/* STEP円 */

.nr-flow-card__step {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  width: 105px;
  height: 105px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: #118ec9;
  box-shadow: 0 6px 18px rgba(17, 142, 201, 0.18);
  transform: translateX(-50%);
}

.nr-flow-card__step span {
  margin-bottom: 2px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nr-flow-card__step strong {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}


/* アイコン */

.nr-flow-card__icon {
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.nr-flow-card__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* 文言 */

.nr-flow-card h3 {
  margin: 0;
  color: #005497;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.nr-flow-card__line {
  display: block;
  width: 75%;
  height: 2px;
  margin: 14px auto 22px;
  background: #65afe0;
}

.nr-flow-card p {
  margin: 0;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
}


/* 矢印 */

.nr-flow-arrow {
  color: #0071bc;
  font-size: 27px;
  line-height: 1;
  text-align: center;
}


/* タブレット */

@media screen and (max-width: 1050px) {

  .nr-flow-list {
    grid-template-columns:
      minmax(0, 1fr)
      25px
      minmax(0, 1fr)
      25px
      minmax(0, 1fr)
      25px
      minmax(0, 1fr);
    gap: 8px;
  }

  .nr-flow-card__inner {
    min-height: 390px;
    padding: 72px 15px 28px;
  }

  .nr-flow-card__step {
    width: 90px;
    height: 90px;
  }

  .nr-flow-card__step strong {
    font-size: 32px;
  }

  .nr-flow-card__icon {
    width: 100px;
    height: 100px;
  }

  .nr-flow-card h3 {
    font-size: 21px;
  }

  .nr-flow-card p {
    font-size: 12px;
  }
}


/* スマートフォン */

@media screen and (max-width: 767px) {

  .nr-flow {
    padding: 75px 0 90px;
  }

  .nr-flow-heading {
    margin-bottom: 65px;
  }

  .nr-flow-heading__title-wrap {
    gap: 12px;
  }

  .nr-flow-heading__side-line {
    width: 35px;
  }

  .nr-flow-heading__title-wrap h2 {
    font-size: 36px;
  }

  .nr-flow-heading__subtitle {
    font-size: 16px;
    line-height: 1.7;
  }

  .nr-flow-list {
    display: flex;
    flex-direction: column;
    gap: 45px;
  }

  .nr-flow-card {
    width: 100%;
    padding-top: 45px;
  }

  .nr-flow-card__inner {
    width: min(100%, 340px);
    min-height: 0;
    margin: 0 auto;
    padding: 75px 28px 35px;
  }

  .nr-flow-card__step {
    width: 92px;
    height: 92px;
  }

  .nr-flow-card__icon {
    width: 115px;
    height: 115px;
  }

  .nr-flow-card h3 {
    font-size: 24px;
  }

  .nr-flow-card p {
    font-size: 14px;
  }

  .nr-flow-arrow {
    transform: rotate(90deg);
  }
}
/* =========================================
   エントリーボタンのみ変更
========================================= */

.nr-entry__button--large {
  position: absolute !important;
  z-index: 5 !important;
  right: 5% !important;
  bottom: 35px !important;
  left: 5% !important;

  width: auto !important;
  min-height: 180px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 22px 90px 20px !important;
  border: 0 !important;
  border-radius: 12px !important;

  color: #fff !important;
  background:
    linear-gradient(
      110deg,
      #18a8e6 0%,
      #087dcc 48%,
      #064eae 100%
    ) !important;

  box-shadow: 0 16px 38px rgba(0, 73, 145, 0.25) !important;
  text-decoration: none !important;

  transform: none !important;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease !important;
}

.nr-entry__button--large:hover {
  color: #fff !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 22px 45px rgba(0, 73, 145, 0.32) !important;
}

.nr-entry__button-ja {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: clamp(21px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
}

.nr-entry__button-en {
  position: relative;
  z-index: 2;
  display: block;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: clamp(55px, 7vw, 96px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.18em;
}

.nr-entry__button-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 45px;
  color: #fff;
  font-size: 55px;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.nr-entry__button--large:hover .nr-entry__button-arrow {
  transform: translate(10px, -50%);
}

@media screen and (max-width: 767px) {

  .nr-entry__button--large {
    right: 15px !important;
    bottom: 18px !important;
    left: 15px !important;
    min-height: 125px !important;
    padding: 15px 55px 15px 20px !important;
    border-radius: 8px !important;
  }

  .nr-entry__button-ja {
    font-size: 17px;
  }

  .nr-entry__button-en {
    font-size: 46px;
    letter-spacing: 0.12em;
  }

  .nr-entry__button-arrow {
    right: 18px;
    font-size: 35px;
  }
}

/* =========================================
   スマホ：メインビジュアル下の大きな余白を削除
========================================= */
@media screen and (max-width: 767px) {

  .nr-hero {
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: 16 / 9;
  }

  .nr-hero__slides,
  .nr-hero__slide {
    position: absolute;
    inset: 0;
  }

  .nr-hero__slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
  }

  .nr-features {
    margin-top: 0 !important;
    padding-top: 55px !important;
  }

  .nr-hero + .nr-features {
    margin-top: 0 !important;
  }
}

/* =========================================
   スマホ：ヘッダーとメインビジュアルの重なり修正
========================================= */
@media screen and (max-width: 767px) {

  .nr-hero {
    margin-top: 90px !important;
  }

}

/* =========================================
   働く魅力・資料画像に合わせた色と文章
========================================= */

.nr-features-heading .nr-heading__en {
  color: #111;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.nr-features-heading .nr-heading__en::after {
  display: block;
  width: 70%;
  height: 5px;
  margin: -18px auto 0;
  background: #ef4a2e;
  content: "";
  transform: rotate(-4deg);
}

.nr-features-heading h2 {
  margin-top: 12px;
  color: #111;
  font-size: 15px;
}


/* カード共通 */

.nr-feature {
  position: relative;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.nr-feature__image {
  overflow: hidden;
  border-radius: 0;
}

.nr-feature__body {
  padding: 25px 5px 15px;
}

.nr-feature__title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.nr-feature__number {
  position: static;
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: #fff;
  font-size: 29px;
  font-weight: 800;
  line-height: 1;
  text-shadow: none;
}

.nr-feature__title h3 {
  position: relative;
  margin: 0;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.45;
  text-align: left;
}

.nr-feature__title h3::after {
  display: block;
  width: 100%;
  height: 4px;
  margin-top: 6px;
  background: currentColor;
  content: "";
}

.nr-feature__lead {
  margin-bottom: 17px !important;
  color: inherit !important;
  font-size: 15px !important;
  font-weight: 800;
  line-height: 1.9 !important;
}

.nr-feature__body p:not(.nr-feature__lead) {
  margin-bottom: 13px;
  color: #333;
  font-size: 14px;
  line-height: 1.9;
}


/* 01 赤 */

.nr-feature--red {
  color: #ef402d;
}

.nr-feature--red .nr-feature__title h3,
.nr-feature--red .nr-feature__lead {
  color: #ef402d;
}


/* 02 青 */

.nr-feature--blue {
  color: #0878c9;
}

.nr-feature--blue .nr-feature__title h3,
.nr-feature--blue .nr-feature__lead {
  color: #0878c9;
}


/* 03 緑 */

.nr-feature--green {
  color: #45a23d;
}

.nr-feature--green .nr-feature__title h3,
.nr-feature--green .nr-feature__lead {
  color: #45a23d;
}


/* 装飾ドット */

.nr-feature::before {
  position: absolute;
  z-index: 2;
  width: 70px;
  height: 80px;
  background-image: radial-gradient(
    circle,
    currentColor 2px,
    transparent 3px
  );
  background-size: 12px 12px;
  content: "";
  opacity: 0.5;
  pointer-events: none;
}

.nr-feature--red::before {
  top: -15px;
  right: -20px;
}

.nr-feature--blue::before {
  bottom: 15px;
  left: -25px;
}

.nr-feature--green::before {
  right: -25px;
  bottom: 15px;
}


/* PC：画像と文章を交互配置に近づける */

@media screen and (min-width: 768px) {

  .nr-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }

  .nr-feature__image {
    height: 300px;
  }

  .nr-feature__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}


/* スマホ */

@media screen and (max-width: 767px) {

  .nr-features {
    padding-top: 55px !important;
  }

  .nr-features-heading {
    margin-bottom: 50px;
  }

  .nr-features-heading .nr-heading__en {
    font-size: 42px;
  }

  .nr-features__grid {
    display: flex;
    flex-direction: column;
    gap: 65px;
  }

  .nr-feature__image {
    height: 250px;
    border-radius: 24px;
  }

  .nr-feature__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .nr-feature__body {
    padding: 24px 3px 0;
  }

  .nr-feature__number {
    width: 62px;
    height: 62px;
    font-size: 25px;
  }

  .nr-feature__title {
    gap: 12px;
    margin-bottom: 18px;
  }

  .nr-feature__title h3 {
    font-size: 23px;
  }

  .nr-feature__lead {
    font-size: 14px !important;
  }

  .nr-feature__body p:not(.nr-feature__lead) {
    font-size: 13px;
  }
}

/* =========================================
   仕事を知る・資料イメージ再現
========================================= */

.nr-about {
  position: relative;
  padding: 110px 0 125px;
  overflow: hidden;
  background: #fff;
}

/* 「働く魅力」と同じ見出し形式 */

.nr-works-heading {
  margin-bottom: 55px;
  text-align: center;
}

.nr-works-heading .nr-heading__en {
  position: relative;
  display: inline-block;
  margin: 0;
  color: #111;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
}

.nr-works-heading .nr-heading__en::before {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 7px;
  border-radius: 50%;
  background: #079ab5;
  box-shadow: 17px 0 0 #079ab5;
  content: "";
  vertical-align: middle;
}

.nr-works-heading .nr-heading__en::after {
  display: block;
  width: 65%;
  height: 5px;
  margin: 6px auto 0;
  background: #079ab5;
  content: "";
  transform: rotate(-2deg);
}

.nr-works-heading h2 {
  margin: 14px 0 0;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.nr-works-heading .nr-heading__line {
  display: none;
}


/* 校舎写真 */

.nr-about__main-image {
  position: relative;
  width: calc(100% - 70px);
  margin: 0 auto;
}

.nr-about__main-image::before {
  position: absolute;
  z-index: -1;
  top: -38px;
  right: -65px;
  width: 280px;
  height: 75px;
  border-radius: 100% 0 0 0;
  background: #f18b00;
  content: "";
  transform: rotate(-4deg);
}

.nr-about__main-image::after {
  position: absolute;
  z-index: -1;
  bottom: 42px;
  left: -75px;
  width: 105px;
  height: 55px;
  background: #0097a7;
  content: "";
  transform: rotate(4deg);
}

.nr-about__main-image img {
  display: block;
  width: 100%;
  height: 430px;
  border-radius: 28px;
  object-fit: cover;
  object-position: center;
}


/* キャッチコピー */

.nr-about__main-catch {
  margin: 42px 0 45px;
  color: #0097a7;
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
}

.nr-about__main-catch span {
  color: #0097a7;
}


/* 教習指導員とは */

.nr-about__description {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: start;
  gap: 75px;
  width: calc(100% - 120px);
  margin: 0 auto;
}

.nr-about__label-en {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 14px;
  color: #087f98;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.nr-about__label-en span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #079ab5;
}

.nr-about__label h4 {
  margin: 0;
  color: #222;
  font-size: 22px;
  font-weight: 800;
}

.nr-about__label-line {
  display: block;
  width: 135px;
  height: 4px;
  margin-top: 16px;
  background: #079ab5;
  transform: rotate(-8deg);
  transform-origin: left center;
}

.nr-about__text p {
  margin: 0 0 12px;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.03em;
}


/* スマートフォン */

@media screen and (max-width: 767px) {

  .nr-about {
    padding: 75px 0 85px;
  }

  .nr-works-heading {
    margin-bottom: 42px;
  }

  .nr-works-heading .nr-heading__en {
    font-size: 42px;
  }

  .nr-about__main-image {
    width: 100%;
  }

  .nr-about__main-image::before {
    top: -20px;
    right: -35px;
    width: 135px;
    height: 45px;
  }

  .nr-about__main-image::after {
    bottom: 20px;
    left: -30px;
    width: 55px;
    height: 35px;
  }

  .nr-about__main-image img {
    height: 250px;
    border-radius: 20px;
  }

  .nr-about__main-catch {
    margin: 32px 0 38px;
    font-size: 25px;
    line-height: 1.6;
    text-align: left;
  }

  .nr-about__description {
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
  }

  .nr-about__label h4 {
    font-size: 21px;
  }

  .nr-about__text p {
    font-size: 14px;
    line-height: 1.9;
  }

  .nr-about__text p br {
    display: none;
  }
}

/* =========================================
   FEATURES見出しをWORKSと同じデザインに変更
========================================= */

.nr-features-heading {
  margin-bottom: 55px !important;
  text-align: center !important;
}

.nr-features-heading .nr-heading__en {
  position: relative !important;
  display: inline-block !important;
  margin: 0 !important;
  padding-left: 38px !important;

  color: #111 !important;
  font-size: clamp(42px, 6vw, 72px) !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: 0.12em !important;
}

/* 左側の丸2つ */
.nr-features-heading .nr-heading__en::before {
  position: absolute;
  top: 50%;
  left: 0;

  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ef452f;

  box-shadow: 18px 0 0 #ef452f;
  content: "";
  transform: translateY(-50%);
}

/* FEATURESの下の短い斜め赤線 */
.nr-features-heading .nr-heading__en::after {
  display: block !important;
  width: 72% !important;
  height: 5px !important;
  margin: 7px auto 0 !important;

  background: #ef452f !important;
  content: "" !important;
  transform: rotate(-2deg) !important;
}

/* 日本語見出し */
.nr-features-heading h2 {
  margin: 17px 0 0 !important;
  color: #111 !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  letter-spacing: 0.12em !important;
}

/* 既存の水色下線を消す */
.nr-features-heading .nr-heading__line {
  display: none !important;
}


/* スマホ */
@media screen and (max-width: 767px) {

  .nr-features-heading {
    margin-bottom: 42px !important;
  }

  .nr-features-heading .nr-heading__en {
    padding-left: 29px !important;
    font-size: 45px !important;
    letter-spacing: 0.08em !important;
  }

  .nr-features-heading .nr-heading__en::before {
    width: 9px;
    height: 9px;
    box-shadow: 14px 0 0 #ef452f;
  }

  .nr-features-heading .nr-heading__en::after {
    height: 4px !important;
  }

  .nr-features-heading h2 {
    margin-top: 14px !important;
    font-size: 15px !important;
  }
}
.nr-work__body p strong {
  color: #00a6c8;
  font-weight: 800;
}

/* =========================================
   募集要項・資料に合わせた表デザイン
========================================= */

.nr-requirements {
  padding: 110px 0 125px;
  background:
    linear-gradient(
      180deg,
      #f5fbff 0%,
      #ffffff 18%,
      #ffffff 82%,
      #f4faff 100%
    );
}

.nr-requirements-heading {
  margin-bottom: 60px;
  text-align: center;
}

.nr-requirements-table {
  overflow: hidden;
  border: 1px solid #a8d6ee;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 38px rgba(33, 116, 158, 0.08);
}

.nr-requirements-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  border-bottom: 1px solid #cbe4f1;
}

.nr-requirements-row:last-child {
  border-bottom: 0;
}

.nr-requirements-title {
  display: flex;
  align-items: center;
  padding: 30px 26px;
  color: #fff;
  background:
    linear-gradient(
      135deg,
      #168dcc 0%,
      #5cb9e6 100%
    );
  font-size: 17px;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.nr-requirements-content {
  padding: 30px 38px;
  color: #333;
  font-size: 15px;
  line-height: 1.9;
}

.nr-requirements-content p {
  margin: 0 0 14px;
}

.nr-requirements-content p:last-child {
  margin-bottom: 0;
}

.nr-requirements-emphasis {
  color: #087eb8;
  font-weight: 800;
}

.nr-requirements-salary {
  color: #087eb8;
  font-size: 20px;
  font-weight: 800;
}

.nr-requirements-note {
  color: #666;
  font-size: 13px;
}

.nr-requirements-step {
  margin: 18px 0;
  padding-left: 25px;
}

.nr-requirements-step li {
  margin-bottom: 8px;
  padding-left: 5px;
}

.nr-requirements-list {
  margin: 12px 0 18px;
  padding: 0;
  list-style: none;
}

.nr-requirements-list li {
  position: relative;
  margin-bottom: 7px;
  padding-left: 20px;
}

.nr-requirements-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #0798cf;
  font-weight: 800;
  content: "●";
}

.nr-requirements-footer-note {
  margin: 25px 0 0;
  color: #555;
  font-size: 13px;
  line-height: 1.8;
}


/* スマートフォン */

@media screen and (max-width: 767px) {

  .nr-requirements {
    padding: 75px 0 90px;
  }

  .nr-requirements-heading {
    margin-bottom: 42px;
  }

  .nr-requirements-table {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nr-requirements-row {
    display: block;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #b9deef;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(33, 116, 158, 0.07);
  }

  .nr-requirements-title {
    padding: 15px 18px;
    font-size: 16px;
  }

  .nr-requirements-content {
    padding: 22px 18px;
    font-size: 13px;
    line-height: 1.85;
  }

  .nr-requirements-salary {
    font-size: 18px;
  }

  .nr-requirements-note {
    font-size: 12px;
  }

  .nr-requirements-footer-note {
    font-size: 12px;
  }
}