@charset "UTF-8";
@media screen and (min-width: 1280px) {
  html {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  html {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}

body {
  min-height: 100vh;
  background-color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 150%;
  color: #333333;
}

html,
body {
  position: relative;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

html {
  scroll-behavior: smooth;
}

html.is-fixed,
body.is-fixed {
  overflow: hidden;
}

p {
  text-align: justify;
  line-height: 160%;
}
@media screen and (min-width: 768px) {
  p {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  p {
    font-size: 0.75rem;
  }
}

@media screen and (min-width: 768px) {
  p + p {
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  p + p {
    margin-top: 0.5rem;
  }
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

button,
input[type=submit],
input[type=button] {
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.l-footer {
  width: 100%;
  background: rgba(254, 240, 119, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .l-footer {
    height: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer {
    height: 3.75rem;
  }
}

.l-footer__copyright {
  text-align: center;
  font-family: "Poppins", sans-serif;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .l-footer__copyright {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    font-size: 0.625rem;
  }
}

.l-header {
  width: 100%;
  position: fixed;
  z-index: 200;
  background: rgba(255, 255, 255, 0.9);
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 3.75rem;
  }
}

.l-header__row {
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l-header__logo-link {
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .l-header__logo-wrapper {
    height: 4rem;
    aspect-ratio: 142/64;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo-wrapper {
    height: 3.25rem;
    aspect-ratio: 116/52;
  }
}

.l-header__logo {
  width: 100%;
  height: 100%;
}

.l-inner {
  margin-right: auto;
  margin-left: auto;
  height: inherit;
}
@media screen and (min-width: 1280px) {
  .l-inner {
    width: 1200px;
    max-width: 1200px;
    padding-right: 0;
    padding-left: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .l-inner {
    width: 100%;
    max-width: 100%;
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    max-width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media screen and (min-width: 1280px) {
  .l-inner--sm {
    width: 1040px;
    max-width: 1040px;
  }
}

.l-menu {
  display: block;
}

.l-page {
  display: block;
}

.c-burger-btn {
  width: 2.75rem;
  aspect-ratio: 44/44;
  border: 0.125rem solid #333333;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-burger-btn__bars {
  position: relative;
  display: block;
  width: 1.75rem;
  height: 0.125rem;
  border-radius: 62.4375rem;
  background-color: transparent;
  transition: 0.3s;
}
.c-burger-btn__bars::before, .c-burger-btn__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  background-color: #333333;
  transition: inherit;
}
.c-burger-btn__bars::before {
  top: -0.3125rem;
}
.c-burger-btn__bars::after {
  top: 0.3125rem;
}

.c-burger-btn.is-open .c-burger-btn__bars {
  background-color: transparent;
}
.c-burger-btn.is-open .c-burger-btn__bars::before, .c-burger-btn.is-open .c-burger-btn__bars::after {
  top: 0;
  background-color: #333333;
}
.c-burger-btn.is-open .c-burger-btn__bars::before {
  transform: rotate(45deg);
}
.c-burger-btn.is-open .c-burger-btn__bars::after {
  transform: rotate(-45deg);
}

.c-department {
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-department {
    padding-top: 1.8125rem;
    padding-left: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .c-department {
    padding-top: 1.125rem;
  }
}

.c-department__name {
  position: absolute;
  background: #ffffff;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .c-department__name {
    top: 0;
    left: 0;
    width: auto;
    height: 3.625rem;
    line-height: 2.875rem;
    border: 0.375rem solid #fef077;
    border-radius: 1rem;
    padding: 0rem 1.5625rem;
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .c-department__name {
    top: 0;
    left: 1rem;
    font-size: 0.875rem;
    width: auto;
    height: 2.3125rem;
    line-height: 1.9375rem;
    border: 0.1875rem solid #fef077;
    border-radius: 0.5rem;
    padding: 0rem 0.8125rem;
    font-size: 0.875rem;
  }
}

.c-department__name span {
  font-family: "Poppins", sans-serif;
}

@media screen and (min-width: 768px) {
  .c-department__photo {
    width: 22.5rem;
    aspect-ratio: 360/240;
  }
}
@media screen and (max-width: 767px) {
  .c-department__photo {
    width: calc(100% - 0.125rem);
    aspect-ratio: 333/222;
  }
}

@media screen and (min-width: 768px) {
  .p-top-department__text-area {
    margin-top: 2.25rem;
    width: 22.5rem;
    min-height: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-department__text-area {
    margin-top: 2rem;
    width: calc(100% - 0.125rem);
  }
}

.c-department__text {
  display: block;
}

.c-drawer {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  transition: 0.3s;
}

.c-drawer.is-open {
  left: 0;
}

.c-drawer__nav {
  margin-top: 6.25rem;
}

.c-drawer__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.c-drawer__item {
  width: 100%;
}

.c-drawer__link {
  display: block;
}

.c-drawer__title-en {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 150%;
  color: #fef077;
}

.c-drawer__title {
  display: block;
  margin-top: -0.475rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 150%;
}

.c-drawer__title strong {
  font-size: 1.25rem;
}

.c-drawer .c-entry-btn {
  margin: 2.5rem auto 0;
}

.c-drawer__btn-text {
  margin-top: 0.25rem;
  text-align: center;
  font-size: 1rem;
}

.c-entry-btn {
  display: block;
  background: #f3440c;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #ffffff;
  box-shadow: 0.25rem 0.25rem 0.25rem rgba(0, 0, 0, 0.05);
  transition: color 0.3s, background 0.3s, top 3s;
}
@media screen and (min-width: 768px) {
  .c-entry-btn {
    height: 5rem;
    line-height: 4.25rem;
    aspect-ratio: 351/80;
    border: 0.375rem solid #f3440c;
    border-radius: 1rem;
    padding: 0 7.5rem;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-entry-btn {
    height: 3rem;
    line-height: 2.625rem;
    aspect-ratio: 179/48;
    border: 0.1875rem solid #f3440c;
    border-radius: 0.5rem;
    padding: 0 3rem;
    font-size: 1.5rem;
  }
}
@media (hover: hover) {
  .c-entry-btn:hover {
    background: #ffffff;
    color: #f3440c;
  }
}

.c-header-nav {
  display: block;
}

.c-header-nav__list {
  display: flex;
  gap: 2.5rem;
}

.c-header-nav__link {
  font-weight: 700;
  font-size: 1rem;
}
@media screen and (min-width: 1280px) {
  .c-header-nav__link {
    height: 5rem;
    line-height: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-header-nav__link {
    height: 3.75rem;
    line-height: 3.75rem;
  }
}

.c-header-nav__link span {
  position: relative;
}
.c-header-nav__link span::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0%;
  height: 0.125rem;
  background: #f3440c;
  transition: 0.3s;
}

.c-header-nav__link:hover span::after {
  width: 100%;
}

.c-number-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .c-number-item.is-work-time {
    min-width: 18.4375rem;
  }
}
@media screen and (max-width: 767px) {
  .c-number-item.is-work-time {
    min-width: 7.125rem;
  }
}

.c-number-item__img {
  width: auto;
}
@media screen and (min-width: 768px) {
  .c-number-item__img {
    height: 11.25rem;
  }
}
@media screen and (max-width: 767px) {
  .c-number-item__img {
    height: 4.5rem;
  }
}

.c-number-item__number {
  font-weight: 700;
  line-height: 100%;
}
@media screen and (min-width: 768px) {
  .c-number-item__number {
    margin-top: 1.75rem;
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-number-item__number {
    margin-top: 0.625rem;
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .c-number-item__number.company {
    min-width: 16.375rem;
  }
}
@media screen and (max-width: 767px) {
  .c-number-item__number.company {
    min-width: 6.375rem;
  }
}

.c-number-item__number strong {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  color: #f3440c;
}
@media screen and (min-width: 768px) {
  .c-number-item__number strong {
    font-size: 6rem;
    transform: translate(-0.125rem, 0rem);
  }
}
@media screen and (max-width: 767px) {
  .c-number-item__number strong {
    font-size: 2.25rem;
    transform: translate(-0.1875rem, 0rem);
  }
}

.c-number-item__number .unit {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .c-number-item__number .unit {
    transform: translate(0.125rem, 0rem);
  }
}
@media screen and (max-width: 767px) {
  .c-number-item__number .unit {
    transform: translate(0.125rem, -0.125rem);
  }
}

.c-number-item__title {
  font-weight: 700;
  line-height: 100%;
}
@media screen and (min-width: 768px) {
  .c-number-item__title {
    margin-top: 0.6875rem;
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-number-item__title {
    margin-top: 0.25rem;
    font-size: 1rem;
  }
}

.c-qa {
  display: block;
}

.c-qa__question {
  font-weight: 700;
  line-height: 140%;
}
@media screen and (min-width: 768px) {
  .c-qa__question {
    border-bottom: 0.125rem solid #f3440c;
    padding-bottom: 0.4375rem;
    padding-left: 0.25rem;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-qa__question {
    border-bottom: 1px solid #f3440c;
    padding-bottom: 0.1875rem;
    padding-left: 0.25rem;
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .c-qa__answer {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-qa__answer {
    margin-top: 0.75rem;
  }
}

@media screen and (max-width: 767px) {
  .c-qa__answer p + p {
    margin-top: 0.4375rem;
  }
}

.c-section-title {
  display: block;
}

.c-section-title--align-right {
  text-align: right;
}

.c-section-title__en {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 150%;
  color: #fef077;
}
@media screen and (min-width: 768px) {
  .c-section-title__en {
    font-size: 6.75rem;
  }
}
@media screen and (max-width: 767px) {
  .c-section-title__en {
    font-size: 2.25rem;
  }
}

.c-section-title__ja {
  display: block;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .c-section-title__ja {
    margin-top: -1.5rem;
    font-size: 2.25rem;
  }
  .c-section-title__ja strong {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .c-section-title__ja {
    margin-top: -0.375rem;
    font-size: 1.25rem;
  }
  .c-section-title__ja strong {
    font-size: 1.75rem;
  }
}

.c-senior {
  position: relative;
}

.c-senior__title-area {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background: rgba(254, 240, 119, 0.9);
  padding-right: calc(50vw - 50%);
  padding-left: calc(50vw - 50%);
}
@media screen and (min-width: 768px) {
  .c-senior__title-area {
    height: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .c-senior__title-area {
    height: 8.75rem;
  }
}

.c-senior__title-area.align-right {
  text-align: right;
}

.c-senior__title {
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-senior__title {
    top: -3rem;
  }
}
@media screen and (max-width: 767px) {
  .c-senior__title {
    top: -1.5625rem;
  }
}

.c-senior__title-en {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 150%;
  color: #ffffff;
  -webkit-text-stroke: 1px #666666;
}
@media screen and (min-width: 768px) {
  .c-senior__title-en {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-senior__title-en {
    font-size: 2rem;
  }
}

.c-senior__title-ja {
  display: block;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .c-senior__title-ja {
    margin-top: -1.5rem;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-senior__title-ja {
    margin-top: -0.75rem;
    font-size: 1rem;
  }
}

.c-senior__tags {
  position: relative;
  z-index: 3;
  display: flex;
}
@media screen and (min-width: 768px) {
  .c-senior__tags {
    margin-top: -2.0625rem;
    gap: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .c-senior__tags {
    margin-top: -1.0625rem;
    gap: 0.625rem;
  }
}

.c-senior__title-area.align-right .c-senior__tags {
  justify-content: flex-end;
}

.c-senior__tag {
  background: #ffffff;
  text-align: center;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .c-senior__tag {
    height: 3.25rem;
    line-height: 3.25rem;
    border-radius: 1rem;
    padding: 0 2rem;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-senior__tag {
    height: 1.625rem;
    line-height: 1.625rem;
    border-radius: 0.5rem;
    padding: 0 1rem;
    font-size: 0.75rem;
  }
}

@media screen and (min-width: 768px) {
  .c-senior__row {
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .c-senior__row.is-reverse {
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  .c-senior__row + .c-senior__row {
    margin-top: 3.6875rem;
  }
}
@media screen and (max-width: 767px) {
  .c-senior__row + .c-senior__row {
    margin-top: 1.1875rem;
  }
}

.c-senior__photo-area {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-senior__photo-area {
    width: calc((100% + 10rem) * 0.5);
  }
}
@media screen and (max-width: 767px) {
  .c-senior__photo-area {
    width: 20.8125rem;
  }
}

@media screen and (max-width: 767px) {
  .c-senior__photo-area.sp-align-left {
    margin-right: auto;
    margin-left: -1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .c-senior__photo-area.sp-align-right {
    margin-right: -0.625rem;
    margin-left: auto;
  }
}

@media screen and (min-width: 768px) {
  .c-senior__photo-area.is-portrait {
    width: 25rem;
  }
}
@media screen and (max-width: 767px) {
  .c-senior__photo-area.is-portrait {
    width: 15rem;
  }
}

@media screen and (min-width: 768px) {
  .c-senior__photo-area.is-first {
    position: absolute;
    top: -3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .c-senior__photo-area.is-first {
    position: relative;
    margin-top: -2.5rem;
  }
}

.c-senior__photo {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-senior__photo {
    aspect-ratio: 600/400;
  }
}
@media screen and (max-width: 767px) {
  .c-senior__photo {
    aspect-ratio: 333/222;
  }
}

@media screen and (min-width: 768px) {
  .c-senior__photo-area.is-portrait .c-senior__photo {
    width: 25rem;
    aspect-ratio: 400/600;
  }
}
@media screen and (max-width: 767px) {
  .c-senior__photo-area.is-portrait .c-senior__photo {
    width: 15rem;
    aspect-ratio: 240/360;
  }
}

.c-senior .u-photo {
  border-radius: 1rem;
}

.c-senior__text-area {
  position: relative;
  z-index: 2;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-senior__text-area {
    margin-top: 5rem;
    width: calc((100% + 10rem) * 0.5);
    max-width: calc((100% + 10rem) * 0.5);
    padding: 3.125rem 3.125rem;
    gap: 2.4375rem;
  }
  .c-senior__text-area.is-first {
    margin-top: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .c-senior__text-area {
    margin-top: -2.5rem;
    width: 18.4375rem;
    max-width: 18.4375rem;
    padding: 1rem;
    gap: 1.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .c-senior__text-area.align-left {
    margin-right: -10rem;
  }
}

@media screen and (min-width: 768px) {
  .c-senior__text-area.align-right {
    margin-left: -10rem;
  }
}

@media screen and (max-width: 767px) {
  .c-senior__text-area.sp-align-left {
    margin-right: auto;
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .c-senior__text-area.sp-align-right {
    margin-left: auto;
    padding-right: 0;
  }
}

@media screen and (min-width: 768px) {
  .c-senior__text-area.is-first.align-left {
    margin-right: auto;
  }
}

@media screen and (min-width: 768px) {
  .c-senior__text-area.is-first.align-right {
    margin-left: auto;
  }
}

@media screen and (min-width: 768px) {
  .c-senior__photo-area.is-portrait + .c-senior__text-area {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-senior__photo-area.is-portrait + .c-senior__text-area {
    margin-top: -5.0625rem;
  }
}

.p-top-department {
  display: block;
}

.p-top-department__title {
  text-align: center;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .p-top-department__title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-department__title {
    font-size: 1.75rem;
  }
}

.p-top-department__title strong {
  font-family: "Poppins", sans-serif;
  color: #f3440c;
}
@media screen and (min-width: 768px) {
  .p-top-department__title strong {
    font-size: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-department__title strong {
    font-size: 2.25rem;
  }
}

.p-top-department__departments {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-top-department__departments {
    margin-top: 6.4375rem;
    gap: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-department__departments {
    margin-top: 4.0625rem;
    gap: 3.6875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-department__row {
    display: flex;
    justify-content: center;
    gap: 2.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-department__row {
    display: contents;
  }
}

@media screen and (min-width: 768px) {
  .p-top-department__row.has-2 {
    padding-left: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-department__row.has-3 {
    padding-left: 0;
  }
}

.p-top-entry {
  display: block;
}

.p-top-entry__message {
  text-align: center;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .p-top-entry__message {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-entry__message {
    font-size: 1rem;
  }
}

.p-top-entry .c-entry-btn {
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-top-entry .c-entry-btn {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-entry .c-entry-btn {
    margin-top: 2.5rem;
  }
}

.p-top-entry__note {
  text-align: center;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .p-top-entry__note {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-entry__note {
    margin-top: 0.25rem;
    font-size: 1rem;
  }
}

.p-top-fv {
  position: relative;
}

.p-top-fv__img-row {
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-fv__img-row {
    width: 57.5rem;
    aspect-ratio: 920/680;
  }
}
@media screen and (max-width: 767px) {
  .p-top-fv__img-row {
    width: 19.5rem;
    aspect-ratio: 312/256;
    gap: 0.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-fv__img-wrapper {
    aspect-ratio: 200/680;
  }
}
@media screen and (max-width: 767px) {
  .p-top-fv__img-wrapper {
    aspect-ratio: 72/256;
  }
}

@media screen and (min-width: 768px) {
  .p-top-fv__img-wrapper:nth-child(odd) {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-fv__img-wrapper:nth-child(odd) {
    padding-top: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-fv__img-wrapper:nth-child(even) {
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-fv__img-wrapper:nth-child(even) {
    padding-bottom: 2.5rem;
  }
}

.p-top-fv__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-top-fv__img {
    border-radius: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-fv__img {
    border-radius: 0.5rem;
  }
}

.p-top-fv__message {
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .p-top-fv__message {
    margin-top: 2.25rem;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-fv__message {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.p-top-fv__main-copy {
  position: absolute;
  box-shadow: 0.25rem 0.25rem 0.25rem rgba(0, 0, 0, 0.05);
  background: rgba(254, 240, 119, 0.9);
  text-align: right;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-top-fv__main-copy {
    top: 28.625rem;
    left: -12.5rem;
    width: 72.5rem;
    height: 7.5rem;
    line-height: 7.5rem;
    border-radius: 1rem;
    padding-right: 3.75rem;
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-fv__main-copy {
    top: 9.875rem;
    left: -6.25rem;
    width: 23rem;
    height: 3rem;
    line-height: 3rem;
    border-radius: 0.5rem;
    padding-right: 1.25rem;
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-fv__main-copy strong {
    font-size: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-fv__main-copy strong {
    font-size: 1.5rem;
  }
}

.c-entry-btn.is-fixed {
  position: fixed;
  display: block;
  z-index: 50;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .c-entry-btn.is-fixed {
    top: min(46.25rem, 100vh - 10rem);
    right: -12.5rem;
    width: 30.6875rem;
    padding-left: 3.375rem;
  }
}
@media screen and (max-width: 767px) {
  .c-entry-btn.is-fixed {
    top: 29.25rem;
    right: -6.25rem;
    width: 15.25rem;
    padding-left: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .c-entry-btn.is-fixed.is-bottom-right {
    top: calc(100vh - 10rem);
  }
}
@media screen and (max-width: 767px) {
  .c-entry-btn.is-fixed.is-bottom-right {
    top: calc(100vh - 6.25rem);
    top: calc(100dvh - 6.25rem);
  }
}

.p-top-guideline {
  display: block;
}

.p-top-guideline__list {
  margin: auto;
  border-bottom: 1px solid #999999;
}
@media screen and (min-width: 768px) {
  .p-top-guideline__list {
    margin-top: 7.6875rem;
    width: 50rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-guideline__list {
    margin-top: 3.875rem;
  }
}

.p-top-guideline__item {
  border-top: 1px solid #999999;
}
@media screen and (min-width: 768px) {
  .p-top-guideline__item {
    display: grid;
    grid-template-columns: 16.25rem minmax(0, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-top-guideline__item {
    display: flex;
    flex-direction: column;
  }
}

.p-top-guideline__term {
  background: rgba(254, 240, 119, 0.3);
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 768px) {
  .p-top-guideline__term {
    padding: 1.25rem 2.5rem 1.1875rem;
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-guideline__term {
    padding: 0.5rem 1.25rem 0.5rem;
    font-size: 0.75rem;
  }
}

.p-top-guideline__desc {
  line-height: 160%;
}
@media screen and (min-width: 768px) {
  .p-top-guideline__desc {
    padding: 1.25rem 2.5rem 1.1875rem;
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-guideline__desc {
    padding: 0.5rem 1.25rem 0.65625rem;
    font-size: 0.75rem;
  }
}

.p-top-guideline__desc ul {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-top-guideline__desc ul {
    gap: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-guideline__desc ul {
    gap: 0.5rem;
  }
}

.p-top-guideline__desc ul.has-dot {
  list-style: "・" inside;
}

.p-top-movie {
  display: block;
}

.p-top-movie__title-area {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background: rgba(254, 240, 119, 0.9);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}
@media screen and (min-width: 768px) {
  .p-top-movie__title-area {
    height: 8.75rem;
    padding-top: 1.6875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-movie__title-area {
    height: 11.25rem;
    padding-top: 0.9375rem;
  }
}

.p-top-movie__title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .p-top-movie__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-movie__title {
    text-align: center;
    font-size: 1.75rem;
  }
}

.p-top-movie__desc {
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .p-top-movie__desc {
    margin-top: 0;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-movie__desc {
    margin-top: -0.4375rem;
    text-align: center;
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-movie__youtube-wrapper {
    margin-top: -12.5rem;
    margin-left: auto;
    width: 50rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-movie__youtube-wrapper {
    margin-top: -4.3125rem;
    margin-right: auto;
    margin-left: auto;
    width: 20rem;
  }
}

.p-top-movie__youtube {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

.p-top-numbers {
  display: block;
}

.p-top-numbers__groups {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-top-numbers__groups {
    margin-top: 5.9375rem;
    gap: 8.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-numbers__groups {
    margin-top: 2.625rem;
    gap: 3.75rem;
  }
}

.p-top-numbers__group {
  display: flex;
  flex-direction: column;
}
.p-top-numbers__group.align-left {
  justify-content: flex-start;
}
.p-top-numbers__group.align-right {
  justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .p-top-numbers__group {
    gap: 3.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-numbers__group {
    gap: 2.5625rem;
  }
}

.p-top-numbers__group-title {
  display: grid;
  align-items: center;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-top-numbers__group-title {
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-numbers__group-title {
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
    font-size: 1rem;
  }
}

.p-top-numbers__group.align-left .p-top-numbers__group-title {
  margin-right: auto;
  grid-template-columns: auto 1fr;
}

.p-top-numbers__group.align-right .p-top-numbers__group-title {
  margin-left: auto;
  grid-template-columns: 1fr auto;
}

.p-top-numbers__group.align-left .p-top-numbers__group-title::after,
.p-top-numbers__group.align-right .p-top-numbers__group-title::before {
  content: "";
  height: 1px;
  background: #333333;
}
@media screen and (min-width: 768px) {
  .p-top-numbers__group.align-left .p-top-numbers__group-title::after,
  .p-top-numbers__group.align-right .p-top-numbers__group-title::before {
    width: 25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-numbers__group.align-left .p-top-numbers__group-title::after,
  .p-top-numbers__group.align-right .p-top-numbers__group-title::before {
    width: 5rem;
  }
}

.p-top-numbers__items {
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-top-numbers__items {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-numbers__items {
    gap: 0.25rem;
  }
}

.p-top-numbers__group.align-right .p-top-numbers__items {
  margin-left: auto;
}

.p-top-photo-movie {
  display: block;
}

@media screen and (min-width: 768px) {
  .p-top-photo-movie .p-top-press {
    margin-top: 7.6875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-photo-movie .p-top-press {
    margin-top: 5.1875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-photo-movie .p-top-department {
    margin-top: 9.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-photo-movie .p-top-department {
    margin-top: 5.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-photo-movie .p-top-movie {
    margin-top: 11.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-photo-movie .p-top-movie {
    margin-top: 5.0625rem;
  }
}

.p-top-president {
  display: block;
}

@media screen and (min-width: 768px) {
  .p-top-president__row {
    margin-top: 7.75rem;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .p-top-president__row {
    margin-top: 2.625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-president__photo-area {
    width: 33.75rem;
    min-width: 33.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-president__photo-area {
    margin-right: auto;
    margin-left: auto;
    width: 18.875rem;
  }
}

.p-top-president__photo-wrapper {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-president__photo-wrapper {
    width: 30rem;
    aspect-ratio: 480/480;
  }
}
@media screen and (max-width: 767px) {
  .p-top-president__photo-wrapper {
    width: 17.5rem;
    aspect-ratio: 280/280;
  }
}

.p-top-president__photo {
  width: 100%;
  height: 100%;
}

.p-top-president__labels {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-top-president__labels {
    right: -3.75rem;
    bottom: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-president__labels {
    right: -1.375rem;
    bottom: 1rem;
  }
}

.p-top-president__role {
  background: #ffffff;
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-top-president__role {
    height: 2.875rem;
    line-height: 2.375rem;
    aspect-ratio: 216/46;
    border: 0.25rem solid #fef077;
    border-radius: 1rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-president__role {
    height: 1.875rem;
    line-height: 1.5rem;
    aspect-ratio: 120/30;
    border: 0.1875rem solid #fef077;
    border-radius: 1rem;
    font-size: 0.75rem;
  }
}

.p-top-president__name {
  background: #ffffff;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-top-president__name {
    margin-top: 0.75rem;
    height: 4rem;
    line-height: 3.5rem;
    aspect-ratio: 216/64;
    border: 0.25rem solid #fef077;
    border-radius: 1rem;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-president__name {
    margin-top: 0.5rem;
    height: 2.25rem;
    line-height: 1.875rem;
    aspect-ratio: 120/36;
    border: 0.1875rem solid #fef077;
    border-radius: 1rem;
    font-size: 1rem;
  }
}

.p-top-president__text-area {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-top-president__text-area {
    width: calc(100% - 37.5rem);
    gap: 2.4375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-president__text-area {
    margin-top: 2.5rem;
    width: 100%;
    gap: 1.375rem;
  }
}

.p-top-press {
  display: flex;
  justify-content: space-between;
}

@media screen and (min-width: 768px) {
  .p-top-press__left {
    width: 50rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-press__left {
    width: 20rem;
  }
}

.p-top-press__photo {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-press__photo {
    aspect-ratio: 800/450;
  }
}
@media screen and (min-width: 768px) {
  .p-top-press__right {
    margin-left: -16rem;
    width: 41rem;
    padding-top: 11.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-press__right {
    margin-left: -16.0625rem;
    width: 17rem;
    padding-top: 10.25rem;
  }
}

.p-top-press__box {
  position: relative;
  background: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-top-press__box {
    border: 0.375rem solid #fef077;
    border-radius: 1rem;
    padding: 2.1875rem 2.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-press__box {
    border: 0.1875rem solid #fef077;
    border-radius: 0.5rem;
    padding: 0.75rem 0.8125rem;
  }
}

.p-top-press__illust {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-top-press__illust {
    top: -0.375rem;
    transform: translateY(-100%);
    left: calc(50% - 3.25rem);
    width: 15rem;
    aspect-ratio: 240/180;
  }
}
@media screen and (max-width: 767px) {
  .p-top-press__illust {
    top: 0.4375rem;
    right: -0.1875rem;
    width: 6rem;
    aspect-ratio: 96/72;
  }
}

.p-top-press__title {
  font-weight: 700;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .p-top-press__title {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-press__title {
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-press__text {
    margin-top: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-press__text {
    margin-top: 1rem;
  }
}

.p-top-senior {
  display: block;
}

.p-top-senior__seniors {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-top-senior__seniors {
    margin-top: 11.4375rem;
    gap: 15rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-senior__seniors {
    margin-top: 5.5rem;
    gap: 5.1875rem;
  }
}

.p-top {
  display: block;
}

@media screen and (min-width: 768px) {
  .p-top .p-top-fv {
    margin-top: 6.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .p-top-fv {
    margin-top: 6.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top .p-top-numbers {
    margin-top: 11.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .p-top-numbers {
    margin-top: 9.375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top .p-top-photo-movie {
    margin-top: 14.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .p-top-photo-movie {
    margin-top: 7.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top .p-top-senior {
    margin-top: 11.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .p-top-senior {
    margin-top: 7.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top .p-top-president {
    margin-top: 11.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .p-top-president {
    margin-top: 7.625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top .p-top-guideline {
    margin-top: 11.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .p-top-guideline {
    margin-top: 7.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top .p-top-entry {
    margin-top: 7.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .p-top-entry {
    margin-top: 3.75rem;
    padding-left: 0.1875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top .l-footer {
    margin-top: 11.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top .l-footer {
    margin-top: 7.5rem;
  }
}

@media screen and (max-width: 1279px) {
  .u-pc-only {
    display: none;
  }
}

@media screen and (min-width: 1280px) {
  .u-pc-hidden {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .u-sp-only {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-hidden {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .u-lined {
    padding-top: 0.25rem;
    padding-left: 0.25rem;
  }
}
@media screen and (max-width: 767px) {
  .u-lined {
    padding-top: 0.125rem;
    padding-left: 0.125rem;
  }
}

.u-lined--align-right {
  padding-left: 0;
}

.u-lined__base {
  position: relative;
}

.u-lined__line-text {
  position: absolute;
  color: transparent;
  -webkit-text-stroke: 0.65px #666666;
}
@media screen and (min-width: 768px) {
  .u-lined__line-text {
    top: -0.75rem;
    left: -0.25rem;
  }
}
@media screen and (max-width: 767px) {
  .u-lined__line-text {
    top: -0.1875rem;
    left: -0.125rem;
  }
}

@media screen and (min-width: 768px) {
  .u-photo {
    border-radius: 1rem;
    box-shadow: 1rem 1rem 0 rgba(254, 240, 119, 0.7);
  }
}
@media screen and (max-width: 767px) {
  .u-photo {
    border-radius: 0.5rem;
    box-shadow: 0.5rem 0.5rem 0 rgba(254, 240, 119, 0.7);
  }
}

@keyframes slide-right {
  0% {
    transform: translateX(-180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
@keyframes slide-left {
  0% {
    transform: translateX(180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
.u-slide-right {
  animation: slide-right 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

.u-slide-left {
  animation: slide-left 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.u-typing {
  position: relative;
  display: inline-block;
}

.u-typing > span {
  display: none;
}

.u-typing::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: -4px;
  width: 1px;
  height: 75%;
  border-right: 1px solid #666666;
  animation: fade-in 0.8s ease infinite;
}

.u-typing.is-fixed::after {
  display: none;
  animation: none;
}


