/* base css
----------------------------------------------------------------- */
:root {
  --black: #333;
  --white: #fff;
  --red: #e50127;
  --bgGray: #f0f3f6;
}

img {
  width: 100%;
}

a:visited {
  color: currentColor;
}

/* l-inner 
---------------------------------------------------------------------*/
.l-ngInner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1045px;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 994px) {
  .l-ngInner {
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

/* l-contents
---------------------------------------------------------------------*/
.l-ngContents {
  overflow: hidden;
  background: var(--bgGray);
  font-family: "Noto Sans JP", sans-serif;
  color: var(--black);
}

.l-ngShadow {
  text-shadow: 0px 0px 20px #fff;
}

.l-topRelative {
  position: relative;
  z-index: 1;
}

.l-topzIndex {
  z-index: 100;
}

/* c-btn 
---------------------------------------------------------------------*/
.c-ngBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: var(--red);
  width: 100%;
  padding: clamp(26px, 3vw, 30px) clamp(29px, 3.5vw, 35px) clamp(26px, 3vw, 30px) clamp(47px, 5.3vw, 52px);
  border-radius: 30px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media (any-hover: hover) {
  .c-ngBtn:hover {
    background-color: #c5042b;
    opacity: 1;
  }
}
.c-ngBtn__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(10px, 1.4vw, 14px);
  color: var(--white);
}

.c-ngBtn__textEn {
  font-size: clamp(21px, 2.2vw, 22px);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.c-ngBtn__textJa {
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.c-ngBtn__arrow {
  max-width: clamp(25px, 2.7vw, 27px);
}

.c-btnWhite {
  width: 100%;
  padding: 9px;
  display: inline-block;
  background-color: var(--white);
  color: var(--red) !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  border-radius: 25px;
  border: 1px solid var(--red);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px;
  grid-template-columns: 1fr 32px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.c-btnWhite__arrow {
  max-width: 32px;
}

@media (any-hover: hover) {
  .c-btnWhite:hover {
    background-color: var(--red);
    color: var(--white) !important;
  }
  .c-btnWhite:hover .c-btnWhite__arrow img {
    -o-object-fit: contain;
       object-fit: contain;
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
}
/* c-title 
---------------------------------------------------------------------*/
.c-ngTitle__en {
  font-size: clamp(28px, 3.6vw, 36px);
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4285714286;
  color: var(--red);
}

.c-ngTitle__ja {
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.c-ngSubtitle__text,
.c-ngSubtitle__textFirst {
  display: inline;
  font-size: clamp(26px, 2.8vw, 28px);
  font-weight: 700;
  letter-spacing: 0.1em;
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--black) !important;
}

.c-ngSubtitle__text span,
.c-ngSubtitle__textFirst span {
  display: inline-block;
  font-size: clamp(26px, 2.8vw, 28px);
  font-weight: 700;
  letter-spacing: 0.1em;
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--black) !important;
}

.c-ngSubtitle__textFirst {
  line-height: 1.2;
}

.c-ngSubtitle__text::after {
  display: inline-block;
  content: "";
  width: 32px;
  height: 3px;
  background: var(--red);
  position: absolute;
  top: 50%;
  right: -18px;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
}

.c-ngSubtitle__text--none::after {
  content: none;
}

.c-ngSubtitle-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 18px;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-family: "Oswald", sans-serif;
}

.c-ngSubtitle-center--ja {
  font-family: "Noto Sans JP", sans-serif;
}

.c-ngSubtitle-center::after {
  display: inline-block;
  content: "";
  width: 32px;
  height: 3px;
  background-color: var(--red);
}

.c-ngTopTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (max-width: 994px) {
  .c-ngTopTitle {
    gap: 20px;
  }
}

.c-ngTopTitle-en {
  font-size: clamp(40px, 4.8vw, 48px);
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.325;
  color: var(--red);
}
@media screen and (max-width: 994px) {
  .c-ngTopTitle-en {
    letter-spacing: 0.2em;
  }
}

.c-ngTopTitle-ja {
  font-size: clamp(15px, 1.8vw, 18px);
  letter-spacing: 0.1em;
  margin: 0 !important;
  padding: 0 !important;
  background: initial !important;
}

@media screen and (max-width: 767px) {
  .c-ngTopTitle-ja--ml {
    margin-left: 1em !important;
  }
}

.c-ngTopLead {
  margin-top: 20px;
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4444444444;
}

/* c-card 
---------------------------------------------------------------------*/
.c-ngCard {
  background-color: var(--white);
  border-radius: 30px;
  max-width: 230px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-ngCard__textMain {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.6666666667;
}

@media screen and (max-width: 600px) {
  .c-ngCard__textMain--sm {
    font-size: 12px;
  }
}

.c-ngCard__textRed {
  color: var(--red);
}

.c-ngCard__textSub {
  font-size: 14px;
  line-height: 1.7142857143;
  white-space: nowrap;
}

@media screen and (max-width: 600px) {
  .c-ngCard__textSub--sm {
    font-size: 9px;
  }
}

/* slider 
---------------------------------------------------------------------*/
.slick-next,
.slick-prev {
  background-image: url("../../image/common/icon-slide-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1;
  width: clamp(25px, 5.1vw, 50px);
  height: auto;
  cursor: pointer;
  z-index: 100;
  position: absolute;
  top: auto;
  bottom: -48px;
  left: 50%;
  -webkit-transform: translate(-110%, 100%);
          transform: translate(-110%, 100%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .slick-next,
  .slick-prev {
    bottom: -19px;
  }
}

.slick-next {
  -webkit-transform: translate(23%, 100%) rotate(180deg);
          transform: translate(23%, 100%) rotate(180deg);
}

/* p-ngBtns
---------------------------------------------------------------------*/
.p-ngBtns {
  max-width: 1045px;
  margin-inline: auto;
  padding-block: clamp(55px, 7.9vw, 78px) clamp(40px, 6.4vw, 63px);
  padding-inline: 25px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 47.4371859296% 47.4371859296%;
  grid-template-columns: 47.4371859296% 47.4371859296%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-ngBtns {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}

.p-ngBtnBK {
  width: 100%;
  padding: 9px;
  display: inline-block;
  background-color: var(--black);
  color: var(--white) !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  border-radius: 25px;
  border: 1px solid var(--black);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px;
  grid-template-columns: 1fr 32px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-ngBtnBK__text {
  -webkit-transform: translateX(1em);
          transform: translateX(1em);
}

.p-ngBtnBK__Arrow {
  display: -ms-grid;
  display: grid;
  place-content: center;
}

@media (any-hover: hover) {
  .p-ngBtnBK:hover {
    background-color: var(--white);
    color: var(--black) !important;
  }
}
/* p-ngTitle
---------------------------------------------------------------------*/
.p-ngTitle {
  text-align: center;
  padding: 23px 16px 17px;
  background-color: var(--white);
}

/* p-ngFaq
---------------------------------------------------------------------*/
.p-ngFaq__content {
  padding-block: clamp(39px, 8.8vw, 87px) clamp(68px, 7.1vw, 70px);
}

.p-ngFaq__body + .p-ngFaq__body {
  margin-top: clamp(64px, 7.7vw, 76px);
}

.p-ngFaq__box {
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .p-ngFaq__box {
    margin-top: 27;
  }
}

.p-ngFaq__bg {
  position: relative;
  z-index: 1;
}

.p-ngFaq__bg::before {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/bg-triangle.png);
  aspect-ratio: 274/126;
  width: 274px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-77%, 0%);
          transform: translate(-77%, 0%);
  z-index: -1;
}
@media screen and (max-width: 994px) {
  .p-ngFaq__bg::before {
    width: 206px;
    -webkit-transform: translate(-56%, 0%);
            transform: translate(-56%, 0%);
  }
}

.p-ngFaq__bg::after {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/bg-circle.png);
  aspect-ratio: 349/127;
  width: 349px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(57%, 0%);
          transform: translate(57%, 0%);
  z-index: -1;
}
@media screen and (max-width: 994px) {
  .p-ngFaq__bg::after {
    width: 133px;
    -webkit-transform: translate(27%, -25%);
            transform: translate(27%, -25%);
  }
}

/* p-ngFaq__contents  ----------------------------------------------------------------------------
*/
.p-ngFaq__item {
  overflow: hidden;
  background: var(--white);
}

.p-ngFaq__item + .p-ngFaq__item {
  margin-top: 21px;
}

.p-ngFaq__question {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20px 26px auto;
  grid-template-columns: 20px auto;
  gap: 26px;
  padding: 20px 27px 20px 17px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-ngFaq__question {
    padding: 20px 15px;
    gap: 20px;
  }
}
.p-ngFaq__questionIcon {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--red);
}

.p-ngFaq__questionText {
  padding-right: 8%;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.5555555556;
}
@media screen and (max-width: 767px) {
  .p-ngFaq__questionText {
    padding-right: 18%;
  }
}

.p-ngFaq__question::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 3%;
  width: 20px;
  height: 1px;
  background-color: var(--red);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-ngFaq__question::before {
    top: 35px;
    right: 8%;
  }
}

.p-ngFaq__question::after {
  content: "";
  position: absolute;
  top: 30px;
  right: 3%;
  width: 20px;
  height: 1px;
  background-color: var(--red);
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-ngFaq__question::after {
    top: 35px;
    right: 8%;
  }
}

.p-ngFaq__question.is-open::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  opacity: 0;
}

.p-ngFaq__question.is-open::after {
  -webkit-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
}

.p-ngFaq__answer {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 0fr;
  grid-template-rows: 0fr;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
}

.p-ngFaq__answerInner {
  min-height: 0;
  margin-inline: 62px 10%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 9px auto;
  grid-template-columns: auto auto;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 9px;
}

@media screen and (max-width: 767px) {
  .p-ngFaq__answerInner {
    margin-inline: 47px 6%;
  }
}
.p-ngFaq__answerText {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.5625;
}

.p-ngFaq__answerTextMore {
  text-decoration: underline !important;
}

.p-ngFaq__answer.is-open {
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  padding-block: 10px 31px;
}
@media screen and (max-width: 767px) {
  .p-ngFaq__answer.is-open {
    padding-block: 0px 31px;
  }
}

/* ngApp
---------------------------------------------------------------------*/
.p-ngApp__bg {
  position: relative;
  z-index: 1;
}

.p-ngApp__bg::before {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/bg-circle.png);
  aspect-ratio: 349/127;
  width: 349px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(57%, 0%);
          transform: translate(57%, 0%);
  z-index: -1;
}
@media screen and (max-width: 994px) {
  .p-ngApp__bg::before {
    width: 133px;
    -webkit-transform: translate(27%, 15%);
            transform: translate(27%, 15%);
  }
}

.p-ngApp__bg::after {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/bg-dotmix.png);
  background-image: url(../../image/common/bg-dotmix.png);
  aspect-ratio: 286/383;
  width: 286px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translate(-69%, 12%);
          transform: translate(-69%, 12%);
  z-index: -1;
}
@media screen and (max-width: 994px) {
  .p-ngApp__bg::after {
    width: 151px;
    -webkit-transform: translate(-39%, -110%);
            transform: translate(-39%, -110%);
  }
}

.p-ngApp__listContent {
  padding-block: clamp(39px, 6.9vw, 68px) clamp(79px, 8.6vw, 85px);
}

.p-ngAppListWrapper + .p-ngAppListWrapper {
  margin-top: clamp(63px, 7.2vw, 71px);
}

.p-ngAppList {
  margin-top: clamp(13px, 2.4vw, 24px);
}

.p-ngAppList__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20.0601805416% 78.9368104313%;
  grid-template-columns: 20.0601805416% 78.9368104313%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-ngAppList__body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 8px;
  }
}

.p-ngAppList__body + .p-ngAppList__body {
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .p-ngAppList__body + .p-ngAppList__body {
    margin-top: 10px;
  }
}

.p-ngAppList__dt {
  padding: 8px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  background-color: #dedddd;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 994px) {
  .p-ngAppList__dt {
    padding: 6px;
  }
}

.p-ngAppList__dd {
  padding: clamp(14px, 2.2vw, 22px) clamp(22px, 2.5vw, 25px);
  background-color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.75;
}

.p-ngAppList__ddList {
  text-indent: -1em;
  padding-left: 1em;
}

.p-ngAppList__ddList::before {
  display: inline-block;
  content: "";
  aspect-ratio: 1;
  width: 10px;
  background-color: var(--red);
  margin-right: 4px;
}

.p-ngAppList__ddNote {
  display: block;
  letter-spacing: 0.06em;
}

.p-ngAppContact {
  margin-top: clamp(51px, 6.6vw, 65px);
  border: 5px solid var(--red);
  border-radius: 30px;
  background-color: #fff;
}
@media screen and (max-width: 994px) {
  .p-ngAppContact {
    border-radius: 20px;
    border: 3px solid var(--red);
  }
}

.p-ngAppContact__body {
  padding: 22px 0;
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 700;
  letter-spacing: 0.1em;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 22.3115577889% 77.5879396985%;
  grid-template-columns: 22.3115577889% 77.5879396985%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 994px) {
  .p-ngAppContact__body {
    display: block;
    padding: 23px 22px 35px;
  }
}

.p-ngAppContact__title {
  padding-right: 20px;
  padding-left: 35px;
}
@media screen and (max-width: 994px) {
  .p-ngAppContact__title {
    text-align: center;
    padding: 0;
  }
}

