@charset "UTF-8";
:root {
  interpolate-size: allow-keywords;
  --font-base: "Noto Sans JP", sans-serif;
  --swiper-navigation-sides-offset: 10px;
  --swiper-pagination-bullet-size: 16px;
  --swiper-pagination-bullet-horizontal-gap: 15px;
  --swiper-pagination-color: #222;
  --swiper-pagination-bullet-inactive-color: #D3D3D3;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bottom: -46px;
  --swiper-wrapper-transition-timing-function: linear;
}

html.no-scroll {
  overflow: hidden;
  height: 100vh;
}

body {
  background-color: #fff;
  color: #222;
}

* {
  font-family: "Noto Sans JP", sans-serif;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

button:focus,
button:focus-visible {
  outline-color: #0a8600;
}

a:link,
a:active,
a:visited {
  color: #fff;
}

a:hover {
  text-decoration: none;
}

main {
  margin-top: 68.06px;
}

.u-pc-only {
  display: none;
}

@media (min-width: 768px) {
  main {
    margin-top: 90px;
  }
  .u-sp-only {
    display: none !important;
  }
  .u-pc-only {
    display: block;
  }
}
.l-inner {
  padding-inline: 20px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .l-inner {
    margin-inline: auto;
    max-width: 1280px;
  }
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.u-hover:hover {
  opacity: 0.6;
}

.p-bg__image {
  position: absolute;
  inset: 0;
  width: 100vw;
  z-index: -1;
}
.p-bg__image > picture {
  display: block;
  width: 100%;
}
.p-bg__image > picture > img {
  width: 100%;
  height: auto;
}

.c-entry-btn {
  position: relative;
  display: block;
  padding: 13px 53px;
  text-align: center;
  box-sizing: border-box;
  color: #fff;
  background-color: #E27727;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 20px;
  border-radius: 40px;
}
.c-entry-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 7px;
  height: 12px;
  background-image: url("/newgraduate/assets/images/common/ic_arrow_right.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.c-entry-btn:hover {
  background-color: #F5D1B6;
}

@media (min-width: 768px) {
  .c-entry-btn {
    padding: 18px 53px;
    max-width: 400px;
    margin: 0 auto;
    font-size: 24px;
  }
  .c-entry-btn.header {
    padding: 7px 53px;
    font-size: 20px;
  }
}
.c-menu-btn {
  width: 40px;
  height: 40px;
  background-color: #5CBF2A;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.c-menu-btn__icon {
  width: 25px;
  height: 2px;
  background-color: #fff;
  display: block;
  position: relative;
}
.c-menu-btn__icon::before, .c-menu-btn__icon::after {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  background-color: #fff;
  transition: all 0.3s ease-out;
}
.c-menu-btn__icon::before {
  top: -8px;
  width: 25px;
}
.c-menu-btn__icon::after {
  top: 8px;
  width: 16px;
}
.c-menu-btn.is-open .c-menu-btn__icon {
  background: transparent;
}
.c-menu-btn.is-open .c-menu-btn__icon::before {
  top: 0;
  transform: rotate(45deg);
}
.c-menu-btn.is-open .c-menu-btn__icon::after {
  top: 0;
  width: 25px;
  transform: rotate(-45deg);
}

.c-menu__navigation {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.3s ease, opacity 0.3s ease;
  position: fixed;
  top: 68.06px;
  left: 0;
  width: 100vw;
  background-color: #F0F0F0;
  pointer-events: none;
  z-index: 99;
}
.c-menu__navigation.is-open {
  grid-template-rows: 1fr;
  height: auto;
  opacity: 1;
  pointer-events: auto;
}
.c-menu__navigation ul {
  min-height: 0;
  max-height: calc(100vh - 68.06px);
  max-height: calc(100dvh - 68.06px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.c-menu__navigation-item {
  text-align: start;
  border-bottom: 1px solid #9A9A9A;
}
.c-menu__navigation-item > a {
  padding: 18px 45px;
  display: inline-block;
  box-sizing: border-box;
  width: 100vw;
  color: #222;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}
.c-menu__navigation-item > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: 12px;
  height: 7px;
  background-image: url("/newgraduate/assets/images/common/ic_chevron_black.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.c-menu__navigation-item:first-child {
  border-top: 1px solid #9A9A9A;
}
.c-menu__navigation-item.entry {
  border-bottom: none;
}
.c-menu__navigation-item.entry > a {
  background-color: #E27727;
  color: #fff;
}
.c-menu__navigation-item.entry > a::after {
  width: 7px;
  height: 12px;
  right: 20px;
  background-image: url("/newgraduate/assets/images/common/ic_arrow_right.png");
}

@media (min-width: 768px) {
  .c-menu-btn {
    display: none;
  }
  .c-menu__navigation {
    display: none;
  }
}
.c-card {
  background: #fff;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 14px 14px 0px 0px rgb(204, 204, 204);
}
.c-card__content {
  padding: 60px 20px 27px;
}
.c-card__heading {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}
.c-card__head {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
  padding-block: 12px 9px;
}
.c-card__head.accent {
  background-color: #5CBF2A;
  color: #fff;
}
.c-card__head-border {
  margin-inline: auto;
  position: relative;
  width: fit-content;
}
.c-card__head-border:first-child {
  margin-top: 30px;
}
.c-card__head-border::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background-color: #5CBF2A;
}
.c-card__head-border > img {
  height: auto;
}
.c-card__head-border.mission > img {
  width: 121px;
}
.c-card__head-border.mission::after {
  width: 121px;
}
.c-card__head-border.vision > img {
  width: 100px;
}
.c-card__head-border.vision::after {
  width: 100px;
}
.c-card__body {
  padding: 20px 20px 30px;
}
.c-card__title {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  color: #222;
  margin-bottom: 20px;
}
.c-card__title.accent {
  color: #0A8600;
}
.c-card__title > span {
  font-size: 30px;
}
.c-card__text {
  color: #222;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6875;
  text-align: start;
}

.c-card-fit {
  background: #fff;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 14px 14px 0px 0px rgb(204, 204, 204);
  margin-right: 10px;
  padding: 30px 20px;
}
.c-card-fit.c-card-topb {
  padding-block: 60px 27px;
}
.c-card-fit__heading {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  text-align: start;
  margin-bottom: 20px;
}
.c-card-fit__heading-border {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  padding-bottom: 18px;
  border-bottom: 4px solid #5CBF2A;
  margin-bottom: 20px;
}
.c-card-fit__heading-border.blue {
  color: #13ACB7;
  border-color: #13ACB7;
}
.c-card-fit__heading-border.orange {
  color: #E27727;
  border-color: #E27727;
}
.c-card-fit > p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  text-align: start;
}
.c-card-fit > p:last-child {
  margin-top: 30px;
}

@media (min-width: 768px) {
  .c-card__head {
    font-size: 24px;
    line-height: 1.5;
    padding-block: 13px 12px;
  }
  .c-card__head-border {
    margin-inline: 40px;
    position: relative;
    width: fit-content;
  }
  .c-card__head-border:first-child {
    margin-top: 44px;
  }
  .c-card__head-border::after {
    bottom: -10px;
    left: 0;
    transform: none;
  }
  .c-card__body {
    padding: 20px 30px 30px 40px;
  }
  .c-card__title {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .c-card__title > span {
    font-size: 40px;
  }
  .c-card-fit {
    border-radius: 40px;
    margin-right: 14px;
    margin-bottom: 14px;
    padding: 60px 58px 44px;
  }
  .c-card-fit.c-card-topb {
    border-radius: 90px;
  }
  .c-card-fit__heading {
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
  }
  .c-card-fit__heading-border {
    font-size: 27px;
    padding-bottom: 20px;
  }
  .c-card-fit > p {
    text-align: center;
  }
  .c-card-fit > p:last-child {
    margin-top: 0;
  }
}
.c-heading {
  background-color: #5CBF2A;
  border-radius: 50vh;
  padding-block: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}
.c-heading-pc {
  display: none;
}
.c-heading::after {
  content: "";
  position: absolute;
  top: -47px;
  right: 45px;
  width: 94px;
  height: 94px;
  background-image: url("/newgraduate/assets/images/common/heading_deco.png");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

@media (min-width: 860px) {
  .c-heading::after {
    top: -47px;
    right: -30px;
    z-index: 1;
  }
}
@media (min-width: 768px) {
  .c-heading {
    font-size: 30px;
    padding-block: 8px;
    max-width: 800px;
    margin-inline: auto;
  }
  .c-heading-pc {
    display: inline-block;
  }
}
.c-swiper__wrap {
  position: relative;
  margin-inline: -15px;
  margin-bottom: 46px;
}
.c-swiper__container {
  margin-inline: 15px;
}
.c-swiper__item {
  height: auto;
}
.c-swiper-button-prev, .c-swiper-button-next {
  width: 40px;
  height: 40px;
  background: #222;
  border-radius: 50%;
}
.c-swiper-button-prev::after, .c-swiper-button-next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 24px;
  transform: translate(-50%, -50%);
  background-image: url("/newgraduate/assets/images/common/ic_swiper_arrow.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.c-swiper-button-prev .swiper-navigation-icon, .c-swiper-button-next .swiper-navigation-icon {
  display: none;
}
.c-swiper-button-prev {
  left: 10px;
}
.c-swiper-button-next {
  right: 10px;
}
.c-swiper-button-next::after {
  transform: translate(-50%, -50%) rotate(180deg);
}

@media (min-width: 768px) {
  .c-swiper-pagination {
    display: none;
  }
  .c-swiper-button-prev, .c-swiper-button-next {
    display: none;
  }
}
.c-vimg {
  overflow-x: scroll;
  overflow-y: hidden;
}
.c-vimg::-webkit-scrollbar {
  height: 12px;
}
.c-vimg::-webkit-scrollbar-track {
  background: white;
  border-radius: 999px;
  border: 1px solid #D3D3D3;
}
.c-vimg::-webkit-scrollbar-thumb {
  background: #888888;
  border-radius: 999px;
}
.c-vimg__right {
  margin-right: -20px;
}
.c-vimg__right::-webkit-scrollbar-track {
  margin-right: 20px;
}
.c-vimg__margin {
  margin-right: -20px;
}
.c-vimg__margin::-webkit-scrollbar-track {
  margin-inline: 6px;
  margin-right: 20px;
}

@media (min-width: 768px) {
  .c-vimg {
    overflow-x: hidden;
    margin-inline: 0;
  }
  .c-vimg::-webkit-scrollbar {
    height: 0;
  }
}
.scroll-hint-text {
  font-weight: 700;
}

.c-gridbg {
  background-color: #fff;
  background-image: linear-gradient(to right, #DBEAD3 1px, transparent 1px), linear-gradient(to bottom, #DBEAD3 1px, transparent 1px);
  background-size: 24px 24px;
  box-shadow: 12px 12px 0px 0px rgb(204, 204, 204);
  margin-right: 12px;
  margin-bottom: 12px;
}

.c-interview {
  margin-top: 60px;
}
.c-interview__heading {
  position: relative;
  text-align: center;
}
.c-interview__heading-bg > img {
  width: 96vw;
}
.c-interview__heading-main {
  width: 92vw;
  margin-top: -26.66666667vw;
  margin-inline: auto;
}
.c-interview__heading > h2 {
  margin-top: 20px;
  color: #0a8600;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}
.c-interview__heading > p {
  margin-top: 10px;
  color: #222;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6875;
}
.c-interview__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.c-interview__inner {
  overflow: hidden;
}
.c-interview__card {
  margin-top: 40px;
}
.c-interview__card-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-inline: 15px;
  box-sizing: border-box;
}
.c-interview__card-body {
  display: block;
  grid-column: auto;
  grid-row: auto;
}
.c-interview__card-title {
  margin-bottom: 20px;
}
.c-interview__card-title h3 {
  color: #0a8600;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  width: fit-content;
  margin-inline: auto;
  padding-bottom: 7px;
  border-bottom: 6px solid #5CBF2A;
}
.c-interview__card-title h3:not(:first-child) {
  margin-top: 10px;
}
.c-interview__card-text > p {
  color: #222;
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 400;
  text-align: start;
}
.c-interview__card-text > p:not(:first-child) {
  margin-top: 27px;
}
.c-interview__card-photo {
  margin-inline: auto;
}
.c-interview__card-photo > img {
  width: 80vw;
}
.c-interview__grid {
  padding-inline: 15px;
  margin-top: 30px;
}
.c-interview__grid-heading {
  background-color: #5CBF2A;
  padding-block: 12px;
  position: relative;
  color: white;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  border-radius: 30px;
}
.c-interview__grid-heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background-image: url("/newgraduate/assets/images/common/ic_question.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.c-interview__grid-body {
  margin-top: -51px;
  padding: 71px 20px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.c-interview__grid-img {
  margin-inline: auto;
}
.c-interview__grid-img > img {
  width: 220px;
}
.c-interview__grid-img.photo > img {
  width: 244px;
}
.c-interview__grid-text > h4 {
  color: #0a8600;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 20px;
}
.c-interview__grid-text > p {
  color: #222;
  font-size: 16px;
  line-height: 1.6875;
  font-weight: 400;
  text-align: start;
}
.c-interview__entry {
  margin-top: 40px;
  padding-inline: 15px;
}
.c-interview.interview-02 .c-interview__heading-bg > img, .c-interview.interview-04 .c-interview__heading-bg > img {
  margin-left: auto;
}
.c-interview.is-open .c-interview__content {
  grid-template-rows: 1fr;
}
.c-interview.is-open .c-interview__box {
  background: transparent linear-gradient(360deg, #F2FFED 0%, #F2FFED 5%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
}
.c-interview.is-open .c-toggle {
  margin-top: 30px;
  margin-bottom: 40px;
}

.c-toggle {
  display: block;
  margin: 20px auto 0;
  width: 200px;
  height: 54px;
  box-sizing: border-box;
  padding-block: 13px;
  border-radius: 10px;
  background-color: #F2FFED;
  border: 2px solid #5CBF2A;
  position: relative;
  color: #0a8600;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.c-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 12px;
  height: 7px;
  margin-left: 6px;
  background-image: url("/newgraduate/assets/images/common/ic_toggle_arrow.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.c-toggle[aria-expanded=true] {
  background-color: white;
}
.c-toggle[aria-expanded=true]::after {
  transform: translateY(-50%) rotate(180deg);
}
.c-toggle:focus-visible {
  outline: 2px solid #0a8600;
  outline-offset: 4px;
}
.c-toggle:hover {
  opacity: 0.6;
}

@media (min-width: 768px) {
  .c-interview {
    margin-top: 60px;
  }
  .c-interview__heading {
    position: relative;
    max-width: 1280px;
    margin-inline: auto;
  }
  .c-interview__heading-bg > img {
    max-width: 1240px;
  }
  .c-interview__heading-main {
    max-width: min(840px, 65.625vw);
    margin-top: max(-247px, -19.296875vw);
    margin-inline: auto;
  }
  .c-interview__heading > h2 {
    font-size: 36px;
  }
  .c-interview__heading > p {
    margin-top: 25px;
    font-size: 18px;
  }
  .c-interview__inner {
    max-width: 1214px;
    margin-inline: auto;
    padding-inline: 20px;
  }
  .c-interview__card:nth-of-type(even) .c-interview__card-body {
    grid-column: 2;
  }
  .c-interview__card:nth-of-type(even) .c-interview__card-photo {
    grid-column: 1;
  }
  .c-interview__card-content {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto 1fr;
    align-items: start;
    column-gap: 40px;
    row-gap: 0;
    padding: 0;
  }
  .c-interview__card-body {
    grid-column: 1;
    grid-row: 1/3;
    display: grid;
    grid-template-rows: subgrid;
  }
  .c-interview__card-title {
    margin-bottom: 20px;
  }
  .c-interview__card-title h3 {
    font-size: 24px;
    margin-inline: 0;
    text-align: start;
    white-space: nowrap;
  }
  .c-interview__card-text {
    max-width: 520px;
  }
  .c-interview__card-photo {
    grid-column: 2;
    grid-row: 2;
  }
  .c-interview__card-photo > img {
    width: 560px;
  }
  .c-interview__grid {
    padding-inline: 15px;
    margin-top: 40px;
    width: fit-content;
  }
  .c-interview__grid:nth-of-type(even) {
    margin-left: auto;
  }
  .c-interview__grid-heading {
    padding-block: 15px;
    font-size: 20px;
    line-height: 1.6;
    width: 380px;
  }
  .c-interview__grid-heading::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background-image: url("/newgraduate/assets/images/common/ic_question.png");
    background-size: cover;
    background-repeat: no-repeat;
  }
  .c-interview__grid-body {
    margin-top: -30px;
    margin-left: 30px;
    max-width: 965px;
    box-sizing: border-box;
    padding: 60px 30px 30px 40px;
    flex-direction: row;
    gap: 30px;
  }
  .c-interview__grid-img {
    margin-inline: 0;
  }
  .c-interview__grid-img.photo > img {
    width: 275px;
  }
  .c-interview__grid-text {
    flex: 1;
  }
  .c-interview__grid-text > h4 {
    font-size: 24px;
    text-align: start;
  }
  .c-interview__entry {
    margin-top: 52px;
    padding-inline: 15px;
  }
  .c-interview.is-open .c-toggle {
    margin-top: 40px;
    margin-bottom: 60px;
  }
  .c-toggle {
    margin-top: 30px;
    font-size: 18px;
  }
}
.c-background {
  position: absolute;
  width: 100%;
  z-index: -2;
}
.c-background svg {
  display: block;
  width: 100%;
}

.p-header {
  background-color: #fff;
}
.p-header__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  width: 100vw;
}
.p-header__inner {
  padding: 12px 3px 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-header__main {
  display: flex;
  gap: 16px;
  align-items: center;
}
.p-header__main-logo {
  width: 173px;
  height: auto;
}
.p-header__main-logo img {
  width: 100%;
  height: auto;
}
.p-header__main-title {
  display: none;
  color: #222;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 16px;
}
.p-header__sub {
  margin-right: 12px;
}
.p-header__sub-btn {
  display: none;
}
.p-header__area {
  display: none;
}

@media (min-width: 768px) {
  .p-header__inner {
    padding: 11px 24px 9px;
    margin: 0 auto;
    max-width: 1280px;
    box-sizing: border-box;
  }
  .p-header__main {
    gap: 24px;
  }
  .p-header__main-logo {
    width: 224px;
  }
  .p-header__main-title {
    display: block;
  }
  .p-header__sub {
    margin-right: 29px;
  }
  .p-header__sub-btn {
    display: block;
  }
  .p-header__area {
    display: block;
    background-color: transparent;
    pointer-events: none;
    height: 56px;
  }
}
.p-hero {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  --anim-sec: 2s;
}
.p-hero.is-visible .p-hero__reveal-color {
  animation: color-reveal var(--anim-sec) ease forwards;
}
.p-hero__reveal-layer {
  display: block;
  width: 100%;
  height: auto;
}
.p-hero__reveal-color {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* 起点＝お店の位置。画像内の割合で指定（例：左から20%, 上から80%） */
  clip-path: circle(0% at 25% 80%);
}
.p-hero__bg-base {
  width: 100%;
  position: relative;
  z-index: -2;
}
.p-hero__bg-base > img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.p-hero__bg-color {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1600px, 100vw);
  z-index: -1;
}
.p-hero__bg-color > img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.p-hero__shop {
  position: absolute;
  bottom: 6.312vw;
  left: 5.194666667vw;
  width: 36.69333333vw;
  height: auto;
  z-index: 1;
}
.p-hero__shop > img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.p-hero__photo {
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
  height: 100%;
  z-index: 0;
  --cut: 35%;
  --w: 4vw;
}
.p-hero__photo.is-visible .p-hero__photo-inner {
  transform: translateX(0);
}
.p-hero__photo-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform: translateX(110%);
  transition: transform var(--anim-sec) ease;
  will-change: transform;
  z-index: 1;
  background: #fff;
  --gap: 0px;
  clip-path: polygon(calc(var(--cut) - var(--gap) - var(--w)) 0, 100% 0%, 100% 100%, 0% 100%);
}
.p-hero__photo-image {
  padding-left: var(--w);
  height: 100%;
  position: relative;
}
.p-hero__photo-image img {
  width: auto;
  height: 100%;
  object-fit: cover;
}
.p-hero__photo-image.is-visible {
  animation: fadeIn var(--anim-sec) ease forwards;
}
.p-hero__person {
  width: auto;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}
.p-hero__person.is-visible {
  animation: fadeIn 4s ease forwards;
}
.p-hero__person.image-02, .p-hero__person.image-03, .p-hero__person.image-04 {
  position: absolute;
  top: 0;
  right: 0;
}
.p-hero__person.image-01.front {
  position: relative;
  z-index: 1;
}
.p-hero__catch {
  position: absolute;
  top: 5vw;
  left: 1.333333333vw;
  z-index: 2;
}
.p-hero__catch h2 {
  opacity: 0;
}
.p-hero__catch h2 img {
  width: 65.33333333vw;
  height: auto;
}
.p-hero__catch.is-visible h2 {
  animation: fadeIn 2s ease forwards;
}
.p-hero .p-hero__photo.is-visible .p-hero__photo__inner {
  transform: translateX(0);
}
.p-hero__content {
  margin-bottom: 60px;
}
.p-hero__content h1 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 40px;
}
.p-hero__content p {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  text-align: left;
}
.p-hero__entry {
  margin-bottom: 40px;
}
.p-hero__progress {
  margin-block: 64px 30px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.p-hero__progress-item {
  width: 15px;
  height: 6px;
  border-radius: 10px;
  background-color: #D3D3D3;
  cursor: pointer;
}
.p-hero__progress-item.is-active {
  background-color: #5CBF2A;
}
.p-hero__play-btn {
  width: 20px;
  height: 20px;
  background-image: url("/newgraduate/assets/images/hero/btn_pause.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.p-hero__play-btn.is-paused {
  background-image: url("/newgraduate/assets/images/hero/btn_play.png");
}

@keyframes color-reveal {
  to {
    clip-path: circle(155% at 25% 80%);
    @media (min-width: 768px) {
      clip-path: circle(155% at 35% 75%);
    }
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (min-width: 768px) {
  .p-hero__reveal-color {
    clip-path: circle(0% at 35% 75%);
  }
  .p-hero__shop {
    bottom: min(3.1875vw, 51px);
    left: min(20%, 20vw);
    width: min(22.91666667vw, 366.6666px);
  }
  .p-hero__photo {
    --cut: min(21%, 336px);
    --w: 1.666666667vw;
  }
  .p-hero__catch {
    top: min(2.125vw, 34px);
    transform: none;
    left: min(4.25vw, 68px);
  }
  .p-hero__catch h2 img {
    width: min(43.75vw, 700px);
  }
  .p-hero__content {
    margin-inline: auto;
    max-width: 943px;
  }
  .p-hero__content h1 {
    display: none;
  }
  .p-hero__content p {
    font-size: 16px;
    text-align: center;
  }
  .p-hero__entry {
    display: none;
  }
  .p-hero__progress {
    margin-block: 20px 35px;
    justify-content: flex-end;
  }
}
.p-anchor {
  display: none;
}

@media (min-width: 768px) {
  .p-anchor {
    display: block;
    margin-bottom: 60px;
    position: sticky;
    padding-inline: 20px;
    box-sizing: border-box;
    top: 90px;
    background-color: #fff;
    z-index: 102;
  }
  .p-anchor__list {
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
  }
  .p-anchor__item {
    display: flex;
    border-left: 1px solid #000303;
    position: relative;
  }
  .p-anchor__item::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px;
    transform: translateX(-50%);
    width: 12px;
    height: 7px;
    background-image: url("/newgraduate/assets/images/common/ic_chevron_black.png");
    background-size: cover;
    background-repeat: no-repeat;
  }
  .p-anchor__item:last-child {
    border-right: 1px solid #000303;
  }
  .p-anchor__item > a {
    display: inline-block;
    color: #222;
    padding: 6px 30px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
  }
  .p-anchor__item:hover {
    opacity: 0.6;
  }
}
.p-about__bg {
  height: auto;
}
.p-about__bg svg {
  height: 1133px;
}
.p-about__opening {
  padding-bottom: 54px;
  position: relative;
}
.p-about__opening-heading {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
.p-about__opening-heading > img {
  width: 244px;
  height: auto;
}
.p-about__opening-heading > h2 {
  color: #222;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}
.p-about__opening-heading > p {
  margin-inline: 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6875;
  text-align: start;
}
.p-about__opening-content > figure {
  margin: 0;
  width: 96vw;
}
.p-about__opening-content > figure > img {
  width: 100%;
  height: auto;
}
.p-about__opening-cards {
  margin-top: -25px;
  margin-inline: 15px 25px;
  position: relative;
  z-index: 1;
}
.p-about__product {
  position: relative;
  padding-bottom: 70px;
}
.p-about__product-bg {
  height: 954px;
}
.p-about__product-bg svg {
  height: 954px;
}
.p-about__product > .l-inner {
  padding-top: 41px;
}
.p-about__product-map {
  margin-bottom: 20px;
}
.p-about__product-image {
  width: 715px;
  max-width: none;
  height: auto;
  margin-bottom: 20px;
}
.p-about__product p {
  margin-block: 20px 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6875;
  text-align: start;
}
.p-about__gallery {
  width: 100vw;
  overflow: hidden;
}
.p-about__gallery-item {
  width: 69.33333333vw;
}
.p-about__gallery-item > img {
  width: 100%;
  height: auto;
}
.p-about__strength {
  margin-block: 104px 106px;
}
.p-about__strength-points {
  margin-block: 20px 0;
}
.p-about__strength-item {
  border: 2px solid #5CBF2A;
  border-radius: 10px;
  padding: 32px 30px 30px;
  box-sizing: border-box;
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
}
.p-about__strength-title {
  color: #0a8600;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-about__strength-image {
  display: flex;
  justify-content: center;
  margin-block: 30px;
}
.p-about__strength-image > img {
  width: 285px;
  height: auto;
}
.p-about__strength-text {
  font-size: 16px;
  font-weight: 400;
  text-align: start;
}

@media (min-width: 768px) {
  .p-about__bg svg {
    height: 950px;
  }
  .p-about__inner {
    max-width: 1280px;
    margin: 0 auto;
  }
  .p-about__opening {
    padding-bottom: 0;
  }
  .p-about__opening-heading {
    gap: 18px;
    margin-bottom: 30px;
  }
  .p-about__opening-heading > img {
    width: 426px;
  }
  .p-about__opening-heading > h2 {
    font-size: 36px;
  }
  .p-about__opening-heading > p {
    line-height: 1.875;
    margin-top: 2px;
  }
  .p-about__opening-content > figure {
    width: min(58.75vw, 705px);
  }
  .p-about__opening-cards {
    margin-top: max(-38vw, -450px);
    margin-left: 50%;
    max-width: 587px;
  }
  .p-about__product {
    margin-bottom: 60px;
    position: relative;
  }
  .p-about__product > .l-inner {
    margin-top: 96px;
  }
  .p-about__product-bg {
    height: 874px;
    padding-top: 30px;
  }
  .p-about__product-bg svg {
    height: 874px;
  }
  .p-about__product > .l-inner {
    padding-top: 0;
  }
  .p-about__product-map {
    margin-bottom: 0;
  }
  .p-about__product-image {
    width: 715px;
    height: auto;
    margin-bottom: 20px;
  }
  .p-about__product-image {
    width: 100%;
    max-width: 905px;
    margin: 0 auto 30px;
  }
  .p-about__product p {
    text-align: center;
  }
  .p-about__gallery-item {
    width: 375px;
  }
  .p-about__strength {
    margin-block: 104px 60px;
  }
  .p-about__strength-points {
    margin: 30px auto 60px;
    max-width: 1107px;
  }
  .p-about__strength-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 0;
  }
  .p-about__strength-title {
    font-size: 26px;
  }
  .p-about__strength-image > img {
    width: 100%;
    max-width: 285px;
    height: 100%;
    max-height: 270px;
  }
}
.p-work__bg {
  height: auto;
}
.p-work__bg svg {
  height: 3070px;
}
.p-work__heading {
  margin-bottom: 30px;
}
.p-work__heading img {
  width: 323px;
  margin-inline: auto;
}
.p-work__heading-ja {
  margin-top: 20px;
  color: #222;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6875;
  text-align: center;
}
.p-work__card {
  margin-top: 20px;
  margin-bottom: 84px;
}
.p-work__card > p {
  text-align: start;
  color: #222;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6875;
  margin-bottom: 30px;
}
.p-work__portrait {
  padding-inline: 20px;
  margin-inline: 0 15px;
  margin-bottom: 30px;
}
.p-work__portrait-inner {
  padding-block: 10px 30px;
}
.p-work__portrait-content {
  width: 785px;
  max-width: none;
  height: auto;
  position: relative;
}
.p-work__portrait-text {
  color: #0a8600;
  font-size: 18px;
  font-weight: 700;
  text-align: start;
  position: absolute;
}
.p-work__portrait-text.part01 {
  top: 0;
  left: 0;
}
.p-work__portrait-text.part02 {
  top: 0;
  right: 0;
}
.p-work__portrait-text.part03 {
  bottom: 98px;
  left: 0;
}
.p-work__portrait-text.part04 {
  bottom: 98px;
  right: 15px;
}
.p-work__detail-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.p-work__detail > p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  text-align: start;
  margin-block: 20px 30px;
}
.p-work__detail-image {
  width: 100%;
  margin-block: 20px;
}
.p-work__detail-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}
.p-work__detail-photos > img {
  width: 100%;
  height: auto;
}
.p-work__schedule {
  margin-block: 40px 136px;
  padding: 25px 30px;
}
.p-work__schedule > h3 {
  color: #0a8600;
  font-size: 18px;
  line-height: 2;
  font-weight: 700;
  margin-bottom: 30px;
}
.p-work__schedule-list {
  margin: 0;
  display: grid;
  row-gap: 10px;
  column-gap: 20px;
  max-width: 1100px;
  margin-inline: auto;
}
.p-work__schedule-item {
  display: grid;
  grid-template-columns: 3.6em 1fr;
  /* 時刻幅は最長 "10:00/17:30" に合わせ固定 */
  column-gap: 20px;
  align-items: start;
}
.p-work__schedule-item > dt {
  color: #0a8600;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}
.p-work__schedule-item > dd {
  color: #030303;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  text-align: start;
}

@media (min-width: 768px) {
  .p-work {
    padding-top: 100px;
  }
  .p-work__bg {
    margin-top: -100px;
  }
  .p-work__bg svg {
    height: 2535px;
  }
  .p-work > .l-inner {
    margin-top: 0;
  }
  .p-work__heading {
    padding-top: 50px;
  }
  .p-work__heading img {
    width: 100%;
    max-width: 845px;
  }
  .p-work__heading-ja {
    font-size: 20px;
    line-height: 1.5;
  }
  .p-work__card {
    max-width: 1075px;
    margin-top: 30px;
    margin-inline: auto;
    box-sizing: border-box;
  }
  .p-work__card > p {
    text-align: center;
  }
  .p-work__portrait {
    margin-inline: 0;
    padding-inline: 0;
  }
  .p-work__portrait-inner {
    padding-block: 0;
  }
  .p-work__portrait-content {
    max-width: 973px;
    width: 100%;
    margin-inline: auto;
    padding-inline: 15px;
    box-sizing: border-box;
  }
  .p-work__portrait-text {
    font-size: min(23px, 2.2vw);
  }
  .p-work__portrait-text.part01 {
    top: 0;
    left: 15px;
  }
  .p-work__portrait-text.part02 {
    top: 0;
    right: 15px;
  }
  .p-work__portrait-text.part03 {
    bottom: min(120px, 26%);
    left: 15px;
  }
  .p-work__portrait-text.part04 {
    bottom: min(120px, 26%);
    right: 15px;
  }
  .p-work__detail-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 52px;
    max-width: 1094px;
    margin-inline: auto;
  }
  .p-work__detail-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    gap: 0;
  }
  .p-work__detail > p {
    text-align: center;
  }
  .p-work__detail-image {
    margin-block: 20px;
  }
  .p-work__detail-photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
  .p-work__detail-photos > img {
    width: 100%;
    height: auto;
  }
  .p-work__schedule {
    margin-block: 40px 168px;
    padding: 30px 57px;
    max-width: 1094px;
    box-sizing: border-box;
    margin-inline: auto;
  }
  .p-work__schedule > h3 {
    font-size: 27px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .p-work__schedule-list {
    row-gap: 10px;
    column-gap: 68px;
    margin-inline: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(6, auto);
    grid-auto-flow: column;
  }
  .p-work__schedule-item {
    grid-template-columns: 4em 1fr;
    column-gap: 20px;
    align-items: start;
  }
  .p-work__schedule-item > dt {
    font-size: 18px;
  }
  .p-work__schedule-item > dd {
    font-size: 18px;
  }
}
.p-training__bg {
  padding-top: 15px;
  height: auto;
}
@media (min-width: 768px) {
  .p-training__bg {
    padding-top: 0px;
  }
}
.p-training__bg svg {
  height: 2780px;
}
@media (min-width: 768px) {
  .p-training__bg svg {
    height: 1679px;
  }
}
.p-training__inner {
  position: relative;
  padding-inline: 20px;
  box-sizing: border-box;
}
.p-training__opening {
  position: relative;
  margin-bottom: 147px;
}
@media (min-width: 768px) {
  .p-training__opening {
    padding-top: 40px;
  }
}
.p-training__opening-heading {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .p-training__opening-heading {
    margin-bottom: 40px;
    overflow-x: clip;
  }
}
.p-training__opening-heading::after {
  content: "";
  position: absolute;
  left: calc(50% - 30px);
  top: -40px;
  transform: translateX(-50%);
  width: 420px;
  height: 165px;
  background-image: url("/newgraduate/assets/images/training/bg_sp.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .p-training__opening-heading::after {
    left: 50%;
    top: 0px;
    width: 1178px;
    height: 210px;
    background-image: url("/newgraduate/assets/images/training/bg.png");
    background-size: cover;
  }
}
.p-training__opening-heading > img {
  width: 282px;
}
@media (min-width: 768px) {
  .p-training__opening-heading > img {
    width: 492px;
  }
}
.p-training__opening-text {
  margin: 20px 0px;
  text-align: start;
  font-size: 16px;
  line-height: 27px;
  color: #222;
}
@media (min-width: 768px) {
  .p-training__opening-text {
    text-align: center;
    line-height: 30px;
  }
}
.p-training__detail-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .p-training__detail-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 52px;
    max-width: 1094px;
    margin-inline: auto;
    margin-bottom: 172px;
  }
}
.p-training__detail-card {
  display: flex;
  flex-direction: column;
}
.p-training__detail-card-first {
  --card-color: #42B4B1;
}
.p-training__detail-card-second {
  --card-color: #3C8886;
}
.p-training__detail-card-header {
  background-color: var(--card-color);
  border-radius: 40px 40px 0px 0px;
  padding-block: 13px;
}
@media (min-width: 768px) {
  .p-training__detail-card-header {
    padding-block: 20px;
  }
}
.p-training__detail-card-header-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  color: #fff;
}
@media (min-width: 768px) {
  .p-training__detail-card-header-text {
    font-size: 27px;
    line-height: 36px;
  }
}
.p-training__detail-card-header-text-season {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #fff;
}
@media (min-width: 768px) {
  .p-training__detail-card-header-text-season {
    font-size: 20px;
    line-height: 26px;
  }
}
.p-training__detail-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 20px 30px;
  background-color: #EFFFFF;
}
@media (min-width: 768px) {
  .p-training__detail-card-body {
    padding: 20px 40px 39px;
  }
}
.p-training__detail-card-body > p {
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
  text-align: start;
  margin-bottom: 30px;
}
.p-training__detail-card-step {
  text-align: start;
}
.p-training__detail-card-step-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-training__detail-card-step .month-tab-area {
  position: relative;
  display: inline-block;
  text-align: center;
  width: 62px;
  height: 27px;
  bottom: -14px;
  background: var(--card-color);
  z-index: 3;
}
@media (min-width: 768px) {
  .p-training__detail-card-step .month-tab-area {
    width: 91px;
    height: 39px;
    bottom: -20px;
  }
}
.p-training__detail-card-step .month-tab-area .month-tab {
  position: relative;
  font-size: 19px;
  font-weight: 700;
  line-height: 25px;
  color: #fff;
}
@media (min-width: 768px) {
  .p-training__detail-card-step .month-tab-area .month-tab {
    font-size: 27px;
    line-height: 40px;
  }
}
.p-training__detail-card-step .month-tab-area::after {
  content: "";
  position: absolute;
  right: -8px;
  width: 8px;
  height: 13px;
  background: #c0c0c0;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}
@media (min-width: 768px) {
  .p-training__detail-card-step .month-tab-area::after {
    height: 19px;
  }
}
.p-training__detail-card-step .three-month {
  width: 137px;
}
@media (min-width: 768px) {
  .p-training__detail-card-step .three-month {
    width: 200px;
  }
}
.p-training__detail-card-step .training-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 27px 20px 25px 14px;
  overflow: hidden;
  box-shadow: 7px 10px 0px 0px rgb(204, 204, 204);
  margin-right: 10px;
  z-index: 2;
}
@media (min-width: 768px) {
  .p-training__detail-card-step .training-card {
    gap: 10px;
    padding: 40px 20px 30px;
    box-shadow: 10px 10px 0px 0px rgb(204, 204, 204);
  }
}
.p-training__detail-card-step .training-card > h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: var(--card-color);
}
@media (min-width: 768px) {
  .p-training__detail-card-step .training-card > h3 {
    font-size: 27px;
    line-height: 36px;
  }
}
.p-training__detail-card-step .training-card > p {
  font-size: 16px;
  line-height: 30px;
}
.p-training__detail-card .next-triangle {
  width: 82px;
  height: 20px;
  margin-block: 30px 6px;
  background: var(--card-color);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media (min-width: 768px) {
  .p-training__detail-card .next-triangle {
    width: 120px;
    height: 30px;
    margin-block: 30px 0;
  }
}
.p-training .c-card-fit {
  padding: 0;
}
.p-training__program-inner {
  padding: 100px 20px 60px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .p-training__program-inner {
    padding: 100px 20px 40px;
  }
}
.p-training__program-text {
  text-align: start;
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
  margin-block: 20px;
}
@media (min-width: 768px) {
  .p-training__program-text {
    text-align: center;
    line-height: 30px;
    margin-block: 20px 30px;
  }
}
@media (min-width: 768px) {
  .p-training__program .p-about__strength-list {
    row-gap: 60px;
  }
}
.p-training__program .p-about__strength-item {
  border: 2px solid #5CBF2A;
  background-color: #F6FCF0;
  padding: 30px;
}
@media (min-width: 768px) {
  .p-training__program .p-about__strength-item {
    gap: 0;
  }
}
.p-training__program .p-about__strength-title {
  font-size: 26px;
  line-height: 36px;
}
.p-training__program .p-about__strength-text {
  line-height: 27px;
}

.p-career__bg {
  height: auto;
}
.p-career__bg svg {
  height: 1855px;
}
@media (min-width: 768px) {
  .p-career__bg svg {
    height: 1835px;
  }
}
.p-career__inner {
  position: relative;
  padding-inline: 20px;
  box-sizing: border-box;
}
.p-career__opening-heading {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 46px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .p-career__opening-heading {
    gap: 20px;
    margin-bottom: 40px;
    padding-top: 50px;
  }
}
.p-career__opening-heading > img {
  width: 343px;
  height: auto;
}
@media (min-width: 768px) {
  .p-career__opening-heading > img {
    width: 608px;
  }
}
.p-career__opening-text {
  margin: 20px 0px;
  text-align: center;
  font-size: 16px;
  line-height: 27px;
  color: #222;
  text-align: start;
}
@media (min-width: 768px) {
  .p-career__opening-text {
    line-height: 30px;
    text-align: center;
  }
}
.p-career__opening-map {
  margin-bottom: 60px;
}
.p-career__opening-map-image {
  width: 692px;
  max-width: none;
  height: auto;
  margin-bottom: 20px;
  position: relative;
}
@media (min-width: 768px) {
  .p-career__opening-map-image {
    max-width: 950px;
    width: 100%;
    margin: 0 auto;
  }
}
.p-career__opening-map-career {
  position: absolute;
  display: flex;
  gap: 27px;
  top: 17%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding-inline: 23px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .p-career__opening-map-career {
    padding-inline: 3.052631579vw;
    gap: 1.1vw;
  }
}
@media (min-width: 950px) {
  .p-career__opening-map-career {
    padding-inline: 29px;
    gap: 19px;
  }
}
.p-career__opening-map-career > li {
  text-align: start;
  font-size: 15px;
  color: #222;
  font-weight: 500;
  line-height: 1.3;
}
.p-career__opening-map-career > li.part01 {
  width: 104px;
}
@media (min-width: 768px) {
  .p-career__opening-map-career > li.part01 {
    width: 151px;
  }
}
.p-career__opening-map-career > li.part02 {
  width: 106px;
}
@media (min-width: 768px) {
  .p-career__opening-map-career > li.part02 {
    width: 151px;
  }
}
.p-career__opening-map-career > li.part03 {
  width: 97px;
}
.p-career__opening-map-career > li.part04 {
  width: 108px;
}
.p-career__opening-map-career > li.part05 {
  width: 120px;
}
@media (min-width: 768px) {
  .p-career__opening-map-career > li {
    font-size: 1.684210526vw;
  }
  .p-career__opening-map-career > li.part01, .p-career__opening-map-career > li.part02, .p-career__opening-map-career > li.part03, .p-career__opening-map-career > li.part05 {
    width: 15.89473684vw;
    margin-right: 0.8421052632vw;
  }
  .p-career__opening-map-career > li.part04 {
    width: 16.73684211vw;
  }
}
@media (min-width: 950px) {
  .p-career__opening-map-career > li {
    font-size: 16px;
  }
  .p-career__opening-map-career > li.part01, .p-career__opening-map-career > li.part02, .p-career__opening-map-career > li.part03, .p-career__opening-map-career > li.part05 {
    width: 151px;
    margin-right: 8px;
  }
  .p-career__opening-map-career > li.part04 {
    width: 159px;
  }
}
.p-career__opening-map-title {
  position: absolute;
  top: 36%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  font-weight: 700;
  color: #0a8600;
  text-align: center;
}
@media (min-width: 768px) {
  .p-career__opening-map-title {
    font-size: min(30px, 3.14vw);
    top: 35%;
  }
}
.p-career__opening-map-desc {
  position: absolute;
  top: 51.5%;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  font-size: 16px;
  line-height: 27px;
  color: #222;
  text-align: center;
}
@media (min-width: 768px) {
  .p-career__opening-map-desc {
    font-size: min(16px, 2.08vw);
    top: 52.5%;
  }
}
.p-career__opening .p-about__strength-points {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .p-career__opening .p-about__strength-points {
    margin-bottom: 0;
  }
}
.p-career__opening .c-swiper__wrap {
  margin-bottom: 154px;
}
@media (min-width: 768px) {
  .p-career__opening .c-swiper__wrap {
    margin-bottom: 100px;
  }
}
.p-career__opening .c-swiper__wrap .p-about__strength-item {
  background-color: #fff;
}
@media (min-width: 768px) {
  .p-career__opening .c-swiper__wrap .p-about__strength-item {
    gap: 0;
  }
}
.p-career__opening .p-about__strength-text {
  line-height: 27px;
}

.p-voice {
  margin-top: 60px;
}
@media (min-width: 768px) {
  .p-voice {
    padding-top: 82px;
  }
}
.p-voice__bg {
  height: auto;
}
.p-voice__bg svg {
  height: 1313px;
}
@media (min-width: 768px) {
  .p-voice__bg svg {
    height: 1412px;
  }
}
.p-voice__opening {
  position: relative;
  margin-bottom: 42px;
  padding-bottom: 42px;
}
@media (min-width: 768px) {
  .p-voice__opening {
    padding-bottom: 14px;
    margin-bottom: 8px;
  }
}
.p-voice__opening::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("/newgraduate/assets/images/voice/bg_sp.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center top;
  z-index: -1;
}
@media (min-width: 768px) {
  .p-voice__opening::after {
    background-image: url("/newgraduate/assets/images/voice/bg.png");
  }
}
.p-voice__opening-heading > img {
  width: 275px;
  height: auto;
}
@media (min-width: 768px) {
  .p-voice__opening-heading > img {
    width: 482px;
  }
}
@media (min-width: 768px) {
  .p-voice__opening-heading::after {
    content: "";
    position: absolute;
    left: 52.5%;
    top: -50px;
    transform: translateX(-50%);
    width: 1081px;
    height: 125px;
    background-image: url("/newgraduate/assets/images/voice/voice_deco.png");
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.p-voice__opening-heading {
  position: relative;
  overflow-x: clip;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
.p-voice__inner .p-about__strength-points {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .p-voice__inner .p-about__strength-points {
    margin-bottom: 0;
  }
}
.p-voice__inner .c-swiper__wrap {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .p-voice__inner .c-swiper__wrap {
    margin-bottom: 80px;
  }
}
.p-voice__inner .c-swiper__wrap .p-about__strength-item {
  background-color: #fff;
  padding: 30px;
}
@media (min-width: 768px) {
  .p-voice__inner .c-swiper__wrap .p-about__strength-item {
    gap: 0;
  }
}
.p-voice__inner .p-about__strength-image {
  margin-block: 45px 20px;
}
.p-voice__inner .p-voice__strength-item--ratio {
  margin-block: 25px;
}
.p-voice__inner .p-voice__strength-item--work {
  margin-block: 50px 28px;
}
.p-voice__inner .p-about__strength-text {
  line-height: 27px;
}
.p-voice__heading {
  margin-top: 86px;
}
@media (min-width: 768px) {
  .p-voice__heading {
    margin-top: 0;
  }
}

.p-faq {
  position: relative;
}
.p-faq__bg {
  height: 100%;
}
.p-faq__bg > div {
  height: 100%;
}
.p-faq__bg svg {
  height: 100%;
}
.p-faq__head {
  position: relative;
  overflow-x: clip;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-inline: -15px;
}
@media (min-width: 768px) {
  .p-faq__head-wrapper {
    padding-top: 60px;
  }
}
.p-faq__head > img {
  margin: auto;
  width: 102px;
}
@media (min-width: 768px) {
  .p-faq__head > img {
    width: 160px;
    height: auto;
  }
}
.p-faq__head-ja {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #222;
}
@media (min-width: 768px) {
  .p-faq__head-ja {
    font-size: 20px;
    line-height: 29px;
  }
}
.p-faq__head::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
  width: 343px;
  height: 155px;
  background-image: url("/newgraduate/assets/images/faq/faq_deco_sp.png");
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .p-faq__head::after {
    top: -50px;
    width: 1134.5px;
    height: 150.5px;
    background-image: url("/newgraduate/assets/images/faq/faq_deco.png");
  }
}
.p-faq__entry {
  padding-block: 40px 65px;
}

.c-faq {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .c-faq {
    margin-top: 55px;
    max-width: 900px;
    margin-inline: auto;
  }
}
.c-faq__category {
  margin-bottom: 20px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  color: #222;
}
@media (min-width: 768px) {
  .c-faq__category {
    margin-bottom: 30px;
    font-size: 30px;
    line-height: 44px;
  }
}
.c-faq__category:not(:first-of-type) {
  margin-top: 41px;
}
@media (min-width: 768px) {
  .c-faq__category:not(:first-of-type) {
    margin-top: 60px;
  }
}
.c-faq__item {
  box-sizing: border-box;
}
.c-faq__item-list {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
@media (min-width: 768px) {
  .c-faq__item-list {
    gap: 30px;
  }
}
.c-faq__item dt:has(.c-faq__q[aria-expanded=true]) + .c-faq__a {
  grid-template-rows: 1fr;
  padding-top: 20px;
}
.c-faq__q {
  position: relative;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
  background: #5CBF2A;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .c-faq__q {
    height: 60px;
    border-radius: 30px;
  }
}
.c-faq__q:hover {
  opacity: 0.6;
}
.c-faq__q:focus-visible {
  outline: none;
}
.c-faq__q:focus-visible .c-faq__icon {
  outline: 2px solid #0a8600;
  outline-offset: 4px;
}
.c-faq__q-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  gap: 14px;
}
@media (min-width: 768px) {
  .c-faq__q-wrapper {
    gap: 20px;
  }
}
.c-faq__q[aria-expanded=false] .c-faq__icon::after {
  transform: rotate(0deg);
}
.c-faq__q[aria-expanded=true] .c-faq__icon::after {
  transform: rotate(90deg);
}
.c-faq__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}
@media (min-width: 768px) {
  .c-faq__mark {
    width: 40px;
    height: 40px;
  }
}
.c-faq__mark.answer-mark {
  align-items: flex-start;
  min-width: 36px;
}
@media (min-width: 768px) {
  .c-faq__mark.answer-mark {
    min-width: 40px;
  }
}
.c-faq__mark.answer-mark > img {
  width: 22.5px;
}
.c-faq__question {
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 768px) {
  .c-faq__question {
    font-size: 20px;
  }
}
.c-faq__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  width: 20px;
  height: 20px;
  margin-left: auto;
  flex-shrink: 0;
  z-index: 0;
}
.c-faq__icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
}
.c-faq__icon::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  left: 9px;
  top: 0px;
  background: #fff;
  transition: transform 0.3s ease;
  z-index: 1;
}
.c-faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
@media (min-width: 768px) {
  .c-faq__a {
    padding-top: 30px;
  }
}
.c-faq__a-inner {
  display: flex;
  overflow: hidden;
  min-height: 0;
  display: flex;
  padding-left: 20px;
  align-items: flex-start;
  gap: 14px;
}
@media (min-width: 768px) {
  .c-faq__a-inner {
    gap: 20px;
  }
}
.c-faq__a-inner > p {
  text-align: left;
  font-size: 16px;
  line-height: 26px;
  color: #222;
}
.c-faq__a-inner > span > p {
  text-align: left;
  font-size: 16px;
  line-height: 26px;
  color: #222;
}
.c-faq__a-inner > span > ol {
  padding-left: 1em;
  font-size: 16px;
  line-height: 26px;
  color: #222;
}
.c-faq__a-inner > span > ol > li {
  text-align: left;
}

.p-footer {
  background: #222;
  padding-block: 30px;
  position: relative;
}
.p-footer__nav {
  color: white;
  width: fit-content;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
}
.p-footer__nav-item {
  color: #fff;
}
.p-footer__nav-item a:hover {
  opacity: 0.6;
}
.p-footer__top-btn {
  position: sticky;
  bottom: 20px;
  margin-top: -50px;
  margin-left: auto;
  margin-right: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FCCF00;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, bottom 0.3s ease;
}
.p-footer__top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.p-footer__top-btn.is-above-footer {
  bottom: 130px;
}
.p-footer__top-btn > img {
  width: 19px;
  height: 9px;
}
.p-footer__top-btn:hover {
  background-color: #FFF2B5;
}
.p-footer__top-btn:focus-visible {
  outline: 2px solid #E27727;
}

@media (min-width: 768px) {
  .p-footer {
    padding-block: 41px 35px;
  }
  .p-footer__nav {
    font-size: 16px;
    line-height: 1.875;
  }
  .p-footer__top-btn {
    bottom: 36px;
    margin-top: -72px;
    margin-right: 20px;
    width: 72px;
    height: 72px;
  }
  .p-footer__top-btn.is-above-footer {
    bottom: 122px;
  }
}