.p-ngAppContact__items {
  border-left: 1px solid var(--black);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding: 20px 0 20px 18px;
  text-align: center;
}
@media screen and (max-width: 994px) {
  .p-ngAppContact__items {
    text-align: start;
    padding: 17px 0 0 0;
    margin-top: 8px;
    border-top: 1px solid var(--black);
    border-left: none;
  }
}

.p-ngAppContact__text {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media screen and (max-width: 994px) {
  .p-ngAppContact__text {
    line-height: 1.75;
  }
}

.p-ngAppContact__mail {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 27px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
}
@media screen and (max-width: 994px) {
  .p-ngAppContact__mail {
    margin-top: 17px;
    margin-inline: -10px;
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-ngAppContact__mail {
    font-size: 16px;
    white-space: nowrap;
  }
}

.p-ngAppContact__mail::before {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/icon-mail.svg);
  aspect-ratio: 18/14;
  width: 26px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  .p-ngAppContact__mail::before {
    width: 18px;
  }
}

.p-ngApp__contents {
  padding-block: clamp(70px, 10.6vw, 104px) clamp(79px, 12.7vw, 125px);
  background-color: var(--white);
}

.p-ngAppflow__body {
  margin-top: clamp(35px, 3.9vw, 39px);
}

.p-ngAppflow__box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 316px 25px auto;
  grid-template-columns: 316px auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}

.p-ngAppflow__box + .p-ngAppflow__box {
  margin-top: -34px;
}

.p-ngAppflow__box:last-of-type {
  margin-top: -37px;
}

.p-ngAppflow__arrow img {
  aspect-ratio: 316/178;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-ngAppflow__arrow01 img {
  aspect-ratio: 316/152;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-ngAppflow__arrow06 img {
  aspect-ratio: 316/143;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-ngAppflow__text {
  margin-top: -46px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.p-ngAppflow__spBox + .p-ngAppflow__spBox {
  margin-top: 25px;
}

.p-ngAppflow__spImage img {
  aspect-ratio: 325/130;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-ngAppflow__spText {
  margin-top: 17px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.p-ngAppflow__spIcon {
  margin-top: 25px;
}

.p-ngApp__items {
  margin-top: clamp(78px, 9.7vw, 96px);
}

.p-ngApp__item + .p-ngApp__item {
  margin-top: clamp(70px, 10.9vw, 107px);
}

.p-ngApp__itemText {
  margin-top: clamp(23px, 5.2vw, 51px);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.p-ngApp__btnWrapper {
  max-width: 329px;
  margin-top: clamp(24px, 3.2vw, 32px);
}

.p-ngApp__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: var(--red);
  width: 100%;
  padding: 9px 9px 9px 34px;
  background-color: var(--red);
  color: var(--white) !important;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  border-radius: 25px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 994px) {
  .p-ngApp__btn {
    padding: 8px 8px 8px 26px;
  }
}

.p-ngApp__btnArrow {
  max-width: 32px;
}

@media (any-hover: hover) {
  .p-ngApp__btn:hover {
    background-color: #c5042b;
  }
}
/* p-ngIdeal
---------------------------------------------------------------------*/
.p-ngIdealMv {
  background-image: url(../../image/ideal/IdealMv.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-ngIdealMv {
    background-image: url(../../image/ideal/IdealMv-sp.jpg);
  }
}

.p-ngIdealMv__content {
  padding-block: clamp(7px, 3.6vw, 36px) clamp(99px, 14.1vw, 139px);
}
.p-ngIdealMv__headTitle {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 45px clamp(40px, 7.7vw, 76px) 45px 1fr;
  grid-template-columns: 1fr clamp(40px, 7.7vw, 76px) 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  gap: 45px;
}
@media screen and (max-width: 767px) {
  .p-ngIdealMv__headTitle {
    margin-inline: -10px;
    gap: 18px;
  }
}

.p-ngIdealMv__headText {
  font-size: clamp(42px, 8.1vw, 80px);
  font-weight: 300;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-ngIdealMv__headText {
    letter-spacing: 0;
  }
}

.p-ngIdealMv__headText01 {
  margin-left: auto;
}

.p-ngIdealMv__headText02 {
  margin-right: auto;
}

.p-ngIdealMv__headImage {
  max-width: clamp(40px, 7.7vw, 76px);
}

.p-ngIdealMv__headLead {
  margin-top: 13px;
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.7857142857;
  text-align: center;
  text-shadow: 0px 0px 20px #fff;
}
@media screen and (max-width: 767px) {
  .p-ngIdealMv__headLead {
    margin-top: 30px;
  }
}

.p-ngIdealMv__subTitle {
  margin-top: clamp(51px, 10.2vw, 100px);
  max-width: clamp(325px, 59.8vw, 587px);
  margin-inline: auto;
  padding: 8px 4px;
  font-size: clamp(17px, 2.6vw, 26px);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--red);
  background-color: var(--white);
  border-radius: 18px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-ngIdealMv__subTitle {
    letter-spacing: 0;
    padding: 6px 4px;
  }
}

.p-ngIdealMv__lists {
  margin-top: clamp(45px, 4.8vw, 48px);
  max-width: 598px;
  margin-inline: auto;
}

.p-ngIdealMv__list {
  color: var(--white);
  font-size: clamp(17px, 2.4vw, 24px);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4583333333;
  text-indent: -1em;
  padding-left: 1em;
}

.p-ngIdealMv__list::before {
  display: inline-block;
  content: "";
  aspect-ratio: 1;
  width: clamp(12px, 1.8vw, 18px);
  background-color: var(--red);
  margin-right: clamp(5px, 1.2vw, 12px);
}

.p-ngIdealMv__list + .p-ngIdealMv__list {
  margin-top: clamp(25px, 3.3vw, 33px);
}

.p-ngIdealMessage {
  overflow: hidden;
  padding-block: clamp(73px, 10.2vw, 100px) clamp(100px, 10.5vw, 103px);
  background-color: var(--white);
  border-radius: 50px 50px 0 0;
  margin-top: -50px;
}
@media screen and (max-width: 767px) {
  .p-ngIdealMessage {
    border-radius: 30px 30px 0 0;
  }
}

.p-ngIdeal__bg {
  position: relative;
  z-index: 1;
}

.p-ngIdeal__bg::before {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/bg-triangle02.png);
  aspect-ratio: 329/126;
  width: 329px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-73%, -42%);
          transform: translate(-73%, -42%);
  z-index: -1;
}
@media screen and (max-width: 994px) {
  .p-ngIdeal__bg::before {
    width: 247px;
    -webkit-transform: translate(-46%, -32%);
            transform: translate(-46%, -32%);
  }
}

.p-ngIdeal__bg::after {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/bg-dotmix.png);
  aspect-ratio: 286/383;
  width: 286px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(79%, 59%);
          transform: translate(79%, 59%);
  z-index: -1;
}
@media screen and (max-width: 994px) {
  .p-ngIdeal__bg::after {
    width: 151px;
    left: 0;
    right: initial;
    -webkit-transform: translate(-34%, 93%);
            transform: translate(-34%, 93%);
  }
}

.p-ngIdealMessage__title {
  font-size: clamp(26px, 3.5vw, 35px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2857142857;
  text-align: center;
  margin: 0 !important;
  padding: 0 !important;
}

.p-ngIdealMessage__title span {
  padding: 0 !important;
  color: currentColor !important;
  background-color: initial !important;
}

.p-ngIdealMessage__box {
  max-width: 681px;
  margin-inline: auto;
  margin-top: clamp(31px, 9.5vw, 94px);
}

.p-ngIdealMessage__text {
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.9444444444;
}

.p-ngIdealMessage__text + .p-ngIdealMessage__text {
  margin-top: 2em;
}

.p-ngIdealMessage__textNote {
  text-align: right;
}

/* p-ngPlace
---------------------------------------------------------------------*/
.p-ngPlace__content {
  padding-block: clamp(39px, 9.4vw, 93px) clamp(52px, 8.3vw, 82px);
}

.p-ngPlace__bg {
  position: relative;
  z-index: 1;
}

.p-ngPlace__bg::before {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/bg-circle.png);
  aspect-ratio: 349/127;
  width: 349px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(57%, 0%);
          transform: translate(57%, 0%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-ngPlace__bg::before {
    width: 133px;
    -webkit-transform: translate(10%, 137%);
            transform: translate(10%, 137%);
  }
}

.p-ngPlace__inner {
  max-width: 1040px;
  margin-inline: auto;
  padding-inline: 25px;
}

.p-ngPlaceTitle {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 18px 32px;
  grid-template-columns: auto 32px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 18px;
}
@media screen and (max-width: 767px) {
  .p-ngPlaceTitle {
    -ms-grid-columns: auto 0 0;
    grid-template-columns: auto 0;
    gap: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-ngPlaceTitle .c-ngSubtitle__text {
    line-height: 1.1538461538;
  }
}

.p-ngPlaceTitle__line {
  display: block;
  width: 32px;
  height: 3px;
  background: var(--red);
  -webkit-transform: translateY(22px);
          transform: translateY(22px);
}
@media screen and (max-width: 767px) {
  .p-ngPlaceTitle__line {
    -webkit-transform: translateX(-23px) translateY(12px);
            transform: translateX(-23px) translateY(12px);
  }
}

.p-ngPlace__lead {
  margin-top: 10px;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-ngPlace__lead {
    margin-top: 20px;
  }
}

.p-ngPlaceLists {
  margin-top: 30px;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-ngPlaceLists {
    margin-top: 37px;
    gap: 30px;
  }
}

.p-ngPlaceList img {
  aspect-ratio: 317/256;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-ngPlaceLists__note {
  margin-top: 20px;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-ngPlaceLists__note {
    margin-top: 29px;
  }
}

.p-ngPlace__slideContents {
  padding-block: clamp(66px, 8.8vw, 87px) clamp(30px, 6.1vw, 60px);
  background-color: var(--white);
}

/* slider
---------------------------------------------------------------------*/
.p-ngPlace__slider {
  margin-inline: auto;
}

.p-ngPlace__box {
  position: relative;
}

.p-ngPlace__text {
  font-size: clamp(13px, 2vw, 20px);
  font-size: 500;
  letter-spacing: 0.1em;
  color: var(--white);
  position: absolute;
  bottom: 29px;
  left: 75px;
}
@media screen and (max-width: 767px) {
  .p-ngPlace__text {
    bottom: 19px;
    left: 27px;
  }
}

.p-ngPlace__image {
  margin: 0 24px;
}
@media screen and (max-width: 767px) {
  .p-ngPlace__image {
    margin: 0 6px;
  }
}

.p-ngPlace__image img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-ngPlace__image img {
    border-radius: 30px;
  }
}

.slick-next:before,
.slick-prev::before {
  content: none;
}

.p-ngPlace__slider .slick-next,
.p-ngPlace__slider .slick-prev {
  background-image: url("../../image/common/icon-slide-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1;
  width: clamp(25px, 5.1vw, 50px);
  height: auto;
  cursor: pointer;
  z-index: 1;
  position: absolute;
  top: auto;
  bottom: -48px;
  left: 50%;
  -webkit-transform: translate(-110%, 100%);
          transform: translate(-110%, 100%);
}
@media screen and (max-width: 767px) {
  .p-ngPlace__slider .slick-next,
  .p-ngPlace__slider .slick-prev {
    bottom: -19px;
  }
}

.p-ngPlace__slider .slick-next {
  -webkit-transform: translate(23%, 100%) rotate(180deg);
          transform: translate(23%, 100%) rotate(180deg);
}

/* p-ngMessage
---------------------------------------------------------------------*/
.p-ngMessageMV {
  overflow: hidden;
  background-image: url(../../image/message/MessageMV-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 994px) {
  .p-ngMessageMV {
    background-image: url(../../image/message/MessageMV-bg-sp.jpg);
  }
}

.p-ngMessageMV__inner {
  max-width: 1330px;
  margin-inline: auto;
  padding-inline: 25px;
}
@media screen and (max-width: 994px) {
  .p-ngMessageMV__inner {
    display: contents;
  }
}

.p-ngMessageMV__bg {
  position: relative;
  z-index: 1;
}

.p-ngMessageMV__body {
  max-width: 1030px;
  margin-inline: auto;
  color: var(--white);
  position: relative;
}

.p-ngMessageMV__image {
  max-width: 411px;
  margin-left: auto;
  -webkit-transform: translateX(-76px);
          transform: translateX(-76px);
}
@media screen and (max-width: 994px) {
  .p-ngMessageMV__image {
    -webkit-transform: initial;
            transform: initial;
    width: 86.6666666667%;
    padding-top: 122px;
  }
}

.p-ngMessageMV__image img {
  aspect-ratio: 411/418;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 994px) {
  .p-ngMessageMV__image img {
    aspect-ratio: 650/950;
  }
}

.p-ngMessageMV__Box {
  position: absolute;
  top: 29%;
  left: 2%;
}
@media screen and (max-width: 994px) {
  .p-ngMessageMV__Box {
    top: 19%;
    left: 18%;
  }
}

@media (max-width: 670px) {
  .p-ngMessageMV__Box {
    top: 6%;
    left: 7%;
  }
}
.p-ngMessageMV__title {
  font-size: clamp(30px, 3.5vw, 35px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2857142857;
}

.p-ngMessageMV__BoxItems {
  margin-top: clamp(19px, 2.9vw, 29px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 28px;
}
@media screen and (max-width: 994px) {
  .p-ngMessageMV__BoxItems {
    display: block;
  }
}

.p-ngMessageMV__nameSmall {
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.p-ngMessageMV__name {
  font-size: clamp(25px, 2.8vw, 28px);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.p-ngMessageMV__nameEn {
  font-size: clamp(11px, 1.6vw, 16px);
  font-weight: 700;
  letter-spacing: 0.2em;
}

.p-ngMessageMV__bottom {
  padding-block: 35px;
  background-color: var(--white);
  border-radius: 20px 20px 0 0;
}
@media screen and (max-width: 994px) {
  .p-ngMessageMV__bottom {
    display: none;
  }
}

.p-ngMessage__content {
  padding-bottom: 120px;
  background-color: var(--white);
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 994px) {
  .p-ngMessage__content {
    padding-block: 73px;
    margin-top: -120px;
    border-radius: 20px 20px 0 0;
  }
}

.p-ngMessage__boxInner {
  max-width: 700px;
  margin-inline: auto;
  padding-inline: 25px;
}

.p-ngMessage__box:not(:first-child):not(:last-child) {
  margin-top: clamp(70px, 9.3vw, 92px);
}

.p-ngMessage__box:last-child {
  padding-top: 34px;
  margin-top: 50px;
  border-top: 1px solid #707070;
}

.p-ngMessage__boxTitle {
  font-size: clamp(22px, 2.4vw, 24px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.1666666667;
}

.p-ngMessage__boxText {
  margin-top: 10px;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.75;
}

.p-ngMessage__vision {
  background-image: url(../../image/message/Message-vision.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.p-ngMessage__visionContent {
  padding-block: clamp(77px, 8.8vw, 87px) clamp(84px, 9.4vw, 93px);
  max-width: 760px;
  margin-inline: auto;
}

.p-ngMessage__visionLeadWrapper {
  text-align: center;
}

.p-ngMessage__visionLead {
  display: inline-block;
  padding: 0px 24px;
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red);
  background-color: var(--white);
  border-radius: 24px;
}
@media screen and (max-width: 767px) {
  .p-ngMessage__visionLead {
    padding: 0px 13px 5px 13px;
  }
}

.p-ngMessage__visionText {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 2.25;
  color: var(--white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-ngMessage__visionText {
    margin-top: 35px;
    margin-inline: -4px;
  }
}

.p-ngMessageCards {
  margin-top: 143px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (44.7368421053%)[2];
  grid-template-columns: repeat(2, 44.7368421053%);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 994px) {
  .p-ngMessageCards {
    margin-top: 155px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 108px;
    justify-items: center;
  }
}

.p-ngMessageCard {
  position: relative;
  max-width: 340px;
}

.p-ngMessageCard__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--red);
  border-radius: 50%;
  aspect-ratio: 1;
  max-width: 135px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-ngMessageCard__topText {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--white);
  text-align: center;
}

.p-ngMessageCard__body {
  background-color: var(--white);
  padding: 94px 43px 38px;
  border-radius: 20px;
}
@media screen and (max-width: 994px) {
  .p-ngMessageCard__body {
    padding: 94px 31px 38px;
  }
}

.p-ngMessageCard__bodyText {
  font-size: clamp(17px, 1.8vw, 18px);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5555555556;
}

/* p-ngWork
---------------------------------------------------------------------*/
.p-ngWork__contents {
  padding-block: clamp(78px, 11.9vw, 117px) 74px;
}

.p-ngWork__bg {
  position: relative;
  z-index: 1;
}

.p-ngWork__bg::before {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/bg-triangle04.png);
  aspect-ratio: 293/126;
  width: 293px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-75%, 0%);
          transform: translate(-75%, 0%);
  z-index: -1;
}
@media screen and (max-width: 994px) {
  .p-ngWork__bg::before {
    width: 227px;
    -webkit-transform: translate(-38%, 0%);
            transform: translate(-38%, 0%);
  }
}

.p-ngWork__bg::after {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/bg-dotmix.png);
  aspect-ratio: 286/383;
  width: 286px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(72%, 20%);
          transform: translate(72%, 20%);
  z-index: -1;
}
@media screen and (max-width: 994px) {
  .p-ngWork__bg::after {
    width: 151px;
    -webkit-transform: translate(35%, 20%);
            transform: translate(35%, 20%);
  }
}

@media screen and (max-width: 994px) {
  .p-ngWorkCards {
    max-width: 600px;
    margin-inline: auto;
  }
}

.p-ngWorkCard {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  background-color: var(--white);
}
@media screen and (max-width: 994px) {
  .p-ngWorkCard {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.p-ngWorkCard + .p-ngWorkCard {
  margin-top: clamp(58px, 7.5vw, 74px);
}

.p-ngWorkCard__imageBox {
  position: relative;
}

@media screen and (max-width: 994px) {
  .p-ngWorkCard:nth-child(even) .p-ngWorkCard__imageBox {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media screen and (max-width: 994px) {
  .p-ngWorkCard:nth-child(even) .p-ngWorkCard__items {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.p-ngWorkCard__imageTag {
  width: 189px;
  aspect-ratio: 1;
  display: -ms-grid;
  display: grid;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  place-content: center;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#0066ce), to(#00b1c7));
  background: linear-gradient(to right, #0066ce 0%, #00b1c7 100%);
  color: var(--white);
  position: absolute;
  top: 15px;
  left: 15px;
}
@media screen and (max-width: 767px) {
  .p-ngWorkCard__imageTag {
    width: 137px;
  }
}

.p-ngWorkCard__imageTag--01 {
  top: initial;
  left: initial;
  right: 30px;
  bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-ngWorkCard__imageTag--01 {
    right: 15px;
    bottom: 15px;
  }
}

.p-ngWorkCard__imageTag--02 {
  background: -webkit-gradient(linear, left top, right top, from(#6eb92b), to(#00c7a8));
  background: linear-gradient(to right, #6eb92b 0%, #00c7a8 100%);
  top: initial;
  bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-ngWorkCard__imageTag--02 {
    bottom: 15px;
  }
}

.p-ngWorkCard__imageTag--03 {
  background: -webkit-gradient(linear, left top, right top, from(#f48226), to(#f4c426));
  background: linear-gradient(to right, #f48226 0%, #f4c426 100%);
  top: 30px;
  left: initial;
  right: 30px;
}
@media screen and (max-width: 767px) {
  .p-ngWorkCard__imageTag--03 {
    top: 15px;
    right: 15px;
  }
}

.p-ngWorkCard__imageTag--04 {
  background: -webkit-gradient(linear, left top, right top, from(#eb3d5a), to(#e65cd1));
  background: linear-gradient(to right, #eb3d5a 0%, #e65cd1 100%);
  top: initial;
  left: initial;
  right: 30px;
  bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-ngWorkCard__imageTag--04 {
    right: 15px;
    bottom: 15px;
  }
}

.p-ngWorkCard__imageTag--05 {
  background: -webkit-gradient(linear, left top, right top, from(#7633c7), to(#b715a4));
  background: linear-gradient(to right, #7633c7 0%, #b715a4 100%);
  top: initial;
  left: 30px;
  bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-ngWorkCard__imageTag--05 {
    left: 15px;
    bottom: 15px;
  }
}

.p-ngWorkCard__imageTitle {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
  margin: 0;
  padding: 0;
  background: initial;
}
@media screen and (max-width: 767px) {
  .p-ngWorkCard__imageTitle {
    font-size: 16px;
  }
}

.p-ngWorkCard__imageDot {
  font-size: 1em;
}

.p-ngWorkCard__imageText {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4166666667;
}
@media screen and (max-width: 767px) {
  .p-ngWorkCard__imageText {
    font-size: 10px;
  }
}

.p-ngWorkCard__imageBg {
  height: 100%;
}

.p-ngWorkCard__imageBg img {
  aspect-ratio: 498/620;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-ngWorkCard__items {
  padding: 30px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 1em;
}
@media screen and (max-width: 994px) {
  .p-ngWorkCard__items {
    row-gap: 58px;
    padding: 37px 29px 45px;
  }
}

.p-ngWorkCard__title {
  margin-top: 20px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  font-size: clamp(22px, 2.4vw, 24px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-ngWorkCard__title {
    display: block;
    line-height: 1.4545454545;
  }
}

.p-ngWorkCard__text {
  margin-top: clamp(21px, 2.6vw, 26px);
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.75;
}

.p-ngWorkCard__course {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}

.p-ngWorkCard__lists {
  border-top: 1px dotted #707070;
  padding-top: 10px;
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 994px) {
  .p-ngWorkCard__lists {
    padding-top: 21px;
    margin-top: 6px;
  }
}

.p-ngWorkCard__list {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.p-ngWorkCard__btnWrapper {
  margin-top: clamp(22px, 2.4vw, 24px);
  text-align: center;
}
@media screen and (max-width: 994px) {
  .p-ngWorkCard__btnWrapper {
    margin-inline: -14px;
  }
}

.p-ngWorkCard__btn {
  position: relative;
  max-width: 297px;
  width: 100%;
  padding: 7px 17px 7px 7px;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--white) !important;
  background: -webkit-gradient(linear, left top, right top, from(#0066ce), to(#00b1c7));
  background: linear-gradient(to right, #0066ce 0%, #00b1c7 100%);
  border-radius: 25px;
  text-align: center;
}

.p-ngWorkCard__btn--02 {
  background: -webkit-gradient(linear, left top, right top, from(#6eb92b), to(#00c7a8));
  background: linear-gradient(to right, #6eb92b 0%, #00c7a8 100%);
}

.p-ngWorkCard__btn--03 {
  background: -webkit-gradient(linear, left top, right top, from(#f48226), to(#f4c426));
  background: linear-gradient(to right, #f48226 0%, #f4c426 100%);
}

.p-ngWorkCard__btn--04 {
  background: -webkit-gradient(linear, left top, right top, from(#eb3d5a), to(#e65cd1));
  background: linear-gradient(to right, #eb3d5a 0%, #e65cd1 100%);
}

.p-ngWorkCard__btn--05 {
  background: -webkit-gradient(linear, left top, right top, from(#7633c7), to(#b715a4));
  background: linear-gradient(to right, #7633c7 0%, #b715a4 100%);
}

.p-ngWorkCard__btnIcon {
  max-width: 26px;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  right: 7px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

/* p-ngProject
---------------------------------------------------------------------*/
.p-ngProjectMv img {
  aspect-ratio: 1280/715;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-ngProjectMv img {
    aspect-ratio: 375/340;
  }
}

.p-ngProject__contents {
  margin-top: -157px;
  position: relative;
  background-color: var(--white);
  border-radius: 50px 50px 0 0;
}
@media screen and (max-width: 994px) {
  .p-ngProject__contents {
    margin-top: -38px;
    border-radius: 25px 25px 0 0;
  }
}

.p-ngProjectHead {
  padding-block: clamp(74px, 9.4vw, 93px) clamp(56px, 8.5vw, 84px);
}

.p-ngProjectHead__bg {
  position: relative;
  z-index: 1;
}

.p-ngProjectHead__bg::before {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/bg-triangle06.png);
  aspect-ratio: 297/172;
  width: 297px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-78%, -20%);
          transform: translate(-78%, -20%);
  z-index: -1;
}
@media screen and (max-width: 994px) {
  .p-ngProjectHead__bg::before {
    width: 209px;
    -webkit-transform: translate(-32%, -49%);
            transform: translate(-32%, -49%);
  }
}

.p-ngProjectHead__inner {
  max-width: 936px;
  margin-inline: auto;
  padding-inline: 25px;
}

.p-ngProjectHead__titles {
  max-width: 681px;
  margin-inline: auto;
}

.p-ngProjectHead__lead {
  font-size: clamp(26px, 3.5vw, 35px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4285714286;
  text-align: center;
  margin: 0;
  padding: 0;
  background: initial;
}

.p-ngProjectHead__lead--02 {
  white-space: nowrap;
}

.p-ngProjectHead__lead span {
  display: inline-block;
  padding: 0;
  font-size: clamp(26px, 3.5vw, 35px);
  font-weight: 700;
  color: currentColor;
  letter-spacing: 0.1em;
  line-height: 1.4285714286;
  background-color: initial;
}

.p-ngProjectHead__text {
  margin-top: clamp(32px, 6.5vw, 64px);
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.9;
}
@media screen and (max-width: 994px) {
  .p-ngProjectHead__text {
    line-height: 1.9444444444;
  }
}

.p-ngProjectHead__cards {
  margin-top: clamp(51px, 8.3vw, 82px);
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(246px, 1fr));
  gap: 70px;
}

.p-ngProjectHead__card {
  display: -ms-grid;
  display: grid;
  -ms-grid-row-span: 3;
  grid-row: span 3;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  gap: 0;
}

.p-ngProjectHead__image {
  max-width: 206px;
  margin-inline: auto;
}

.p-ngProjectHead__image img {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-ngProjectHead__items {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-ngProjectHead__names {
  margin-top: 16px;
}

.p-ngProjectHead__nameSub {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.p-ngProjectHead__nameJa {
  font-size: clamp(26px, 2.8vw, 28px);
  font-weight: 500;
  left: 0.1em;
}

.p-ngProjectHead__nameEn {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.p-ngProjectHead__lists {
  margin-top: 27px;
  text-align: center;
}

.p-ngProjectHead__list {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.75;
}

.p-ngProjectHeadAi {
  background-color: var(--bgGray);
  border-radius: 50px 0 50px 0;
}

.p-ngProjectHeadAi__inner {
  max-width: 1008px;
  margin-inline: auto;
  padding-inline: 25px;
}

.p-ngProjectHeadAi__body {
  padding-block: 58px 59px;
}
@media screen and (max-width: 994px) {
  .p-ngProjectHeadAi__body {
    padding-block: 60px 70px;
  }
}

.p-ngProjectHeadAi__bg {
  position: relative;
  z-index: 1;
}

.p-ngProjectHeadAi__bg::before {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/bg-mix.png);
  aspect-ratio: 410/181;
  width: 410px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-72%, 18%);
          transform: translate(-72%, 18%);
  z-index: -1;
}
@media screen and (max-width: 994px) {
  .p-ngProjectHeadAi__bg::before {
    width: 288px;
    -webkit-transform: translate(-62%, 45%);
            transform: translate(-62%, 45%);
  }
}

.p-ngProjectHeadAi__title {
  font-size: clamp(19px, 2vw, 20px);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red);
  text-align: center;
}

.p-ngProjectHeadAi__lead {
  margin: 29px 0 0;
  padding: 12px;
  font-size: clamp(24px, 2.8vw, 28px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4285714286;
  background-color: var(--white);
  border-radius: 20px;
  text-align: center;
}
@media screen and (max-width: 994px) {
  .p-ngProjectHeadAi__lead {
    margin: 36px 0 0;
    padding: 18px 12px;
  }
}

.p-ngProjectHeadAi__text {
  margin-top: clamp(37px, 4vw, 40px);
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 500;
  letter-spacing: 0.085em;
  line-height: 1.9;
}

.p-ngProjectTalk {
  background-color: var(--white);
  padding-block: clamp(59px, 7vw, 69px) clamp(95px, 14.1vw, 139px);
}

.p-ngProjectTalk__bg,
.p-ngProjectTalk__bg2,
.p-ngProjectTalk__bg3,
.p-ngProjectTalk__bg4 {
  position: relative;
  z-index: 1;
}

.p-ngProjectTalk__bg::before {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/bg-dotmix.png);
  aspect-ratio: 286/383;
  width: 286px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 65%;
  left: 0;
  -webkit-transform: translate(-18%, 0%);
          transform: translate(-18%, 0%);
  z-index: -1;
}
@media screen and (max-width: 994px) {
  .p-ngProjectTalk__bg::before {
    top: 93.5%;
    width: 151px;
    -webkit-transform: translate(-21%, 0%);
            transform: translate(-21%, 0%);
  }
}

.p-ngProjectTalk__bg2::before {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/bg-bigcircle.png);
  aspect-ratio: 247/494;
  width: 247px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(0%, 29%);
          transform: translate(0%, 29%);
  z-index: -1;
}
@media screen and (max-width: 994px) {
  .p-ngProjectTalk__bg2::before {
    width: 127px;
    right: initial;
    left: 0;
    -webkit-transform: translate(0%, 16%) rotate(180deg);
            transform: translate(0%, 16%) rotate(180deg);
  }
}

.p-ngProjectTalk__bg3::before {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/bg-circle.png);
  aspect-ratio: 349/127;
  width: 358px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 74%;
  left: 0;
  -webkit-transform: translate(-20%, 0%);
          transform: translate(-20%, 0%);
  z-index: -1;
}
@media screen and (max-width: 994px) {
  .p-ngProjectTalk__bg3::before {
    width: 133px;
    top: 77.2%;
  }
}

.p-ngProjectTalk__bg4::before {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/bg-triangle05.png);
  aspect-ratio: 297/172;
  width: 297px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(12%, -47%);
          transform: translate(12%, -47%);
  z-index: -1;
}
@media screen and (max-width: 994px) {
  .p-ngProjectTalk__bg4::before {
    width: 203px;
    right: initial;
    left: 0;
    -webkit-transform: translate(-43%, -32%);
            transform: translate(-43%, -32%);
  }
}

.p-ngProjectTitle {
  margin: 0;
  padding: 0;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4545454545;
  text-align: center;
}

.p-ngProjectTitle span {
  padding: 0;
  display: inline-block;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  color: currentColor;
  letter-spacing: 0.1em;
  line-height: 1.4545454545;
  background-color: initial;
}

.p-ngProjectTalk__title {
  margin-top: 16px;
}
@media screen and (max-width: 994px) {
  .p-ngProjectTalk__title {
    margin-top: 21px;
  }
}

.p-ngProjectTalk__contents {
  margin-top: clamp(26px, 8.5vw, 84px);
}

.p-ngProjectTalk__wrapper + .p-ngProjectTalk__wrapper {
  margin-top: clamp(115px, 16.1vw, 158px);
}

.p-ngProjectTalk__inner {
  max-width: 1305px;
  margin-inline: auto;
}

.p-ngProjectTalk__content + .p-ngProjectTalk__content {
  margin-top: clamp(43px, 6.5vw, 64px);
}

.p-ngProjectTalk__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 43.6781609195% 83px 39.69348659%;
  grid-template-columns: 43.6781609195% 39.69348659%;
  gap: 83px;
}
@media screen and (max-width: 994px) {
  .p-ngProjectTalk__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 47px;
  }
}

.p-ngProjectTalk__content:nth-child(even) {
  -ms-grid-columns: 39.69348659% 43.6781609195%;
  grid-template-columns: 39.69348659% 43.6781609195%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media screen and (max-width: 994px) {
  .p-ngProjectTalk__content:nth-child(even) {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 994px) {
  .p-ngProjectTalk__content:nth-child(even) .p-ngProjectTalk__image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media screen and (max-width: 994px) {
  .p-ngProjectTalk__content:nth-child(even) .p-ngProjectTalk__items {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.p-ngProjectTalk__image img {
  aspect-ratio: 557/729;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 994px) {
  .p-ngProjectTalk__items {
    padding-inline: 25px;
  }
}

.p-ngProjectTalk__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 17.0682730924% 22px auto;
  grid-template-columns: 17.0682730924% auto;
  gap: 22px;
}
@media screen and (max-width: 994px) {
  .p-ngProjectTalk__item {
    -ms-grid-columns: 70px auto;
    grid-template-columns: 70px auto;
  }
}

.p-ngProjectTalk__item + .p-ngProjectTalk__item {
  margin-top: clamp(27px, 3vw, 30px);
}

.p-ngProjectTalk__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-ngProjectTalk__icon img {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-ngProjectTalk__iconName {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.p-ngProjectTalk__text {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.75;
}

.p-ngProjectMessage {
  margin-top: -50px;
  padding-block: 70px 35px;
  border-radius: 50px 50px 0 0;
  background-color: var(--bgGray);
}
@media screen and (max-width: 994px) {
  .p-ngProjectMessage {
    padding-block: 54px 50px;
    border-radius: 25px 25px 0 0;
  }
}

.p-ngProjectMessage__title {
  margin-top: clamp(33px, 4.4vw, 44px);
}

@media screen and (max-width: 994px) {
  .p-ngProjectMessage__title.p-ngProjectMessage__title--lg {
    font-size: 28px;
  }
}

@media screen and (max-width: 994px) {
  .p-ngProjectMessage__title.p-ngProjectMessage__title--lg span {
    font-size: 28px;
  }
}

.p-ngProjectMessage__mv {
  margin-top: clamp(25px, 7.9vw, 78px);
}

.p-ngProjectMessage__mv img {
  aspect-ratio: 1280/564;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 994px) {
  .p-ngProjectMessage__mv img {
    aspect-ratio: 375/193;
  }
}

.p-ngProjectMessage__cards {
  margin-top: clamp(36px, 7.8vw, 77px);
  max-width: 793px;
  padding-inline: 25px;
  margin-inline: auto;
}

.p-ngProjectMessage__card {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 81px 22px auto;
  grid-template-columns: 81px auto;
  gap: 22px;
}
@media screen and (max-width: 994px) {
  .p-ngProjectMessage__card {
    -ms-grid-columns: 71px auto;
    grid-template-columns: 71px auto;
  }
}

.p-ngProjectMessage__card + .p-ngProjectMessage__card {
  margin-top: 27px;
}
@media screen and (max-width: 994px) {
  .p-ngProjectMessage__card + .p-ngProjectMessage__card {
    margin-top: 30px;
  }
}

/* p-ngEngineer
---------------------------------------------------------------------*/
.p-ngEngineerMv {
  background-color: #f2f2f2;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-ngEngineerMv__content {
  max-width: 740px;
  width: 100%;
  margin-inline: auto;
  padding-top: 28px;
  padding-bottom: 41px;
}
@media screen and (max-width: 767px) {
  .p-ngEngineerMv__content {
    padding-top: 30px;
    padding-bottom: 40px;
  }
}

.p-ngEngineerMv__content::before {
  display: inline-block;
  content: "";
  background-image: url(../../image/engineer/Engineer-mv.png);
  aspect-ratio: 740/534;
  width: 100%;
  height: auto;
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-ngEngineerMv__content::before {
    aspect-ratio: 375/252;
  }
}

.p-ngEngineer__contents {
  margin-top: -10px;
  background: var(--white);
  border-radius: 50px 50px 0 0;
  position: relative;
}
@media screen and (max-width: 994px) {
  .p-ngEngineer__contents {
    margin-top: -15px;
    border-radius: 30px 30px 0 0;
  }
}

.p-ngEngineerMv__cards {
  max-width: 690px;
  margin-inline: auto;
  margin-top: -167px;
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(clamp(112px, 15vw, 210px), 1fr) 28px minmax(clamp(112px, 15vw, 210px), 1fr) 28px minmax(clamp(112px, 15vw, 210px), 1fr);
  grid-template-columns: repeat(3, minmax(clamp(112px, 15vw, 210px), 1fr));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 28px;
}
@media screen and (max-width: 767px) {
  .p-ngEngineerMv__cards {
    padding-inline: 20px;
    margin-top: -108px;
    max-width: 600px;
    margin-inline: auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1%;
  }
}
@media screen and (max-width: 399px) {
  .p-ngEngineerMv__cards {
    padding-inline: 4px;
  }
}

.p-ngEngineerMv__cardBg {
  padding: 3px;
  display: -ms-grid;
  display: grid;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .p-ngEngineerMv__cardBg {
    padding: 1px;
  }
}

.p-ngEngineerMv__cardBg--01 {
  background: -webkit-gradient(linear, left top, right top, from(#f48226), to(#f4c426));
  background: linear-gradient(to right, #f48226 0%, #f4c426 100%);
}

.p-ngEngineerMv__cardBg--02 {
  background: -webkit-gradient(linear, left top, right top, from(#0066ce), to(#00b1c7));
  background: linear-gradient(to right, #0066ce 0%, #00b1c7 100%);
}

.p-ngEngineerMv__cardBg--03 {
  background: -webkit-gradient(linear, left top, right top, from(#eb3d5a), to(#e65cd1));
  background: linear-gradient(to right, #eb3d5a 0%, #e65cd1 100%);
}

.p-ngEngineerMv__card {
  background-color: var(--white);
  padding: 14px 10px 17px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-ngEngineerMv__card {
    padding: 6px 1px;
  }
}

.p-ngEngineerMv__nameJa {
  font-size: clamp(12px, 1.8vw, 18px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 0.8333333333;
}

.p-ngEngineerMv__nameJa--01 {
  color: #f48226;
}

.p-ngEngineerMv__nameJa--02 {
  color: #0068ce;
}

.p-ngEngineerMv__nameJa--03 {
  color: #eb3d59;
}

.p-ngEngineerMv__nameEn,
.p-ngEngineerMv__career,
.p-ngEngineerMv__year {
  font-size: clamp(7px, 1vw, 10px);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.p-ngEngineerMv__nameEn {
  margin-top: 4px;
}

.p-ngEngineerMv__career,
.p-ngEngineerMv__year {
  white-space: nowrap;
}

.p-ngEngineerHead {
  padding-block: clamp(74px, 10vw, 98px) clamp(50px, 5.3vw, 52px);
}

.p-ngEngineerTalk {
  background-color: var(--white);
  padding-bottom: 87px;
}
@media screen and (max-width: 994px) {
  .p-ngEngineerTalk {
    padding-bottom: 35px;
  }
}

.p-ngEngineerTalk__content {
  padding-top: 26px;
}

.p-ngEngineerTalk__content + .p-ngEngineerTalk__content {
  margin-top: 70px;
}
@media screen and (max-width: 994px) {
  .p-ngEngineerTalk__content + .p-ngEngineerTalk__content {
    margin-top: 97px;
  }
}

@media screen and (max-width: 994px) {
  .p-ngEngineerTalk__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 68px;
  }
}

.p-ngEngineerTalk__wrapper + .p-ngEngineerTalk__wrapper {
  margin-top: 19px;
}
@media screen and (max-width: 994px) {
  .p-ngEngineerTalk__wrapper + .p-ngEngineerTalk__wrapper {
    margin-top: 86px;
  }
}

.p-ngEngineerHead__lists {
  margin-top: clamp(52px, 5.6vw, 55px);
  max-width: 885px;
  margin-inline: auto;
}

.p-ngEngineerHeadLists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 994px) {
  .p-ngEngineerHeadLists {
    display: block;
    max-width: 681px;
    margin-inline: auto;
  }
}

.p-ngEngineerHeadLists + .p-ngEngineerHeadLists {
  margin-top: 29px;
}
@media screen and (max-width: 994px) {
  .p-ngEngineerHeadLists + .p-ngEngineerHeadLists {
    margin-top: 20px;
  }
}

.p-ngEngineerHeadListItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  cursor: pointer;
}

.p-ngEngineerHeadList + .p-ngEngineerHeadList {
  border-left: 1px solid var(--black);
  padding-left: 39px;
  margin-left: 39px;
}
@media screen and (max-width: 994px) {
  .p-ngEngineerHeadList + .p-ngEngineerHeadList {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    margin-top: 15px;
  }
}

.p-ngEngineerHeadList__number {
  font-size: clamp(30px, 3.5vw, 35px);
  font-weight: 500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
}

.p-ngEngineerHeadList__number::before {
  display: inline-block;
  content: "";
  width: 14px;
  height: 12px;
  background-color: var(--red);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}

.p-ngEngineerHeadList__text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.p-ngEngineerColor01 {
  color: #f48226;
}

.p-ngEngineerColor02 {
  color: #0068ce;
}

.p-ngEngineerColor03 {
  color: #eb3d59;
}

.p-ngEngineerTalk__Number {
  font-size: clamp(30px, 3.5vw, 35px);
  font-weight: 500;
  line-height: 1;
}

.p-ngEngineerTalk__head {
  font-size: clamp(22px, 2.5vw, 25px);
  font-weight: 500;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.p-ngEngineerTalk__title {
  margin-top: -2px;
}

.p-ngEngineerTalk__image img {
  aspect-ratio: 557/500;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-ngEngineerTalk__itemWrapper {
  margin-top: clamp(26px, 3.9vw, 39px);
}

.p-ngEngineer__bottom {
  padding-bottom: clamp(43px, 5.4vw, 53px);
}

.p-ngEngineer__bottomImage img {
  aspect-ratio: 1280/512;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-ngEngineer__bottomImage img {
    aspect-ratio: 375/232;
  }
}

.p-ngEngineer__bottomTextWrapper {
  max-width: 995px;
  padding-inline: 25px;
  margin-inline: auto;
  margin-top: 40px;
}
@media screen and (max-width: 994px) {
  .p-ngEngineer__bottomTextWrapper {
    margin-top: 30px;
  }
}

.p-ngEngineer__bottomText {
  font-size: clamp(18px, 2.5vw, 25px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.6666666667;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (max-width: 994px) {
  .p-ngEngineer__bottomText {
    gap: 3px;
  }
}

.p-ngEngineer__bottomText::before {
  display: inline-block;
  content: "";
  width: 19px;
  height: 16px;
  background-color: var(--red);
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
}

.p-ngEngineerHead--bg {
  position: relative;
  z-index: 1;
}

.p-ngEngineerHead--bg::before {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/bg-triangle09.png);
  aspect-ratio: 237/137;
  width: 237px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-78%, -37%);
          transform: translate(-78%, -37%);
  z-index: -1;
}
@media screen and (max-width: 994px) {
  .p-ngEngineerHead--bg::before {
    width: 168px;
    -webkit-transform: translate(-23%, -61%);
            transform: translate(-23%, -61%);
  }
}

.p-ngEngineerTalk__content--bg01 {
  position: relative;
  z-index: 1;
}

.p-ngEngineerTalk__content--bg01::before {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/bg-bigcircle.png);
  aspect-ratio: 247/494;
  width: 247px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, 0) rotate(180deg);
          transform: translate(0, 0) rotate(180deg);
  z-index: -1;
}
@media screen and (max-width: 994px) {
  .p-ngEngineerTalk__content--bg01::before {
    width: 127px;
    top: 20%;
  }
}

.p-ngEngineerTalk__content--bg02 {
  position: relative;
  z-index: 1;
}

.p-ngEngineerTalk__content--bg02::after {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/bg-dotmix.png);
  aspect-ratio: 286/373;
  width: 286px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(13%, 38%);
          transform: translate(13%, 38%);
  z-index: -1;
}
@media screen and (max-width: 994px) {
  .p-ngEngineerTalk__content--bg02::after {
    width: 151px;
    right: initial;
    bottom: initial;
    top: 0;
    left: 0;
    -webkit-transform: translate(-18%, -67%);
            transform: translate(-18%, -67%);
  }
}

.p-ngEngineerTalk__content--bg03 {
  position: relative;
  z-index: 1;
}

.p-ngEngineerTalk__content--bg03::before {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/bg-mix.png);
  aspect-ratio: 410/181;
  width: 410px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translate(-32%, -17%);
          transform: translate(-32%, -17%);
  z-index: -1;
}
@media screen and (max-width: 994px) {
  .p-ngEngineerTalk__content--bg03::before {
    width: 160px;
    bottom: initial;
    top: 0;
    -webkit-transform: translate(-45%, -99%);
            transform: translate(-45%, -99%);
  }
}

.p-ngEngineerTalk__content--bg04 {
  position: relative;
  z-index: 1;
}

.p-ngEngineerTalk__content--bg04::after {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/bg-circle.png);
  aspect-ratio: 349/127;
  width: 349px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(13%, -52%);
          transform: translate(13%, -52%);
  z-index: -1;
}
@media screen and (max-width: 994px) {
  .p-ngEngineerTalk__content--bg04::after {
    width: 151px;
    bottom: initial;
    top: 0;
    -webkit-transform: translate(17%, -122%);
            transform: translate(17%, -122%);
  }
}

.p-ngEngineerTalk__content--bg05 {
  position: relative;
  z-index: 1;
}

.p-ngEngineerTalk__content--bg05::before {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/bg-triangle09.png);
  aspect-ratio: 237/137;
  width: 237px;
  height: 137px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: 0;
  -webkit-transform: translate(-6%, -22%);
          transform: translate(-6%, -22%);
  z-index: -1;
}
@media screen and (max-width: 994px) {
  .p-ngEngineerTalk__content--bg05::before {
    width: 160px;
    height: 92px;
    bottom: initial;
    top: 0;
    -webkit-transform: translate(-17%, -107%);
            transform: translate(-17%, -107%);
  }
}

@media screen and (max-width: 994px) {
  .p-ngEngineerTalk__items {
    padding-top: 60px;
    margin-top: -60px;
  }
}

/* p-ngPride
---------------------------------------------------------------------*/
.p-ngPrideMv__image img {
  aspect-ratio: 1280/489;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 994px) {
  .p-ngPrideMv__image img {
    aspect-ratio: 375/214;
  }
}

.p-ngPrideMv__leadBox {
  position: relative;
  max-width: 1030px;
  margin-inline: auto;
  padding-inline: 10px;
}

.p-ngPrideMv__lead {
  margin: -70px 0 0 !important;
  padding: 40px 94px;
  background: var(--bgGray);
  border-radius: 20px 20px 0 0;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3888888889;
}
@media screen and (max-width: 767px) {
  .p-ngPrideMv__lead {
    padding: 24px 18px;
    margin: -86px 0 0 !important;
    white-space: nowrap;
  }
}

@media screen and (max-width: 767px) {
  .p-ngPride__Inner {
    padding-inline: 10px;
  }
}

.p-ngPride__bg {
  position: relative;
  z-index: 1;
}

.p-ngPride__bg::before {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/bg-mix.png);
  aspect-ratio: 410/181;
  width: 410px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-69%, -27%);
          transform: translate(-69%, -27%);
  z-index: -1;
}
@media screen and (max-width: 994px) {
  .p-ngPride__bg::before {
    width: 250px;
    -webkit-transform: translate(-49%, -7%);
            transform: translate(-49%, -7%);
  }
}

.p-ngPride__bg::after {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/bg-circle.png);
  aspect-ratio: 349/127;
  width: 349px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(48%, 64%);
          transform: translate(48%, 64%);
  z-index: -1;
}
@media screen and (max-width: 994px) {
  .p-ngPride__bg::after {
    width: 133px;
    -webkit-transform: translate(14%, 130%);
            transform: translate(14%, 130%);
  }
}

.p-ngPride__contents {
  padding-bottom: clamp(104px, 11.1vw, 109px);
}

.p-ngPride__cards {
  margin-top: clamp(43px, 6vw, 59px);
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, 230px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
}
@media screen and (max-width: 994px) {
  .p-ngPride__cards {
    max-width: 600px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-ngPride__cards {
    max-width: 325px;
    -ms-grid-columns: 1fr 17px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
  }
}

.p-ngPride__card {
  padding: 26px 24px 23px;
  aspect-ratio: 230/200;
}
@media screen and (max-width: 600px) {
  .p-ngPride__card {
    padding: 17px;
    max-width: 154px;
    aspect-ratio: 154/134;
    border-radius: 15px;
  }
}

.p-ngPride__cardImage img {
  aspect-ratio: 230/200;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .p-ngPride__cardImage img {
    aspect-ratio: 154/134;
  }
}
@media screen and (max-width: 600px) {
  .p-ngPride__cardImage img {
    border-radius: 15px;
  }
}

@media screen and (max-width: 600px) {
  .p-ngPride__textSub {
    font-size: 9px;
    line-height: 1.6666666667;
  }
}

@media screen and (max-width: 994px) {
  .p-ngPride__slide .slick-next,
  .p-ngPride__slide .slick-prev {
    bottom: -24px;
  }
}

/* p-ngMovie
---------------------------------------------------------------------*/
.p-ngMovie__bg {
  position: relative;
  z-index: 1;
}

.p-ngMovie__bg::before {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/bg-dotmix.png);
  aspect-ratio: 286/383;
  width: 286px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-69%, 0%);
          transform: translate(-69%, 0%);
  z-index: -1;
}
@media screen and (max-width: 994px) {
  .p-ngMovie__bg::before {
    width: 151px;
    -webkit-transform: translate(-45%, 2%);
            transform: translate(-45%, 2%);
  }
}

.p-ngMovie__bg::after {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/bg-triangle07.png);
  aspect-ratio: 267/74;
  width: 267px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(68%, 0%);
          transform: translate(68%, 0%);
  z-index: -1;
}
@media screen and (max-width: 994px) {
  .p-ngMovie__bg::after {
    width: 339px;
    -webkit-transform: translate(22%, 18%);
            transform: translate(22%, 18%);
  }
}

.p-ngMovie__contents {
  padding-block: clamp(65px, 9.2vw, 91px) clamp(108px, 11.4vw, 112px);
}

.p-ngMovieCards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (47.5376884422%)[2];
  grid-template-columns: repeat(2, 47.5376884422%);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 69px;
}
@media screen and (max-width: 994px) {
  .p-ngMovieCards {
    max-width: 440px;
    margin-inline: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 50px;
  }
}

.p-ngMovieCard__Image--hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-ngMovieCard__Image--hover:hover {
  opacity: 0.7;
}

.p-ngMovieCard__Image img {
  border-radius: 30px;
  aspect-ratio: 473/266;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 994px) {
  .p-ngMovieCard__Image img {
    border-radius: 20px;
  }
}

.p-ngMovie__iframe iframe {
  aspect-ratio: 560/315;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-ngMovieCard__Title {
  margin-top: 11px !important;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4444444444;
  color: var(--red);
  margin: 11px 0 0;
  padding: 0;
  background: initial;
}
@media screen and (max-width: 994px) {
  .p-ngMovieCard__Title {
    margin: 15px 0 0 !important;
  }
}

.p-ngMovieCard__Title span {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4444444444;
  color: currentColor;
  background-color: initial;
  display: inline-block;
  padding: 0;
}

.p-ngMovieCard__Text {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5625;
}
@media screen and (max-width: 994px) {
  .p-ngMovieCard__Note {
    text-indent: -1em;
    padding-left: 1em;
    display: block;
  }
}

/* p-ngTop
---------------------------------------------------------------------*/
.p-ngTopMv {
  background-color: var(--white);
  position: relative;
  z-index: 1;
}

.p-ngTopMv__image img {
  aspect-ratio: 1434/744;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 994px) {
  .p-ngTopMv__image img {
    aspect-ratio: 375/434;
  }
}

.p-ngTopKv {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.p-ngTopKv__inner {
  max-width: 724px;
  margin-inline: auto;
  padding-inline: 25px;
}

.p-ngTopKv__contents {
  padding-block: clamp(46px, 8.8vw, 87px) clamp(119px, 15vw, 147px);
  color: var(--white);
  text-align: center;
}

.p-ngTopKv__icon {
  max-width: 75px;
  margin-inline: auto;
}
@media screen and (max-width: 994px) {
  .p-ngTopKv__icon {
    max-width: 57px;
  }
}

.p-ngTopKv__icon img {
  aspect-ratio: 75/115;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-ngTopKv__content {
  margin-top: clamp(16px, 3.2vw, 32px);
}

.p-ngTopKv__text {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2.375;
}
@media screen and (max-width: 399px) {
  .p-ngTopKv__text {
    white-space: nowrap;
  }
}

.p-ngTopKv__lead {
  margin-top: clamp(24px, 2.9vw, 29px);
}

.p-ngTopKv__leadSub {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2.375;
}

.p-ngTopKv__leadText {
  margin-top: 19px;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2.375;
}
@media screen and (max-width: 994px) {
  .p-ngTopKv__leadText {
    margin-top: 29px;
    line-height: 2;
  }
}

.p-ngTopKv__leadMain {
  max-width: 674px;
  margin-inline: auto;
}

.p-ngTopKv__leadMain img {
  aspect-ratio: 674/65;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-ngTopKv__leadMain img {
    max-width: 356px;
    aspect-ratio: 356/110;
  }
}

.p-ngTopPride {
  margin-top: -50px;
  border-radius: 50px 0 50px 0;
}

.p-ngTopPride__bgColor {
  background-color: rgba(219, 227, 235, 0.88);
  border-radius: 50px 0 50px 0;
}

.p-ngTopPride__contents {
  padding-block: 53px 97px;
}
@media screen and (max-width: 994px) {
  .p-ngTopPride__contents {
    padding-block: 68px 77px;
  }
}

.p-ngTopPride__bg {
  position: relative;
  z-index: 1;
}

.p-ngTopPride__bg::before {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/bg-mix.png);
  aspect-ratio: 410/181;
  width: 410px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-69%, 17%);
          transform: translate(-69%, 17%);
  z-index: -1;
}
@media screen and (max-width: 994px) {
  .p-ngTopPride__bg::before {
    width: 160px;
    -webkit-transform: translate(-58%, 74%);
            transform: translate(-58%, 74%);
  }
}

.p-ngTopPride__bg::after {
  display: inline-block;
  content: "";
  background-image: url(../../image/top/TopPride-icon.svg);
  aspect-ratio: 79/119;
  width: 79px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(-12%, 57%);
          transform: translate(-12%, 57%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-ngTopPride__bg::after {
    width: 71px;
    -webkit-transform: translate(1%, -12%);
            transform: translate(1%, -12%);
  }
}

.p-ngTopPride__cards {
  margin-top: 57px;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, 230px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .p-ngTopPride__cards {
    margin-top: 64px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.p-ngTopPride__card {
  padding: 26px 24px 23px;
  aspect-ratio: 230/200;
}
@media screen and (max-width: 767px) {
  .p-ngTopPride__card {
    margin: 0 8px;
  }
}

.p-ngTopMovie {
  margin-top: -50px;
  background-color: var(--white);
  border-radius: 50px 0 50px 0;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .p-ngTopMovie__Title {
    font-size: 16px;
    padding-left: 16px;
    margin-top: 11px !important;
    min-height: 48px;
  }
}

@media screen and (max-width: 767px) {
  .p-ngTopPride__slide {
    margin-inline: auto;
    width: 492px;
  }
}
@media screen and (max-width: 600px) {
  .p-ngTopPride__slide {
    width: 246px;
  }
}

.p-ngTopPride__btn {
  margin-top: 58px;
  max-width: 250px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-ngTopPride__btn {
    margin-top: 80px;
  }
}

.p-ngTopMovie__bg,
.p-ngTopMovie__bg02 {
  position: relative;
  z-index: 1;
}

.p-ngTopMovie__bg::before {
  display: inline-block;
  content: "";
  background-image: url(../../image/top/TopMovie-icon.svg);
  aspect-ratio: 81/101;
  width: 81px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(450%, -19%);
          transform: translate(450%, -19%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-ngTopMovie__bg::before {
    width: 75px;
    -webkit-transform: translate(250%, -19%);
            transform: translate(250%, -19%);
  }
}

.p-ngTopMovie__bg02::before {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/bg-mix.png);
  aspect-ratio: 410/181;
  width: 410px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-164%, -31%);
          transform: translate(-164%, -31%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-ngTopMovie__bg02::before {
    width: 287px;
    -webkit-transform: translate(-76%, -20%);
            transform: translate(-76%, -20%);
  }
}

@media screen and (max-width: 767px) {
  .p-ngTopMovie__tttle {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .p-ngTopMovie__tttle .c-ngTopTitle-ja {
    margin-left: 3.5em !important;
  }
}

.p-ngTopMovie__contents {
  padding-block: 60px clamp(60px, 7.4vw, 73px);
}

.p-ngTopMovie__slide {
  margin-top: 38px;
}
@media screen and (max-width: 994px) {
  .p-ngTopMovie__slide {
    margin-top: 62px;
  }
}

.p-ngTopMovie__slide .slick-next,
.p-ngTopMovie__slide .slick-prev {
  top: -36px;
  bottom: initial;
  left: calc(50% - 50px);
  right: initial;
  -webkit-transform: translate(800%, -100%);
          transform: translate(800%, -100%);
}
@media screen and (max-width: 600px) {
  .p-ngTopMovie__slide .slick-next,
  .p-ngTopMovie__slide .slick-prev {
    top: -18px;
    left: initial;
    right: 0;
    -webkit-transform: translate(-60px, -100%);
            transform: translate(-60px, -100%);
  }
}

.p-ngTopMovie__slide .slick-next {
  -webkit-transform: translate(947%, -100%) rotate(180deg);
          transform: translate(947%, -100%) rotate(180deg);
}
@media screen and (max-width: 600px) {
  .p-ngTopMovie__slide .slick-next {
    -webkit-transform: translate(-25px, -100%) rotate(180deg);
            transform: translate(-25px, -100%) rotate(180deg);
  }
}

.p-ngTopMovie__card {
  margin: 0 25px;
  width: 30%;
}
@media screen and (max-width: 994px) {
  .p-ngTopMovie__card {
    margin: 0 6px;
  }
}

.p-ngTopMovie__btn {
  margin-top: clamp(38px, 7.5vw, 74px);
  max-width: 250px;
  margin-inline: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-ngTopBusiness {
  padding-block: clamp(82px, 11.4vw, 112px) clamp(137px, 14.2vw, 140px);
}

.p-ngTopBusiness {
  position: relative;
  z-index: 0;
}

.p-ngTopBusiness__contents {
  position: relative;
  z-index: 1;
}

.p-ngTopBusiness__bgColor {
  border-radius: 0 50px 50px 0;
  margin-right: max((100% - 850px) / 2, 25px);
  margin-left: max((100% - 995px) / 2, 25px);
  padding: clamp(46px, 7vw, 69px) 25px clamp(63px, 13.5vw, 133px) 0;
  position: relative;
  z-index: 1;
}

.p-ngTopBusiness__bgColor::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200vw;
  height: 100%;
  border-radius: 0 50px 50px 0;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: -1;
}

.p-ngTopBusiness__bg {
  position: relative;
  z-index: 1;
}

.p-ngTopBusiness__bg::before {
  display: inline-block;
  content: "";
  background-image: url(../../image/top/TopBusiness-iconLarge.png);
  aspect-ratio: 395/185;
  width: 43%;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
}
@media screen and (max-width: 600px) {
  .p-ngTopBusiness__bg::before {
    width: 89px;
    background-image: url(../../image/top/TopBusiness-iconSmall.png);
    aspect-ratio: 89/129;
    -webkit-transform: translate(9%, 0%);
            transform: translate(9%, 0%);
  }
}

@media screen and (max-width: 767px) {
  .p-ngTopBusiness__title {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-ngTopBusiness__title .c-ngTopTitle-ja {
    margin-inline: auto 1em !important;
  }
}

.p-ngTopBusiness__cards {
  margin-top: 66px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 360px 101px 360px;
  grid-template-columns: repeat(2, 360px);
  gap: 57px 101px;
}
@media screen and (max-width: 994px) {
  .p-ngTopBusiness__cards {
    margin-top: 78px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

.p-ngTopBusiness__card {
  padding-bottom: 16px;
  max-width: 360px;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 994px) {
  .p-ngTopBusiness__card {
    padding-bottom: 22px;
  }
}

.p-ngTopBusiness__cardIcon {
  max-width: 152px;
  margin-inline: auto;
}

.p-ngTopBusiness__cardIcon--02 {
  max-width: 135px;
}

.p-ngTopBusiness__cardIcon--03 {
  max-width: 153px;
}

.p-ngTopBusiness__cardIcon--04 {
  max-width: 200px;
}

.p-ngTopBusiness__cardItem {
  margin-top: 28px;
  text-align: center;
}

.p-ngTopBusiness__card:nth-child(3) .p-ngTopBusiness__cardItem,
.p-ngTopBusiness__card:nth-child(4) .p-ngTopBusiness__cardItem {
  margin-top: 16px;
}

.p-ngTopBusiness__cardNumber {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 500;
  letter-spacing: 0.1em;
  border-bottom: 3px solid var(--red);
}

.p-ngTopBusiness__cardTitle {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.p-ngTopBusiness__cardText {
  margin-top: 20px;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.p-ngTopBusiness__btn {
  margin-top: clamp(93px, 9.7vw, 96px);
  max-width: 250px;
  margin-inline: auto;
}

.p-ngTopTalk {
  margin-top: -50px;
  background-color: var(--white);
  border-radius: 50px 0 0 0;
}

.p-ngTopTalk__contents {
  padding-block: 55px 134px;
}
@media screen and (max-width: 994px) {
  .p-ngTopTalk__contents {
    padding-block: 57px 127px;
  }
}

.p-ngTopTalk__bg {
  position: relative;
  z-index: 1;
}

.p-ngTopTalk__bg::before {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/bg-dotmix.png);
  aspect-ratio: 286/383;
  width: 286px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-69%, 17%);
          transform: translate(-69%, 17%);
  z-index: -1;
}
@media screen and (max-width: 994px) {
  .p-ngTopTalk__bg::before {
    width: 151px;
  }
}

.p-ngTopTalk__bg::after {
  display: inline-block;
  content: "";
  background-image: url(../../image/top/TopTalk-icon.svg);
  aspect-ratio: 119/113;
  width: 119px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(-7%, 29%);
          transform: translate(-7%, 29%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-ngTopTalk__bg::after {
    width: 107px;
    -webkit-transform: translate(-6%, 87%);
            transform: translate(-6%, 87%);
  }
}

.p-ngTopTalk__box {
  display: block;
  margin-top: clamp(37px, 4.7vw, 47px);
  max-width: 472px;
  margin-inline: auto;
  color: var(--black);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-ngTopTalk__image img {
  aspect-ratio: 472/260;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}

.p-ngTopTalk__boxItems {
  margin-top: 19px;
}

.p-ngTopTalk__number {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Oswald", sans-serif;
  position: relative;
}

.p-ngTopTalk__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.p-ngTopTalk__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 767px) {
  .p-ngTopTalk__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
  }
}

.p-ngTopWorks {
  margin-top: -50px;
  border-radius: 50px 0 0 0;
  background-color: var(--bgGray);
}

.p-ngTopWorks__contents {
  padding-block: 94px 119px;
}
@media screen and (max-width: 994px) {
  .p-ngTopWorks__contents {
    padding-block: 70px 123px;
  }
}

.p-ngTopWorks__bg {
  position: relative;
  z-index: 1;
}

.p-ngTopWorks__bg::after {
  display: inline-block;
  content: "";
  background-image: url(../../image/top/TopWorks-icon.svg);
  aspect-ratio: 349/160;
  width: 349px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(56%, 48%);
          transform: translate(56%, 48%);
  z-index: -1;
}
@media screen and (max-width: 994px) {
  .p-ngTopWorks__bg::after {
    background-image: url(../../image/top/TopWorks-icon-sp.svg);
    aspect-ratio: 133/144;
    width: 133px;
    -webkit-transform: translate(14%, 10%);
            transform: translate(14%, 10%);
  }
}

@media screen and (max-width: 767px) {
  .p-ngTopWorks__title {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.p-ngTopWorks__cards {
  margin-top: 70px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 472px 43px 472px;
  grid-template-columns: repeat(2, 472px);
  gap: 43px;
}
@media screen and (max-width: 767px) {
  .p-ngTopWorks__cards {
    margin-top: 74px;
    max-width: 472px;
    margin-inline: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.p-ngTopWorks__card {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-ngTopWorks__cardImage img {
  aspect-ratio: 472/260;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.p-ngTopWorks__cardTitle {
  margin-top: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-left: 0.5em;
}
@media screen and (max-width: 767px) {
  .p-ngTopWorks__cardTitle {
    margin-top: 13px;
    margin-left: 0;
  }
}

.p-ngTopWorks__cardTitle::before {
  display: inline-block;
  content: "";
  width: 32px;
  height: 3px;
  background-color: var(--red);
}

@media (any-hover: hover) {
  .p-ngTopTalk__box:hover,
  .p-ngTopWorks__card:hover {
    opacity: 0.7;
  }
}
.p-ngBtnsTop {
  padding-top: 50px;
  margin-top: -50px;
}

/* p-ngMembers 
---------------------------------------------------------------------*/
.p-ngMembers__contents {
  background-color: var(--white);
  padding-bottom: 67px;
}
@media screen and (max-width: 767px) {
  .p-ngMembers__contents {
    padding-bottom: 97px;
  }
}

.p-ngMembers__text {
  font-size: 14px;
}

.p-ngMembers__tabs {
  margin-top: 8px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 767px) {
  .p-ngMembers__tabs {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-ngMembers__tab {
  display: inline-block;
  padding: 8px;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--red);
  background-color: var(--white);
  border: 1px solid var(--red);
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-ngMembers__tab {
    padding: 4px;
    white-space: nowrap;
  }
}

.p-ngMembers__tab:not(:first-child) {
  border-left: none;
}

@media screen and (max-width: 767px) {
  .p-ngMembers__tab:nth-child(4) {
    border-left: 1px solid var(--red);
  }
}

@media screen and (max-width: 767px) {
  .p-ngMembers__tab:nth-child(4),
  .p-ngMembers__tab:nth-child(5) {
    border-top: none;
  }
}

.p-ngMembers__tab.active {
  color: var(--white);
  background-color: var(--red);
}

.p-ngMembers__hashtagContents {
  margin-top: 9px;
}

.p-ngMembers__hashtags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-ngMembers__hashtag {
  border: none;
  background-color: initial;
  cursor: pointer;
  font-size: 14px;
  margin-block: 2px;
  color: var(--black);
}

.p-ngMembers__hashtag.active {
  background-color: var(--black);
  color: var(--white);
}

.p-ngMembers__cardContents {
  margin-top: clamp(39px, 6.7vw, 66px);
}

.p-ngMembers__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 36px;
}
@media screen and (max-width: 767px) {
  .p-ngMembers__cards {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-ngMembers__slideWrapper {
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: minmax(0, 220px) 20px minmax(0, 220px);
  grid-template-columns: repeat(2, minmax(0, 220px));
  gap: 17px 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-ngMembersCard {
  position: relative;
  max-width: 220px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (any-hover: hover) {
  .p-ngMembersCard:hover {
    opacity: 0.7;
  }
}
.p-ngMembersCard__image img {
  aspect-ratio: 220/266;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-ngMembersCard__items {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: rgba(51, 51, 51, 0.65);
  color: var(--white);
}

.p-ngMembersCard__names {
  padding-inline: 8% 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .p-ngMembersCard__names {
    gap: 4px;
  }
}

.p-ngMembersCard__nameJa {
  font-size: clamp(12px, 1.8vw, 18px);
  font-weight: 600;
  letter-spacing: 0.1em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-ngMembersCard__nameEn {
  font-size: clamp(7px, 1vw, 10px);
  letter-spacing: 0.1em;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-ngMembersCard__date {
  padding: 4px 6px 7px 8%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.p-ngMembersCard__dateText {
  font-size: clamp(8px, 1.2vw, 12px);
  line-height: 1.3333333333;
}

.p-ngMembersCard__line {
  display: block;
  height: 5px;
}

.p-ngMembersCard__line--01 {
  background: -webkit-gradient(linear, left top, right top, from(#0066ce), to(#00b1c7));
  background: linear-gradient(to right, #0066ce 0%, #00b1c7 100%);
}

.p-ngMembersCard__line--02 {
  background: -webkit-gradient(linear, left top, right top, from(#6eb92b), to(#00c7a8));
  background: linear-gradient(to right, #6eb92b 0%, #00c7a8 100%);
}

.p-ngMembersCard__line--03 {
  background: -webkit-gradient(linear, left top, right top, from(#f48226), to(#f4c426));
  background: linear-gradient(to right, #f48226 0%, #f4c426 100%);
}

.p-ngMembersCard__line--04 {
  background: -webkit-gradient(linear, left top, right top, from(#eb3d5a), to(#e65cd1));
  background: linear-gradient(to right, #eb3d5a 0%, #e65cd1 100%);
}

.p-ngMembersCard__line--05 {
  background: -webkit-gradient(linear, left top, right top, from(#7633c7), to(#b715a4));
  background: linear-gradient(to right, #7633c7 0%, #b715a4 100%);
}

.p-ngMembers__cards .slick-next.slick-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.p-ngMembers__cards .slick-next,
.p-ngMembers__cards .slick-prev {
  bottom: -25px;
}

.p-ngMembersCard.is-placeholder {
  visibility: hidden;
}

/* p-ngPerson
---------------------------------------------------------------------*/
.p-ngPersonMv__contents {
  background-image: url(../../image/person/PersonMv-bg01.jpg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}
@media screen and (max-width: 994px) {
  .p-ngPersonMv__contents {
    background-image: url(../../image/person/PersonMv-bg-sp01.jpg);
  }
}

.p-ngPersonMv__contents--01 {
  background-image: url(../../image/person/PersonMv-bg01.jpg);
}
@media screen and (max-width: 994px) {
  .p-ngPersonMv__contents--01 {
    background-image: url(../../image/person/PersonMv-bg-sp01.jpg);
  }
}

.p-ngPersonMv__contents--02 {
  background-image: url(../../image/person/PersonMv-bg02.jpg);
}
@media screen and (max-width: 994px) {
  .p-ngPersonMv__contents--02 {
    background-image: url(../../image/person/PersonMv-bg-sp02.jpg);
  }
}

.p-ngPersonMv__contents--03 {
  background-image: url(../../image/person/PersonMv-bg03.jpg);
}
@media screen and (max-width: 994px) {
  .p-ngPersonMv__contents--03 {
    background-image: url(../../image/person/PersonMv-bg-sp03.jpg);
  }
}

.p-ngPersonMv__contents--04 {
  background-image: url(../../image/person/PersonMv-bg04.jpg);
}
@media screen and (max-width: 994px) {
  .p-ngPersonMv__contents--04 {
    background-image: url(../../image/person/PersonMv-bg-sp04.jpg);
  }
}

.p-ngPersonMv__contents--05 {
  background-image: url(../../image/person/PersonMv-bg05.jpg);
}
@media screen and (max-width: 994px) {
  .p-ngPersonMv__contents--05 {
    background-image: url(../../image/person/PersonMv-bg-sp05.jpg);
  }
}

.p-ngPersonMv__content {
  position: relative;
}
@media screen and (max-width: 994px) {
  .p-ngPersonMv__content {
    max-width: 600px;
    margin-inline: auto;
  }
}

.p-ngPersonMv__body {
  padding-top: 24px;
}

.p-ngPersonMv__items {
  padding-top: clamp(33px, 6.5vw, 64px);
  position: relative;
  z-index: 1;
  color: var(--white);
}

.p-ngPersonMv__title {
  font-size: clamp(25px, 3vw, 35px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2857142857;
}
@media screen and (max-width: 767px) {
  .p-ngPersonMv__title {
    white-space: nowrap;
    line-height: 1.52;
  }
}

.p-ngPersonMv__item {
  margin-top: clamp(33px, 3.7vw, 37px);
  font-size: clamp(15px, 1.6vw, 16px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.625;
}

.p-ngPersonMv__date {
  margin-top: 11px;
}
@media screen and (max-width: 994px) {
  .p-ngPersonMv__date {
    margin-top: 16px;
  }
}

.p-ngPersonMv__image {
  max-width: 394px;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 994px) {
  .p-ngPersonMv__image {
    position: static;
    margin: -16px -77px -16px auto;
    max-width: 349px;
  }
}

.p-ngPersonMv__image img {
  width: 100%;
  height: auto;
}

.p-ngPersonMv__bottom {
  margin-top: 87px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 1em auto;
  grid-template-columns: 50% auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
}
@media screen and (max-width: 994px) {
  .p-ngPersonMv__bottom {
    margin-top: 0;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 20px;
    margin-inline: -10px;
  }
}

.p-ngPersonMv__nameBox {
  position: relative;
  z-index: 1;
  padding-block: 15px 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 21px;
}
@media screen and (max-width: 994px) {
  .p-ngPersonMv__nameBox {
    display: none;
  }
}

.p-ngPersonMv__nameBox-sp {
  display: none;
}
@media screen and (max-width: 994px) {
  .p-ngPersonMv__nameBox-sp {
    display: block;
    position: relative;
    z-index: 1;
    padding-inline: 25px;
    background-color: #ecf6ff;
    border-radius: 20px 20px 0 0;
  }
}

.p-ngPersonMv__nameItems {
  padding-block: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 21px;
  max-width: 638px;
  margin-inline: auto;
}
@media screen and (max-width: 994px) {
  .p-ngPersonMv__nameItems {
    padding-top: 30px;
  }
}

.p-ngPersonMv__nameBox::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150vw;
  height: 100%;
  background-color: #ecf6ff;
  z-index: -1;
  border-radius: 0 20px 0 0;
}
@media screen and (max-width: 994px) {
  .p-ngPersonMv__nameBox::after {
    content: none;
  }
}

.p-ngPersonMv__nameJa {
  font-size: clamp(25px, 2.8vw, 28px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
}

.p-ngPersonMv__nameEn {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
}

.p-ngPersonMv__tagBox {
  position: relative;
  z-index: 1;
  padding: 6px 26px;
  background-color: var(--white);
  border-radius: 15px;
  border: 1px solid var(--red);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px 1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 994px) {
  .p-ngPersonMv__tagBox {
    margin-top: -76px;
    margin-left: auto;
    margin-right: 0;
    padding: 6px 13px;
    gap: 4px 1em;
  }
}

.p-ngPersonMv__tag {
  font-size: clamp(10px, 1.3vw, 13px);
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--red);
  white-space: nowrap;
}

.p-ngPersonFaq {
  background-color: #ecf6ff;
}

.p-ngPersonFaq__contents {
  padding-top: clamp(36px, 6.7vw, 66px);
  max-width: 638px;
  margin-inline: auto;
}

.p-ngPersonFaq__boxLarge + .p-ngPersonFaq__boxLarge {
  margin-top: clamp(45px, 6.7vw, 66px);
}

.p-ngPersonFaq__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--red);
  text-indent: -1em;
  padding-left: 1em;
}

.p-ngPersonFaq__lead {
  padding-block: 18px 13px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .p-ngPersonFaq__lead {
    white-space: nowrap;
  }
}

.p-ngPersonFaq__text {
  margin-top: 10px;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.75;
}

.p-ngPersonFaq__imageContent {
  margin-top: clamp(49px, 8.4vw, 83px);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 10% 68%;
  grid-template-columns: auto 68%;
  gap: 10%;
}
@media screen and (max-width: 994px) {
  .p-ngPersonFaq__imageContent {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}

.p-ngPersonFaq__image {
  margin-left: calc(200% - 50vw);
}
@media screen and (max-width: 994px) {
  .p-ngPersonFaq__image {
    margin-left: calc(50% - 50vw);
  }
}

.p-ngPersonFaq__image img {
  border-radius: 0 30px 30px 0;
  aspect-ratio: 456/296;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-ngPersonFaq__box + .p-ngPersonFaq__box {
  margin-top: 38px;
}
@media screen and (max-width: 994px) {
  .p-ngPersonFaq__box + .p-ngPersonFaq__box {
    margin-top: 42px;
  }
}

.p-ngPersonPride {
  margin-top: clamp(71px, 13vw, 128px);
}

.p-ngPersonPride__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (50%)[2];
  grid-template-columns: repeat(2, 50%);
  color: var(--white);
}
@media screen and (max-width: 994px) {
  .p-ngPersonPride__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.p-ngPersonPride__item {
  margin-left: calc(50% - 50vw);
  padding: 16px 34px 16px calc(50vw - 50%);
  display: -ms-grid;
  display: grid;
  place-content: center;
  justify-items: start;
}
@media screen and (max-width: 994px) {
  .p-ngPersonPride__item {
    margin-inline: -25px;
    padding: 50px 25px;
  }
}

.p-ngPersonPride__item--01 {
  background: -webkit-gradient(linear, left top, right top, from(#0066ce), to(#00b1c7));
  background: linear-gradient(to right, #0066ce 0%, #00b1c7 100%);
}

.p-ngPersonPride__item--02 {
  background: -webkit-gradient(linear, left top, right top, from(#6eb92b), to(#00c7a8));
  background: linear-gradient(to right, #6eb92b 0%, #00c7a8 100%);
}

.p-ngPersonPride__item--03 {
  background: -webkit-gradient(linear, left top, right top, from(#f48226), to(#f4c426));
  background: linear-gradient(to right, #f48226 0%, #f4c426 100%);
}

.p-ngPersonPride__item--04 {
  background: -webkit-gradient(linear, left top, right top, from(#eb3d5a), to(#e65cd1));
  background: linear-gradient(to right, #eb3d5a 0%, #e65cd1 100%);
}

.p-ngPersonPride__item--05 {
  background: -webkit-gradient(linear, left top, right top, from(#7633c7), to(#b715a4));
  background: linear-gradient(to right, #7633c7 0%, #b715a4 100%);
}

.p-ngPersonPride__tag {
  padding: 4px 36px 8px;
  display: inline-block;
  font-size: clamp(21px, 2.8vw, 28px);
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
  color: var(--red);
  background-color: var(--white);
  border-radius: 24px;
  border: 1px solid var(--red);
}
@media screen and (max-width: 994px) {
  .p-ngPersonPride__tag {
    padding: 10px 20px 15px;
  }
}

.p-ngPersonPride__title {
  padding-top: 16px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 994px) {
  .p-ngPersonPride__title {
    margin-top: 33px;
  }
}

.p-ngPersonPride__lead {
  margin-top: 11px;
  font-size: clamp(24px, 2.8vw, 30px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3333333333;
}
@media screen and (max-width: 994px) {
  .p-ngPersonPride__lead {
    margin-top: 45px;
  }
}

.p-ngPersonPride__text {
  margin-top: 17px;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.75;
}

.p-ngPersonPride__image {
  margin-right: calc(100% - 50vw);
}
@media screen and (max-width: 994px) {
  .p-ngPersonPride__image {
    margin-inline: -25px;
  }
}

.p-ngPersonPride__image img {
  aspect-ratio: 640/460;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 994px) {
  .p-ngPersonPride__image img {
    aspect-ratio: 375/349;
  }
}

.p-ngPersonLink {
  padding-block: 61px 67px;
  background-color: var(--white);
}

.p-ngPersonLink__title {
  text-align: center;
}

.p-ngPersonLink__btn {
  margin-top: 38px;
  max-width: 250px;
  margin-inline: auto;
}

/* p-ngCareer
---------------------------------------------------------------------*/
.p-ngCareerHead {
  position: relative;
  z-index: 1;
}

.p-ngCareerHead::before {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/bg-triangle08.png);
  aspect-ratio: 512/190;
  width: 512px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-114%, -40%);
          transform: translate(-114%, -40%);
}
@media screen and (max-width: 994px) {
  .p-ngCareerHead::before {
    width: 366px;
    -webkit-transform: translate(-78%, -63%);
            transform: translate(-78%, -63%);
  }
}

.p-ngCareerStep__content--bg1 {
  position: relative;
  z-index: 1;
}

.p-ngCareerStep__content--bg1::before {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/bg-dotmix.png);
  aspect-ratio: 286/383;
  width: 286px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(82%, 101%);
          transform: translate(82%, 101%);
  z-index: -1;
}
@media screen and (max-width: 994px) {
  .p-ngCareerStep__content--bg1::before {
    width: 151px;
    -webkit-transform: translate(36%, 113%);
            transform: translate(36%, 113%);
  }
}

.p-ngCareerStep__content--bg2 {
  position: relative;
  z-index: 1;
}

.p-ngCareerStep__content--bg2::before {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/bg-bigcircle.png);
  aspect-ratio: 247/494;
  width: 247px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 68%;
  left: 0;
  -webkit-transform: translate(0, 0) rotate(180deg);
          transform: translate(0, 0) rotate(180deg);
  z-index: -1;
}
@media screen and (max-width: 994px) {
  .p-ngCareerStep__content--bg2::before {
    width: 127px;
    top: 64%;
  }
}

.p-ngCareerStep__content--bg3 {
  position: relative;
  z-index: 1;
}

.p-ngCareerStep__content--bg3::before {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/bg-mix.png);
  aspect-ratio: 410/181;
  width: 410px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(58%, -25%);
          transform: translate(58%, -25%);
  z-index: -1;
}
@media screen and (max-width: 994px) {
  .p-ngCareerStep__content--bg3::before {
    width: 297px;
    -webkit-transform: translate(46%, -45%);
            transform: translate(46%, -45%);
  }
}

.p-ngCareerStep__content--bg3::after {
  display: inline-block;
  content: "";
  background-image: url(../../image/common/bg-circle.png);
  aspect-ratio: 349/127;
  width: 349px;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translate(-57%, 27%);
          transform: translate(-57%, 27%);
  z-index: -1;
}
@media screen and (max-width: 994px) {
  .p-ngCareerStep__content--bg3::after {
    width: 133px;
    -webkit-transform: translate(-37%, 126%);
            transform: translate(-37%, 126%);
  }
}

.p-ngCareer__contents {
  background: var(--white);
}

.p-ngCareerHead {
  padding-top: clamp(11px, 2.6vw, 26px);
  max-width: 694px;
  margin-inline: auto;
}

.p-ngCareerHead__title {
  font-size: clamp(26px, 3.5vw, 35px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}

.p-ngCareerHead__text {
  margin-top: clamp(19px, 4.7vw, 47px);
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.9;
}

.p-ngCareerImage {
  margin-top: clamp(49px, 9vw, 89px);
  margin-right: -25px;
}

.p-ngCareerImage__title {
  text-align: center;
  margin-left: -25px;
}

.p-ngCareerImage__titleText {
  display: inline-block;
  padding: 4px 46px;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--red);
  border: 1px solid var(--red);
  border-radius: 19px;
}

.p-ngCareerImage__wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  padding-bottom: 17px;
}
@media screen and (max-width: 994px) {
  .p-ngCareerImage__wrapper {
    margin-top: 2em;
  }
}

.p-ngCareerImage__wrapper img {
  display: block;
  max-width: none;
  width: 995px;
}

.p-ngCareerImage__wrapper::-webkit-scrollbar {
  margin-top: 10px;
  height: 8px;
}

.p-ngCareerImage__wrapper::-webkit-scrollbar-track {
  background: #e5e5e5;
}

.p-ngCareerImage__wrapper::-webkit-scrollbar-thumb {
  background: var(--red);
}

.p-ngCareerStep {
  padding-block: 60px 115px;
}
@media screen and (max-width: 994px) {
  .p-ngCareerStep {
    max-width: 694px;
    margin-inline: auto;
    padding-block: 74px 91px;
  }
}

.p-ngCareerStep__content {
  margin-top: 22px;
}

.p-ngCareerStep__title {
  font-size: clamp(26px, 2.8vw, 28px);
  font-weight: 700;
  letter-spacing: 0.1em;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-ngCareerStep__title::after {
  display: inline-block;
  content: "";
  width: 55px;
  height: 3px;
  background: var(--red);
  position: absolute;
  top: 50%;
  right: -18px;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
}
@media screen and (max-width: 994px) {
  .p-ngCareerStep__title::after {
    width: 32px;
  }
}

.p-ngCareerStep__body {
  margin-top: 15px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 229px 55px auto;
  grid-template-columns: 229px auto;
  gap: 55px;
}
@media screen and (max-width: 994px) {
  .p-ngCareerStep__body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.p-ngCareerStep__case {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.p-ngCareerStep__caseTag {
  display: inline-block;
  width: 81px;
  padding: 2px 4px 4px 16px;
  font-size: 20px;
  font-family: "Oswald", sans-serif;
  color: var(--white);
  line-height: 1;
  background: -webkit-gradient(linear, left top, right top, from(#0066ce), to(#00b1c7));
  background: linear-gradient(to right, #0066ce 0%, #00b1c7 100%);
  clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%);
}

.p-ngCareerStep__caseNumber {
  font-size: 40px;
  font-family: "Oswald", sans-serif;
  color: #0068ce;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.p-ngCareerStep__person {
  max-width: 230px;
}
@media screen and (max-width: 994px) {
  .p-ngCareerStep__person {
    max-width: 600px;
    width: 100%;
    margin-inline: auto;
  }
}

.p-ngCareerStep__image {
  max-width: 229px;
}
@media screen and (max-width: 994px) {
  .p-ngCareerStep__image {
    max-width: 100%;
    width: 70%;
    margin-inline: auto;
  }
}

.p-ngCareerStep__image img {
  aspect-ratio: 229/180;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-ngCareerStep__info {
  margin-top: clamp(12px, 1.7vw, 17px);
  text-align: center;
}

.p-ngCareerStep__nameJa {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 0.9444444444;
  color: #0068ce;
}

.p-ngCareerStep__nameEn {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4166666667;
}

.p-ngCareerStep__career {
  margin-top: 9px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4285714286;
}

.p-ngCareerStep__year {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 700;
}

.p-ngCareerChart__box {
  position: relative;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100fr 4.8% 575fr;
  grid-template-columns: 100fr 575fr;
  gap: 4.8%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 994px) {
  .p-ngCareerChart__box {
    margin-top: 52px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.p-ngCareerChart__box:not(:last-child)::after {
  display: inline-block;
  content: "";
  width: 2px;
  height: calc(100% + 41px);
  background-image: linear-gradient(to bottom, #3096fa 2px, transparent 0);
  background-size: 2px 5px;
  background-repeat: repeat-y;
  position: absolute;
  top: 0%;
  left: 49px;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  z-index: -1;
}
@media screen and (max-width: 994px) {
  .p-ngCareerChart__box:not(:last-child)::after {
    content: none;
  }
}

.p-ngCareerChart__box + .p-ngCareerChart__box {
  margin-top: 41px;
}
@media screen and (max-width: 994px) {
  .p-ngCareerChart__box + .p-ngCareerChart__box {
    margin-top: 109px;
  }
}

.p-ngCareerChart__tag {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: var(--white);
  background-color: #3096fa;
}
@media screen and (max-width: 994px) {
  .p-ngCareerChart__tag {
    max-width: 100px;
  }
}

.p-ngCareerChart__items {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
@media screen and (max-width: 994px) {
  .p-ngCareerChart__items {
    position: relative;
  }
}

@media screen and (max-width: 994px) {
  .p-ngCareerChart__box:not(:last-of-type) .p-ngCareerChart__items::after {
    display: inline-block;
    content: "";
    background-image: url(../../image/career/CareerStep-arrow01.svg);
    width: 43px;
    height: 36px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    bottom: -30px;
    left: 50%;
    -webkit-transform: translate(-50%, 100%);
            transform: translate(-50%, 100%);
  }
}

.p-ngCareerChart__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .p-ngCareerChart__title--sm {
    font-size: clamp(16px, 2vw, 20px);
    display: block;
  }
}

.p-ngCareerChart__lead {
  margin-top: 13px;
  font-size: 18px;
  font-weight: 600;
  color: #0068ce;
}

.p-ngCareerChart__text {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 994px) {
  .p-ngCareerChart__text {
    line-height: 1.7333333333;
  }
}

.p-ngCareerChart__boxLarge {
  margin-top: 21px;
}
@media screen and (max-width: 994px) {
  .p-ngCareerChart__boxLarge {
    margin-top: 27px;
  }
}

.p-ngCareerChart__border {
  border: 1px solid #3096fa;
  padding: 19px 40px 25px;
  margin-left: clamp(11px, 2vw, 20px);
}
@media screen and (max-width: 994px) {
  .p-ngCareerChart__border {
    padding: 20px 14px 20px;
  }
}

.p-ngCareerChart__tag--large {
  max-width: 200px;
  -webkit-transform: translate(0%, 50%);
          transform: translate(0%, 50%);
}

.p-ngCareerStep__content + .p-ngCareerStep__content {
  margin-top: clamp(91px, 15vw, 147px);
}

.p-ngCareerStep__content--02 .p-ngCareerStep__caseTag {
  background: -webkit-gradient(linear, left top, right top, from(#f48226), to(#f4c426));
  background: linear-gradient(to right, #f48226 0%, #f4c426 100%);
}
.p-ngCareerStep__content--02 .p-ngCareerStep__caseNumber,
.p-ngCareerStep__content--02 .p-ngCareerStep__nameJa,
.p-ngCareerStep__content--02 .p-ngCareerChart__lead {
  color: #f48226;
}
.p-ngCareerStep__content--02 .p-ngCareerChart__tag {
  background-color: #faa561;
}
.p-ngCareerStep__content--02 .p-ngCareerChart__box:not(:last-child)::after {
  background-image: linear-gradient(to bottom, #faa561 2px, transparent 0);
}
.p-ngCareerStep__content--02 .p-ngCareerChart__border {
  border: 1px solid #faa561;
}
@media screen and (max-width: 994px) {
  .p-ngCareerStep__content--02 .p-ngCareerChart__box:not(:last-of-type) .p-ngCareerChart__items::after {
    background-image: url(../../image/career/CareerStep-arrow02.svg);
  }
}

.p-ngCareerStep__content--03 .p-ngCareerStep__caseTag {
  background: -webkit-gradient(linear, left top, right top, from(#eb3d5a), to(#e65cd1));
  background: linear-gradient(to right, #eb3d5a 0%, #e65cd1 100%);
}
.p-ngCareerStep__content--03 .p-ngCareerStep__caseNumber,
.p-ngCareerStep__content--03 .p-ngCareerStep__nameJa,
.p-ngCareerStep__content--03 .p-ngCareerChart__lead {
  color: #eb3d59;
}
.p-ngCareerStep__content--03 .p-ngCareerChart__tag {
  background-color: #fc647d;
}
.p-ngCareerStep__content--03 .p-ngCareerChart__box:not(:last-child)::after {
  background-image: linear-gradient(to bottom, #fc647d 2px, transparent 0);
}
.p-ngCareerStep__content--03 .p-ngCareerChart__border {
  border: 1px solid #fc647d;
}
@media screen and (max-width: 994px) {
  .p-ngCareerStep__content--03 .p-ngCareerChart__box:not(:last-of-type) .p-ngCareerChart__items::after {
    background-image: url(../../image/career/CareerStep-arrow03.svg);
  }
}

.p-ngCareerStep__content--04 .p-ngCareerStep__caseTag {
  background: -webkit-gradient(linear, left top, right top, from(#6eb92b), to(#00c7a8));
  background: linear-gradient(to right, #6eb92b 0%, #00c7a8 100%);
}
.p-ngCareerStep__content--04 .p-ngCareerStep__caseNumber,
.p-ngCareerStep__content--04 .p-ngCareerStep__nameJa,
.p-ngCareerStep__content--04 .p-ngCareerChart__lead {
  color: #6cb92d;
}
.p-ngCareerStep__content--04 .p-ngCareerChart__tag {
  background-color: #94d062;
}
.p-ngCareerStep__content--04 .p-ngCareerChart__box:not(:last-child)::after {
  background-image: linear-gradient(to bottom, #94d063 2px, transparent 0);
}
.p-ngCareerStep__content--04 .p-ngCareerChart__border {
  border: 1px solid #94d063;
}
@media screen and (max-width: 994px) {
  .p-ngCareerStep__content--04 .p-ngCareerChart__box:not(:last-of-type) .p-ngCareerChart__items::after {
    background-image: url(../../image/career/CareerStep-arrow04.svg);
  }
}

/* u-display  ----------------------------------------------------------------------------
*/
.u-descktop {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-descktop {
    display: none;
  }
}

.u-descktopLg {
  display: block;
}
@media screen and (max-width: 994px) {
  .u-descktopLg {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}

.u-mobileLg {
  display: none;
}
@media screen and (max-width: 994px) {
  .u-mobileLg {
    display: block;
  }
}

.u-inlineBlock {
  display: inline-block;
}

.u-contetsPC {
  display: contents;
}
@media screen and (max-width: 994px) {
  .u-contetsPC {
    display: inline-block;
  }
}