@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  overflow-x: clip;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-weight: 700;
  line-height: 1.8;
  color: #263051;
  letter-spacing: 0.05em;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.p-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
  background-color: #16478f;
  opacity: 1;
  transition: opacity 0.4s ease;
}
.p-transition.is-hidden {
  opacity: 0;
}

.p-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  transition: opacity 0.6s ease;
}
.p-loading__logo {
  width: 180px;
  height: 180px;
  opacity: 0;
  animation: loading-logo 1.2s ease forwards;
}

@keyframes loading-logo {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  30% {
    opacity: 1;
    transform: scale(1);
  }
  70% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
.l-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1024px) {
  .l-inner {
    padding: 0 40px;
  }
}

.l-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.l-deco--circle1 {
  width: 700px;
  height: 700px;
  border: 2px solid rgba(224, 224, 224, 0.35);
  top: 2200px;
  right: -250px;
}
@media (max-width: 767px) {
  .l-deco--circle1 {
    display: none;
  }
}
.l-deco--circle2 {
  width: 600px;
  height: 600px;
  border: 2px solid rgba(224, 224, 224, 0.3);
  top: 4200px;
  right: -200px;
}
@media (max-width: 767px) {
  .l-deco--circle2 {
    display: none;
  }
}

.c-label {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #dea64e;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.c-label::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #16478f;
  flex-shrink: 0;
}
.c-label--white {
  color: #ffffff;
}
.c-label--white::before {
  background-color: #ffffff;
}

.c-heading {
  font-size: 48px;
  font-weight: 700;
  color: #263051;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .c-heading {
    font-size: 32px;
  }
}
.c-heading--white {
  color: #ffffff;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px 14px 32px;
  border: 1px solid #16478f;
  max-width: 300px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #16478f;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.c-btn:hover {
  background-color: #16478f;
  color: #ffffff;
}
.c-btn:hover::after {
  background-color: transparent;
  filter: brightness(0) invert(1);
}
.c-btn::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("../images/common/arr.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
}

.c-mascot-hover {
  position: relative;
  cursor: pointer;
  pointer-events: auto !important;
  overflow: visible !important;
  z-index: 10;
}
.c-mascot-hover img.c-mascot-hover__name {
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  width: 170px !important;
  max-width: none !important;
  height: 48px !important;
  display: block !important;
  z-index: 11;
}
.c-mascot-hover:hover .c-mascot-hover__name {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #ffffff;
}
.l-header__inner {
  display: flex;
  align-items: center;
  padding: 20px;
}
@media (max-width: 767px) {
  .l-header__inner {
    padding: 12px 16px;
  }
}
.l-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 110;
}
.l-header__logo img {
  width: auto;
  height: 67px;
}
@media (max-width: 767px) {
  .l-header__logo img {
    height: 50px;
  }
}
.l-header__nav {
  margin-left: auto;
  background-color: #f6f6f6;
  border-radius: 22px;
  height: 44px;
  display: flex;
  align-items: center;
  padding: 0 31px 0 5px;
  gap: 21px;
}
@media (max-width: 767px) {
  .l-header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #16478f;
    border-radius: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 90;
    padding: 0;
    clip-path: polygon(45% 0, 55% 0, 45% 100%, 35% 100%);
    visibility: hidden;
    opacity: 0;
    transition: clip-path 0.5s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.15s ease, visibility 0s 0.5s;
  }
  .l-header__nav.is-open {
    clip-path: polygon(-20% 0, 120% 0, 100% 100%, 0% 100%);
    visibility: visible;
    opacity: 1;
    transition: clip-path 0.5s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.15s ease, visibility 0s 0s;
  }
}
.l-header__nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #18468f;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .l-header__nav-icon {
    display: none;
  }
}
.l-header__nav-list {
  display: flex;
  align-items: center;
  gap: 46px;
}
@media (max-width: 767px) {
  .l-header__nav-list {
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 767px) {
  .l-header__nav-list li {
    width: 240px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .l-header__nav-list li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
}
.l-header__nav-list a {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #333333;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.l-header__nav-list a:hover {
  color: #16478f;
}
@media (max-width: 767px) {
  .l-header__nav-list a {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    padding: 18px 0;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .is-open .l-header__nav-list a {
    opacity: 1;
    transform: translateY(0);
  }
  .l-header__nav-list a:hover {
    color: #dea64e;
  }
}
@media (max-width: 767px) {
  .l-header__nav-list li:nth-child(1) a {
    transition-delay: 0.21s;
  }
  .l-header__nav-list li:nth-child(2) a {
    transition-delay: 0.27s;
  }
  .l-header__nav-list li:nth-child(3) a {
    transition-delay: 0.33s;
  }
  .l-header__nav-list li:nth-child(4) a {
    transition-delay: 0.39s;
  }
  .l-header__nav-list li:nth-child(5) a {
    transition-delay: 0.45s;
  }
  .l-header__nav-list li:nth-child(6) a {
    transition-delay: 0.51s;
  }
}
.l-header__nav-tel {
  display: none;
}
@media (max-width: 767px) {
  .l-header__nav-tel {
    display: block;
    text-align: center;
    margin-top: 32px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease 0.5s, transform 0.4s ease 0.5s;
  }
  .is-open .l-header__nav-tel {
    opacity: 1;
    transform: translateY(0);
  }
}
.l-header__nav-tel-number {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1;
}
.l-header__nav-tel-hours {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
}
.l-header__nav-sns {
  display: none;
}
@media (max-width: 767px) {
  .l-header__nav-sns {
    display: flex;
    gap: 20px;
    margin-top: 24px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease 0.56s, transform 0.4s ease 0.56s;
  }
  .is-open .l-header__nav-sns {
    opacity: 1;
    transform: translateY(0);
  }
}
.l-header__nav-sns a {
  color: #ffffff;
  transition: opacity 0.3s ease;
}
.l-header__nav-sns a svg {
  width: 28px;
  height: 28px;
}
.l-header__nav-sns a:hover {
  opacity: 0.6;
}
.l-header__tel {
  flex-shrink: 0;
  margin-left: 27px;
  text-align: right;
}
@media (max-width: 1024px) {
  .l-header__tel {
    display: none;
  }
}
.l-header__tel-link {
  display: block;
}
.l-header__tel-number {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #18468f;
  letter-spacing: 0.06em;
  line-height: 1;
}
.l-header__tel-hours {
  font-size: 12px;
  font-weight: 700;
  color: #18468f;
  line-height: 1.1;
  margin-top: 0;
}
.l-header__hamburger {
  display: none;
  position: relative;
  width: 28px;
  height: 18px;
  z-index: 110;
}
@media (max-width: 767px) {
  .l-header__hamburger {
    display: block;
    margin-left: auto;
  }
}
.l-header__hamburger span {
  position: absolute;
  right: 0;
  height: 2.5px;
  border-radius: 2px;
  background-color: #16478f;
  transition: all 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.l-header__hamburger span:nth-child(1) {
  top: 0;
  width: 60%;
}
.l-header__hamburger span:nth-child(2) {
  display: none;
}
.l-header__hamburger span:nth-child(3) {
  bottom: 0;
  width: 100%;
}
.l-header__hamburger.is-active span {
  background-color: #ffffff;
}
.l-header__hamburger.is-active span:nth-child(1) {
  top: 50%;
  width: 100%;
  transform: translateY(-50%) rotate(45deg);
}
.l-header__hamburger.is-active span:nth-child(3) {
  bottom: 50%;
  width: 100%;
  transform: translateY(50%) rotate(-45deg);
}

.p-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
}
@media (max-width: 767px) {
  .p-hero {
    height: 80vh;
    min-height: 500px;
  }
}
.p-hero__sidebar {
  position: relative;
  width: 90px;
  flex-shrink: 0;
  background-color: #ffffff;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 120px;
}
@media (max-width: 767px) {
  .p-hero__sidebar {
    width: 50px;
    padding-top: 80px;
  }
}
.p-hero__main {
  position: relative;
  flex: 1;
  overflow: hidden;
  margin-top: 110px;
  margin-right: 20px;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .p-hero__main {
    padding-top: 74px;
    margin-top: 74px;
    margin-right: 8px;
    border-radius: 12px;
  }
}
.p-hero__slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-hero__slider .slick-list,
.p-hero__slider .slick-track,
.p-hero__slider .slick-slide,
.p-hero__slider .slick-slide > div {
  height: 100%;
}
.p-hero__slide {
  height: 100%;
}
.p-hero__bg-img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
}
.p-hero__dots {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
}
.p-hero__dot--filled {
  background-color: #16478f;
}
.p-hero__dot--outline {
  border: 2px solid #16478f;
  background-color: transparent;
}
.p-hero__scroll {
  margin-top: auto;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .p-hero__scroll {
    margin-bottom: 60px;
  }
}
.p-hero__scroll-text {
  writing-mode: vertical-rl;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #263051;
  letter-spacing: 0.15em;
}
.p-hero__scroll-line {
  width: 1px;
  height: 60px;
  background-color: transparent;
  position: relative;
  overflow: hidden;
}
.p-hero__scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #263051;
  animation: scroll-line 1.8s ease-in-out infinite;
}
@media (max-width: 767px) {
  .p-hero__scroll-line {
    height: 40px;
  }
}
.p-hero__catch {
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: row-reverse;
  gap: 30px;
}
@media (max-width: 767px) {
  .p-hero__catch {
    top: 80px;
    right: 16px;
    gap: 16px;
  }
}
.p-hero__catch-col {
  writing-mode: vertical-rl;
  font-size: 50px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 0.15em;
  line-height: 1;
}
@media (max-width: 767px) {
  .p-hero__catch-col {
    font-size: 36px;
  }
}
.p-hero__tagline {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}
@media (max-width: 767px) {
  .p-hero__tagline {
    bottom: 16px;
  }
}
.p-hero__tagline-track {
  display: inline-flex;
  animation: marquee 15s linear infinite;
}
.p-hero__tagline-track > span {
  flex-shrink: 0;
  padding-right: 80px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .p-hero__tagline-track > span {
    font-size: 28px;
    padding-right: 40px;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-line {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}
.p-company {
  position: relative;
  background-color: transparent;
  padding-top: 120px;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .p-company {
    padding-top: 56px;
  }
}
.p-company__deco--dot, .p-company__deco--dot2, .p-company__deco--dot3, .p-company__deco--dot4 {
  opacity: 0;
  transform: scale(0);
}
.p-company__deco--dot img, .p-company__deco--dot2 img, .p-company__deco--dot3 img, .p-company__deco--dot4 img {
  width: 100%;
  height: 100%;
  display: block;
}
.p-company__deco--dot {
  position: absolute;
  width: 84px;
  height: 84px;
  top: 35%;
  right: -42px;
  z-index: -1;
}
.p-company__deco--dot.is-inview {
  animation: deco-enter-dot 0.8s ease-out forwards;
}
.p-company__deco--dot.is-inview img {
  animation: float-deco 4s ease-in-out 0.8s infinite;
}
@media (max-width: 767px) {
  .p-company__deco--dot {
    width: 40px;
    height: 40px;
    top: 30%;
    right: -10px;
  }
}
.p-company__deco--dot2 {
  position: absolute;
  width: 115px;
  height: 115px;
  top: 20%;
  left: -80px;
  z-index: -1;
}
.p-company__deco--dot2.is-inview {
  animation: deco-enter-dot2 0.8s ease-out 0.2s forwards;
}
.p-company__deco--dot2.is-inview img {
  animation: float-deco 5s ease-in-out 1s infinite;
}
@media (max-width: 767px) {
  .p-company__deco--dot2 {
    width: 50px;
    height: 50px;
    top: 10%;
    left: -15px;
  }
}
.p-company__deco--dot3 {
  position: absolute;
  width: 82px;
  height: 82px;
  top: 55%;
  left: 5%;
  z-index: -1;
}
.p-company__deco--dot3.is-inview {
  animation: deco-enter-dot3 0.8s ease-out 0.4s forwards;
}
.p-company__deco--dot3.is-inview img {
  animation: float-deco 3.5s ease-in-out 1.2s infinite;
}
@media (max-width: 767px) {
  .p-company__deco--dot3 {
    width: 30px;
    height: 30px;
    top: 60%;
    left: 5%;
  }
}
.p-company__deco--dot4 {
  position: absolute;
  width: 750px;
  height: 750px;
  bottom: -350px;
  left: -375px;
  z-index: 0;
}
.p-company__deco--dot4.is-inview {
  animation: deco-enter-dot4 0.8s ease-out 0.6s forwards;
}
.p-company__deco--dot4.is-inview img {
  animation: float-deco 6s ease-in-out 2s infinite;
}
.p-company__deco--dot4 img {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 767px) {
  .p-company__deco--dot4 {
    display: none;
  }
}
.p-company__inner {
  padding: 0 20px;
}
.p-company__header {
  max-width: 1280px;
  margin: 0 auto 60px;
}
@media (max-width: 767px) {
  .p-company__header {
    margin-bottom: 24px;
  }
}
.p-company__body {
  max-width: 1280px;
  margin: 0 auto;
}
.p-company__text {
  font-size: 24px;
  font-weight: 700;
  line-height: 2.1;
  color: #263051;
  margin-bottom: 32px;
}
.p-company__text:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .p-company__text {
    font-size: 16px;
    margin-bottom: 24px;
  }
}
.p-company__cta {
  margin-top: 90px;
  text-align: center;
}
@media (max-width: 767px) {
  .p-company__cta {
    margin-top: 40px;
  }
}
.p-company__gallery {
  position: relative;
  z-index: 3;
  margin-top: 90px;
  padding: 0 0 160px;
}
.p-company__gallery-deco {
  position: absolute;
  z-index: 2;
}
.p-company__gallery-deco--dot1 {
  width: 115px;
  height: 115px;
  top: 20%;
  left: -58px;
}
.p-company__gallery-deco--dot1 img {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 767px) {
  .p-company__gallery-deco--dot1 {
    display: none;
  }
}
.p-company__gallery-deco--dot2 {
  width: 82px;
  height: 82px;
  top: 50%;
  left: 15%;
}
.p-company__gallery-deco--dot2 img {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 767px) {
  .p-company__gallery-deco--dot2 {
    display: none;
  }
}
.p-company__gallery-deco--dot3 {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #dea64e;
  bottom: 35%;
  left: 5%;
}
@media (max-width: 767px) {
  .p-company__gallery {
    margin-top: 100px;
    padding-bottom: 90px;
  }
}
.p-company__gallery-marquee {
  width: 100%;
}
.p-company__gallery-track {
  display: flex;
  align-items: flex-end;
  animation: gallery-scroll 30s linear infinite;
  width: max-content;
}
.p-company__gallery-item {
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 15px;
}
.p-company__gallery-item:nth-child(8n+1) {
  transform: translateY(-60px);
}
.p-company__gallery-item:nth-child(8n+2) {
  transform: translateY(-30px);
}
.p-company__gallery-item:nth-child(8n+3) {
  transform: translateY(-10px);
}
.p-company__gallery-item:nth-child(8n+4) {
  transform: none;
}
.p-company__gallery-item:nth-child(8n+5) {
  transform: translateY(-50px);
}
.p-company__gallery-item:nth-child(8n+6) {
  transform: translateY(0);
}
.p-company__gallery-item:nth-child(8n+7) {
  transform: translateY(-20px);
}
.p-company__gallery-item:nth-child(8n+8) {
  transform: translateY(0);
}
@media (max-width: 767px) {
  .p-company__gallery-item {
    margin: 0 8px;
  }
  .p-company__gallery-item img {
    height: 120px;
    width: auto;
  }
}
.p-company__gallery-item img {
  display: block;
}
.p-company__gallery-bg-text {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 120px;
  font-weight: 800;
  color: #fff;
  -webkit-text-stroke: 1px #F5E5CC;
  white-space: nowrap;
  letter-spacing: 0.04em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 767px) {
  .p-company__gallery-bg-text {
    font-size: 36px;
    bottom: 10px;
  }
}

@keyframes deco-enter-dot {
  0% {
    opacity: 0;
    transform: translate(-80px, 30px) scale(0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}
@keyframes deco-enter-dot2 {
  0% {
    opacity: 0;
    transform: translate(80px, 40px) scale(0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}
@keyframes deco-enter-dot3 {
  0% {
    opacity: 0;
    transform: translate(60px, -30px) scale(0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}
@keyframes deco-enter-dot4 {
  0% {
    opacity: 0;
    transform: translate(100px, -60px) scale(0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}
@keyframes float-deco {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes gallery-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.p-works-curve {
  position: relative;
  z-index: 1;
  height: 240px;
  margin-top: 0;
  width: 100%;
  overflow: hidden;
}
.p-works-curve::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  background-color: #16478f;
  border-radius: 50% 50% 0 0;
}
@media (max-width: 767px) {
  .p-works-curve {
    height: 90px;
    margin-top: 0;
  }
}

.p-works {
  position: relative;
  overflow: hidden;
  background-color: #16478f;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .p-works {
    padding-bottom: 60px;
  }
}
.p-works__bg-curve {
  position: absolute;
  top: 55%;
  left: -10%;
  width: 120%;
  height: 240px;
  background-color: #ffffff;
  border-radius: 50% 50% 0 0;
  z-index: 0;
}
@media (max-width: 767px) {
  .p-works__bg-curve {
    top: 60%;
    height: 90px;
  }
}
.p-works::after {
  content: "";
  position: absolute;
  top: calc(55% + 120px);
  left: 0;
  width: 100%;
  bottom: 0;
  background-color: #ffffff;
  z-index: 0;
}
@media (max-width: 767px) {
  .p-works::after {
    top: calc(60% + 70px);
  }
}
.p-works__deco--circle {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #dea64e;
  top: 40px;
  left: 8%;
  opacity: 0.7;
  z-index: 2;
}
@media (max-width: 767px) {
  .p-works__deco--circle {
    width: 60px;
    height: 60px;
    top: 20px;
  }
}
.p-works__deco--circle5, .p-works__deco--circle1 {
  opacity: 0;
  transform: scale(0);
}
.p-works__deco--circle5 img, .p-works__deco--circle1 img {
  width: 100%;
  height: 100%;
  display: block;
}
.p-works__deco--circle5 {
  position: absolute;
  width: 172px;
  height: 172px;
  bottom: 5%;
  right: -86px;
  z-index: 1;
}
.p-works__deco--circle5.is-inview {
  animation: works-deco-enter-circle5 0.8s ease-out forwards;
}
.p-works__deco--circle5.is-inview img {
  animation: float-deco 5s ease-in-out 0.8s infinite;
}
@media (max-width: 767px) {
  .p-works__deco--circle5 {
    display: none;
  }
}
.p-works__deco--circle1 {
  position: absolute;
  width: 172px;
  height: 172px;
  bottom: 8%;
  left: -86px;
  z-index: 1;
}
.p-works__deco--circle1.is-inview {
  animation: works-deco-enter-circle1 0.8s ease-out 0.2s forwards;
}
.p-works__deco--circle1.is-inview img {
  animation: float-deco 4s ease-in-out 1s infinite;
}
@media (max-width: 767px) {
  .p-works__deco--circle1 {
    display: none;
  }
}
.p-works__mascot-top {
  position: absolute;
  top: 0;
  left: 3%;
  width: 83px;
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 767px) {
  .p-works__mascot-top {
    width: 45px;
    left: 8px;
    top: -5px;
  }
}
.p-works__mascot-top img {
  width: 100%;
  height: auto;
  display: block;
}
.p-works__inner {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .p-works__inner {
    padding-top: 0;
  }
}
.p-works__header {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .p-works__header {
    margin-bottom: 32px;
  }
}
.p-works__intro {
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 767px) {
  .p-works__intro {
    font-size: 15px;
    margin-bottom: 32px;
  }
}
.p-works__process {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto 60px;
  padding: 60px 20px 10px;
}
@media (max-width: 767px) {
  .p-works__process {
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px;
    margin-bottom: 36px;
  }
}
.p-works__lower {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .p-works__lower {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
}
.p-works__process-item {
  text-align: center;
  flex: 0 0 23%;
  position: relative;
}
.p-works__process-item:not(:first-child) {
  margin-left: -18px;
}
.p-works__process-item:nth-child(1) {
  z-index: 1;
  transform: translateY(0);
}
.p-works__process-item:nth-child(2) {
  z-index: 2;
  transform: translateY(-20px);
}
.p-works__process-item:nth-child(3) {
  z-index: 3;
  transform: translateY(-40px);
}
.p-works__process-item:nth-child(4) {
  z-index: 4;
  transform: translateY(-60px);
}
@media (max-width: 767px) {
  .p-works__process-item {
    flex: 0 0 calc(50% - 8px);
    transform: none !important;
    margin-left: 0 !important;
  }
}
.p-works__process-img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}
.p-works__process-img img {
  width: 100%;
  aspect-ratio: 3/5;
  object-fit: cover;
  display: block;
}
.p-works__process-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .p-works__process-label {
    font-size: 14px;
    padding: 8px 0;
  }
}
.p-works__process-label--navy {
  background-color: rgba(22, 71, 143, 0.85);
}
.p-works__process-label--red {
  background-color: rgba(160, 40, 40, 0.85);
}
.p-works__process-label--brown {
  background-color: rgba(122, 101, 48, 0.85);
}
.p-works__process-label--yellow {
  background-color: rgba(222, 166, 78, 0.85);
}
.p-works__description {
  max-width: 780px;
  margin: 0;
  text-align: left;
  font-size: 21px;
  font-weight: 700;
  line-height: 2.2;
  color: #263051;
}
.p-works__description p + p {
  margin-top: 0;
}
@media (max-width: 767px) {
  .p-works__description {
    font-size: 15px;
    margin-bottom: 32px;
  }
}
.p-works__cta {
  flex-shrink: 0;
  text-align: center;
}
.p-works__cta .c-btn {
  position: relative;
  z-index: 3;
}
@media (max-width: 767px) {
  .p-works__cta {
    text-align: center;
    padding-right: 0;
  }
}
.p-works__mascot {
  width: 120px;
  margin: 0 auto;
  pointer-events: none;
}
@media (max-width: 767px) {
  .p-works__mascot {
    width: 70px;
  }
}
.p-works__mascot img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes works-deco-enter-circle5 {
  0% {
    opacity: 0;
    transform: translate(-80px, 30px) scale(0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}
@keyframes works-deco-enter-circle1 {
  0% {
    opacity: 0;
    transform: translate(80px, -30px) scale(0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}
.p-values-curve-top {
  position: relative;
  z-index: 1;
  height: 240px;
  margin-top: 0;
  width: 100%;
  overflow: hidden;
}
.p-values-curve-top::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  background-color: #f6f4ee;
  border-radius: 50% 50% 0 0;
}
@media (max-width: 767px) {
  .p-values-curve-top {
    height: 90px;
    margin-top: 0;
  }
}

.p-values {
  background-color: #f6f4ee;
  padding-top: 0;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-values {
    padding-top: 0;
    padding-bottom: 48px;
  }
}
.p-values__inner {
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.p-values__header {
  max-width: 1280px;
  margin: 0 auto 60px;
}
@media (max-width: 767px) {
  .p-values__header {
    margin-bottom: 32px;
  }
}
.p-values__intro {
  max-width: 1280px;
  margin: 0 auto 90px;
  font-size: 21px;
  font-weight: 700;
  line-height: 2;
  color: #263051;
}
@media (max-width: 767px) {
  .p-values__intro {
    font-size: 15px;
    margin-bottom: 28px;
  }
}
.p-values__slider {
  position: relative;
  z-index: 1;
}
.p-values__slider .slick-list {
  overflow: visible;
  touch-action: pan-y;
}
.p-values__slider .slick-slide {
  margin: 0 15px;
  outline: none;
  transition: transform 0.4s ease;
  transform: translateY(30px);
}
.p-values__slider .slick-slide.slick-center {
  transform: translateY(0);
}
.p-values__slider .slick-slide > div {
  outline: none;
}
.p-values__slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #16478f;
  border: none;
  z-index: 3;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  font-size: 0;
  padding: 0;
}
.p-values__slider .slick-arrow:hover {
  opacity: 0.8;
}
.p-values__slider .slick-arrow::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2.5px solid #ffffff;
  border-right: 2.5px solid #ffffff;
}
@media (max-width: 767px) {
  .p-values__slider .slick-arrow {
    width: 36px;
    height: 36px;
  }
  .p-values__slider .slick-arrow::before {
    width: 10px;
    height: 10px;
  }
}
.p-values__slider .slick-prev {
  left: calc(50% - 372px);
}
.p-values__slider .slick-prev::before {
  transform: rotate(-135deg);
  margin-left: 3px;
}
@media (max-width: 767px) {
  .p-values__slider .slick-prev {
    left: calc(50% - 172px);
  }
}
.p-values__slider .slick-next {
  right: calc(50% - 372px);
}
.p-values__slider .slick-next::before {
  transform: rotate(45deg);
  margin-right: 3px;
}
@media (max-width: 767px) {
  .p-values__slider .slick-next {
    right: calc(50% - 172px);
  }
}
.p-values__card {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  width: 700px;
}
@media (max-width: 767px) {
  .p-values__card {
    width: 300px;
  }
}
.p-values__card-header {
  padding: 20px 30px 0;
  text-align: center;
}
@media (max-width: 767px) {
  .p-values__card-header {
    padding: 16px 16px 0;
  }
}
.p-values__card-number {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #263051;
  display: block;
  margin-bottom: 24px;
  text-align: left;
}
@media (max-width: 767px) {
  .p-values__card-number {
    font-size: 22px;
    margin-bottom: 16px;
  }
}
.p-values__card-tagline {
  font-size: 14px;
  font-weight: 700;
  color: #263051;
  line-height: 1.8;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .p-values__card-tagline {
    font-size: 12px;
  }
}
.p-values__card-title {
  font-size: 26px;
  font-weight: 700;
  color: #16478f;
  line-height: 1.5;
  display: inline;
  background-image: linear-gradient(#F0D7B0, #F0D7B0);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 8px;
  padding-bottom: 2px;
}
@media (max-width: 767px) {
  .p-values__card-title {
    font-size: 20px;
  }
}
.p-values__card-img {
  text-align: center;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .p-values__card-img {
    padding-bottom: 16px;
  }
}
.p-values__card-img img {
  width: 350px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .p-values__card-img img {
    width: 200px;
  }
}
.p-values__cta {
  text-align: center;
  margin-top: 90px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .p-values__cta {
    margin-top: 40px;
  }
}

.p-culture-curve-top {
  position: relative;
  z-index: 1;
  height: 240px;
  margin-top: 0;
  width: 100%;
  overflow: hidden;
  background-color: #f6f4ee;
}
.p-culture-curve-top::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 50% 50% 0 0;
}
@media (max-width: 767px) {
  .p-culture-curve-top {
    height: 90px;
    margin-top: 0;
  }
}

.p-culture {
  background-color: #ffffff;
  padding: 0 0 160px;
}
@media (max-width: 767px) {
  .p-culture {
    padding: 0 0 56px;
  }
}
.p-culture__header {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .p-culture__header {
    margin-bottom: 32px;
  }
}
.p-culture__title {
  font-size: 28px;
  font-weight: 700;
  color: #16478f;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .p-culture__title {
    font-size: 22px;
    margin-bottom: 16px;
  }
}
.p-culture__title-icon {
  color: #dea64e;
  font-size: 14px;
  margin-right: 8px;
  flex-shrink: 0;
  line-height: 1;
}
.p-culture__intro {
  margin-bottom: 60px;
  font-size: 16px;
  font-weight: 700;
  color: #263051;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .p-culture__intro {
    font-size: 14px;
    margin-bottom: 24px;
  }
}
.p-culture__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
@media (max-width: 767px) {
  .p-culture__cards {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 300px;
    margin: 0 auto;
  }
}
.p-culture__card {
  display: block;
  transition: transform 0.3s ease;
}
.p-culture__card:hover {
  transform: translateY(-3px);
}
.p-culture__card-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
  aspect-ratio: 3/2;
  background-color: #16478f;
}
@media (max-width: 767px) {
  .p-culture__card-img {
    border-radius: 12px;
    margin-bottom: 16px;
  }
}
.p-culture__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-culture__card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
.p-culture__card-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #16478f;
}
.p-culture__card:hover .p-culture__card-play {
  background-color: #ffffff;
}
.p-culture__card-caption {
  font-size: 14px;
  font-weight: 700;
  color: #263051;
  line-height: 1.6;
}

.c-youtube-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.c-youtube-modal.is-active {
  display: flex;
}
.c-youtube-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
.c-youtube-modal__content {
  position: relative;
  width: 90%;
  max-width: 900px;
  z-index: 1;
}
.c-youtube-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  transition: opacity 0.3s ease;
}
.c-youtube-modal__close:hover {
  opacity: 0.7;
}
.c-youtube-modal__video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.c-youtube-modal__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.p-culture__empty {
  grid-column: 1/-1;
  background-color: #f4f7fa;
  border-radius: 12px;
  padding: 60px 20px;
  text-align: center;
  font-size: 16px;
  color: #263051;
}

.p-culture__cta,
.p-culture__more {
  margin-top: 60px;
  text-align: center;
}
@media (max-width: 767px) {
  .p-culture__cta,
.p-culture__more {
    margin-top: 40px;
  }
}

.p-page-hero {
  position: relative;
  padding-bottom: 60px;
}
.p-page-hero--beige {
  background-color: #f6f4ee;
}
@media (max-width: 767px) {
  .p-page-hero {
    padding-bottom: 24px;
  }
}
.p-page-hero__image {
  width: 100%;
  height: 550px;
  margin-top: 107px;
  overflow: hidden;
  background-color: #f6f6f6;
}
@media (max-width: 767px) {
  .p-page-hero__image {
    margin-top: 74px;
    height: 200px;
  }
}
.p-page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-page-hero__curve {
  position: relative;
  height: 240px;
  margin-top: -240px;
  overflow: hidden;
}
.p-page-hero__curve::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 50% 50% 0 0;
}
.p-page-hero__curve--beige::before {
  background-color: #f6f4ee;
}
@media (max-width: 767px) {
  .p-page-hero__curve {
    height: 90px;
    margin-top: -90px;
  }
}
.p-page-hero__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .p-page-hero__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.p-page-hero__label {
  margin-bottom: 8px;
}
.p-page-hero__tabs {
  display: flex;
  background-color: #f6f4ee;
  border-radius: 10px;
  padding: 8px 16px;
  gap: 0;
}
@media (max-width: 1024px) and (min-width: 769px) {
  .p-page-hero__tabs {
    width: 60%;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .p-page-hero__tabs {
    width: 100%;
    flex-wrap: wrap;
  }
}
.p-page-hero__tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 20px;
  font-size: 15px;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.p-page-hero__tab::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url("../images/common/arr_under.svg") no-repeat center/contain;
  flex-shrink: 0;
}
.p-page-hero__tab:hover {
  color: #16478f;
}
@media (max-width: 767px) {
  .p-page-hero__tab {
    font-size: 13px;
    padding: 6px 12px;
    white-space: normal;
  }
}

.p-about-greeting {
  position: relative;
  padding: 80px 0 120px;
}
@media (max-width: 767px) {
  .p-about-greeting {
    padding: 40px 0 60px;
  }
}
.p-about-greeting__deco--dot1, .p-about-greeting__deco--dot2, .p-about-greeting__deco--dot3 {
  opacity: 0;
  transform: scale(0);
}
.p-about-greeting__deco--dot1 img, .p-about-greeting__deco--dot2 img, .p-about-greeting__deco--dot3 img {
  width: 100%;
  height: 100%;
  display: block;
}
.p-about-greeting__deco--dot1 {
  position: absolute;
  width: 171px;
  height: 171px;
  top: 5%;
  right: 4%;
  z-index: -1;
}
.p-about-greeting__deco--dot1.is-inview {
  animation: about-deco-enter-dot1 0.8s ease-out forwards;
}
.p-about-greeting__deco--dot1.is-inview img {
  animation: float-deco 4s ease-in-out 0.8s infinite;
}
@media (max-width: 767px) {
  .p-about-greeting__deco--dot1 {
    width: 50px;
    height: 50px;
    top: 3%;
    right: 3%;
  }
}
.p-about-greeting__deco--dot2 {
  position: absolute;
  width: 115px;
  height: 115px;
  bottom: 10%;
  left: -58px;
  z-index: -1;
}
.p-about-greeting__deco--dot2.is-inview {
  animation: about-deco-enter-dot2 0.8s ease-out 0.2s forwards;
}
.p-about-greeting__deco--dot2.is-inview img {
  animation: float-deco 5s ease-in-out 1s infinite;
}
@media (max-width: 767px) {
  .p-about-greeting__deco--dot2 {
    width: 40px;
    height: 40px;
    bottom: 8%;
    left: -10px;
  }
}
.p-about-greeting__deco--dot3 {
  position: absolute;
  width: 82px;
  height: 82px;
  top: 60%;
  right: -41px;
  z-index: -1;
}
.p-about-greeting__deco--dot3.is-inview {
  animation: about-deco-enter-dot3 0.8s ease-out 0.4s forwards;
}
.p-about-greeting__deco--dot3.is-inview img {
  animation: float-deco 3.5s ease-in-out 1.2s infinite;
}
@media (max-width: 767px) {
  .p-about-greeting__deco--dot3 {
    width: 30px;
    height: 30px;
    top: 55%;
    right: -5px;
  }
}
.p-about-greeting__inner {
  display: flex;
  gap: 90px;
  align-items: stretch;
}
@media (max-width: 1024px) and (min-width: 769px) {
  .p-about-greeting__inner {
    gap: 60px;
  }
}
@media (max-width: 767px) {
  .p-about-greeting__inner {
    flex-direction: column;
    gap: 32px;
  }
}
.p-about-greeting__photo {
  flex-shrink: 0;
  width: calc(50% - 45px);
  border-radius: 15px;
  overflow: hidden;
}
@media (max-width: 1024px) and (min-width: 769px) {
  .p-about-greeting__photo {
    width: calc(50% - 30px);
  }
}
@media (max-width: 767px) {
  .p-about-greeting__photo {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
  }
}
.p-about-greeting__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}
.p-about-greeting__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .p-about-greeting__header {
    margin-bottom: 20px;
  }
}
.p-about-greeting__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #16478f;
  flex-shrink: 0;
}
.p-about-greeting__title {
  font-size: 28px;
  font-weight: 800;
  color: #16478f;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .p-about-greeting__title {
    font-size: 22px;
  }
}
.p-about-greeting__text p {
  font-size: 16px;
  font-weight: 600;
  color: #263051;
  line-height: 2.1;
  letter-spacing: 0.075em;
  margin-bottom: 16px;
}
.p-about-greeting__text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .p-about-greeting__text p {
    font-size: 14px;
  }
}
.p-about-greeting__name {
  text-align: right;
  margin-top: 32px;
  font-size: 16px;
  font-weight: 800;
  color: #263051;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .p-about-greeting__name {
    margin-top: 24px;
    font-size: 14px;
  }
}

.p-about-overview-curve {
  position: relative;
  z-index: 1;
  height: 240px;
  width: 100%;
  overflow: hidden;
}
.p-about-overview-curve::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  background-color: #16478f;
  border-radius: 50% 50% 0 0;
}
@media (max-width: 767px) {
  .p-about-overview-curve {
    height: 90px;
  }
}

.p-about-overview {
  position: relative;
  background-color: #16478f;
  padding-top: 0;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .p-about-overview {
    padding-bottom: 60px;
  }
}
.p-about-overview__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 40px;
}
@media (max-width: 767px) {
  .p-about-overview__header {
    padding: 0 20px 24px;
  }
}
.p-about-overview__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #ffffff;
  flex-shrink: 0;
}
.p-about-overview__title {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .p-about-overview__title {
    font-size: 22px;
  }
}
.p-about-overview__wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .p-about-overview__wrap {
    padding: 0 20px;
  }
}
.p-about-overview__card {
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}
@media (max-width: 767px) {
  .p-about-overview__card {
    padding: 24px 16px;
    border-radius: 12px;
  }
}
.p-about-overview__inner {
  max-width: 100%;
  padding: 0;
}
.p-about-overview__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .p-about-overview__table {
    margin-bottom: 32px;
  }
}
.p-about-overview__table tr {
  border-bottom: 2px solid #16478f;
}
.p-about-overview__table tr:last-child {
  border-bottom: none;
}
.p-about-overview__table th {
  font-size: 16px;
  font-weight: 800;
  color: #263051;
  letter-spacing: 0.1em;
  text-align: left;
  padding: 20px 24px;
  width: 160px;
  vertical-align: top;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .p-about-overview__table th {
    display: block;
    width: 100%;
    padding: 16px 0 4px;
    font-size: 14px;
  }
}
.p-about-overview__table td {
  font-size: 16px;
  font-weight: 800;
  color: #263051;
  letter-spacing: 0.1em;
  padding: 20px 24px;
  line-height: 2;
}
.p-about-overview__table td a {
  color: #16478f;
  text-decoration: underline;
}
.p-about-overview__table td a:hover {
  text-decoration: none;
}
@media (max-width: 767px) {
  .p-about-overview__table td {
    display: block;
    padding: 4px 0 16px;
    font-size: 14px;
  }
}
.p-about-overview__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 767px) {
  .p-about-overview__gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.p-about-overview__gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  object-fit: cover;
  aspect-ratio: 309/207;
  background-color: #f6f6f6;
}
@media (max-width: 767px) {
  .p-about-overview__gallery-item img {
    border-radius: 8px;
  }
}
.p-about-overview__gallery-caption {
  font-size: 14px;
  font-weight: 800;
  color: #263051;
  letter-spacing: 0.1em;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .p-about-overview__gallery-caption {
    font-size: 12px;
    margin-top: 4px;
  }
}

.p-about-history-curve {
  position: relative;
  z-index: 1;
  height: 240px;
  width: 100%;
  overflow: hidden;
  background-color: #16478f;
}
.p-about-history-curve::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 50% 50% 0 0;
}
@media (max-width: 767px) {
  .p-about-history-curve {
    height: 90px;
  }
}

.p-about-history {
  padding: 0 0 120px;
}
@media (max-width: 767px) {
  .p-about-history {
    padding: 0 0 60px;
  }
}
.p-about-history__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .p-about-history__header {
    margin-bottom: 32px;
  }
}
.p-about-history__header-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #16478f;
  flex-shrink: 0;
}
.p-about-history__title {
  font-size: 28px;
  font-weight: 800;
  color: #16478f;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .p-about-history__title {
    font-size: 22px;
  }
}
.p-about-history__timeline {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 767px) {
  .p-about-history__timeline {
    padding: 0;
  }
}
.p-about-history__item {
  position: relative;
  padding-bottom: 60px;
}
.p-about-history__item::before {
  content: "";
  position: absolute;
  left: calc(140px + 24px + 20px);
  top: 20px;
  bottom: 0;
  width: 2px;
  background-color: #16478f;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .p-about-history__item::before {
    left: calc(56px + 10px + 14px);
    top: 14px;
  }
}
.p-about-history__item:last-child {
  padding-bottom: 0;
}
.p-about-history__item:last-child::before {
  display: none;
}
@media (max-width: 767px) {
  .p-about-history__item {
    padding-bottom: 40px;
  }
}
.p-about-history__row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .p-about-history__row {
    gap: 10px;
  }
}
.p-about-history__year {
  width: 140px;
  flex-shrink: 0;
  text-align: right;
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #16478f;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media (max-width: 767px) {
  .p-about-history__year {
    width: 56px;
    font-size: 22px;
  }
}
.p-about-history__marker {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #16478f;
  background-color: #ffffff;
  flex-shrink: 0;
}
.p-about-history__marker::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #16478f;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .p-about-history__marker {
    width: 28px;
    height: 28px;
  }
  .p-about-history__marker::after {
    width: 14px;
    height: 14px;
  }
}
.p-about-history__item-title {
  font-size: 21px;
  font-weight: 800;
  color: #16478f;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .p-about-history__item-title {
    font-size: 16px;
  }
}
.p-about-history__body {
  padding-left: calc(140px + 40px + 24px * 2);
}
@media (max-width: 767px) {
  .p-about-history__body {
    padding-left: calc(56px + 28px + 10px * 2);
  }
}
.p-about-history__body--with-image {
  display: flex;
  gap: 40px;
}
@media (max-width: 1024px) {
  .p-about-history__body--with-image {
    flex-direction: column;
    gap: 16px;
  }
}
.p-about-history__item-text {
  font-size: 16px;
  font-weight: 600;
  color: #263051;
  letter-spacing: 0.075em;
  line-height: 2.1;
  flex: 1;
}
@media (max-width: 767px) {
  .p-about-history__item-text {
    font-size: 14px;
    line-height: 1.8;
  }
}
.p-about-history__image {
  flex-shrink: 0;
  width: 373px;
  border-radius: 15px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .p-about-history__image {
    width: 100%;
    border-radius: 10px;
  }
}
.p-about-history__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 373/253;
  background-color: #f6f6f6;
}

@keyframes about-deco-enter-dot1 {
  0% {
    opacity: 0;
    transform: translate(-60px, 30px) scale(0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}
@keyframes about-deco-enter-dot2 {
  0% {
    opacity: 0;
    transform: translate(80px, -30px) scale(0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}
@keyframes about-deco-enter-dot3 {
  0% {
    opacity: 0;
    transform: translate(-60px, -20px) scale(0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}
.p-works-body {
  background-color: #f6f4ee;
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .p-works-body {
    padding-bottom: 60px;
  }
}

.p-works-body-curve {
  position: relative;
  z-index: 1;
  height: 240px;
  width: 100%;
  overflow: hidden;
  background-color: #f6f4ee;
}
.p-works-body-curve::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 50% 50% 0 0;
}
@media (max-width: 767px) {
  .p-works-body-curve {
    height: 90px;
  }
}

.p-works-intro {
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .p-works-intro {
    padding-bottom: 40px;
  }
}
.p-works-intro__label {
  margin-bottom: 8px;
}
.p-works-intro__title {
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .p-works-intro__title {
    margin-bottom: 16px;
  }
}
.p-works-intro__text {
  font-size: 16px;
  font-weight: 600;
  color: #263051;
  line-height: 2.1;
  letter-spacing: 0.075em;
}
@media (max-width: 767px) {
  .p-works-intro__text {
    font-size: 14px;
    line-height: 1.8;
  }
}

.p-works-process__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 767px) {
  .p-works-process__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 300px;
    margin: 0 auto;
  }
}
.p-works-process__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 50px 30px 30px;
  overflow: visible;
}
@media (max-width: 767px) {
  .p-works-process__card {
    border-radius: 12px;
    padding: 32px 20px 28px;
  }
}
.p-works-process__card:nth-child(1)::after, .p-works-process__card:nth-child(2)::after, .p-works-process__card:nth-child(4)::after, .p-works-process__card:nth-child(5)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 40px;
  height: 0;
  border-top: 2px dashed #16478F;
  transform: translateY(-50%);
  pointer-events: none;
}
@media (max-width: 767px) {
  .p-works-process__card:nth-child(1)::after, .p-works-process__card:nth-child(2)::after, .p-works-process__card:nth-child(4)::after, .p-works-process__card:nth-child(5)::after {
    display: none;
  }
}
.p-works-process__card:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 100vw;
  height: 0;
  border-top: 2px dashed #16478F;
  transform: translateY(-50%);
  pointer-events: none;
}
@media (max-width: 767px) {
  .p-works-process__card:nth-child(3)::after {
    display: none;
  }
}
.p-works-process__card:nth-child(4)::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  width: 100vw;
  height: 0;
  border-top: 2px dashed #16478F;
  transform: translateY(-50%);
  pointer-events: none;
}
@media (max-width: 767px) {
  .p-works-process__card:nth-child(4)::before {
    display: none;
  }
}
.p-works-process__card-badge {
  position: absolute;
  top: -10px;
  left: -5px;
  background-color: #e9edf3;
  padding: 8px 20px;
  font-size: 21px;
  font-weight: 800;
  color: #16478f;
  letter-spacing: 0.1em;
  z-index: 1;
}
@media (max-width: 767px) {
  .p-works-process__card-badge {
    font-size: 15px;
    padding: 6px 14px;
    top: -8px;
    left: -3px;
  }
}
.p-works-process__card-number {
  position: absolute;
  top: 15px;
  right: 15px;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #16478f;
  line-height: 1;
}
@media (max-width: 767px) {
  .p-works-process__card-number {
    top: 20px;
    right: 20px;
    font-size: 14px;
  }
}
.p-works-process__card-icon {
  width: 105px;
  height: 105px;
  flex-shrink: 0;
  margin-bottom: 28px;
}
.p-works-process__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 767px) {
  .p-works-process__card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
  }
}
.p-works-process__card-text {
  font-size: 14px;
  font-weight: 600;
  color: #263051;
  line-height: 2;
  letter-spacing: 0.075em;
  margin: 0;
  text-align: left;
}
@media (max-width: 767px) {
  .p-works-process__card-text {
    font-size: 13px;
    line-height: 1.7;
  }
}

.p-works-features {
  overflow: hidden;
}
.p-works-features__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .p-works-features__header {
    margin-bottom: 32px;
  }
}
.p-works-features__header-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #16478f;
  flex-shrink: 0;
}
.p-works-features__title {
  font-size: 28px;
  font-weight: 800;
  color: #16478f;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .p-works-features__title {
    font-size: 22px;
  }
}
.p-works-features__row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 90px;
}
.p-works-features__row:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .p-works-features__row {
    flex-direction: column;
    margin-bottom: 48px;
  }
}
.p-works-features__media--left {
  width: 47%;
  flex-shrink: 0;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-works-features__media--left {
    width: calc(100% - 20px);
    border-radius: 0 10px 10px 0;
  }
}
.p-works-features__media--right {
  width: 50.4%;
  flex-shrink: 0;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-works-features__media--right {
    width: calc(100% - 20px);
    margin-left: auto;
    border-radius: 10px 0 0 10px;
    order: -1;
  }
}
.p-works-features__photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  aspect-ratio: 638/440;
  background-color: #f6f4ee;
}
.p-works-features__photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: #f6f6f6;
}
.p-works-features__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  background-color: #f6f6f6;
}
.p-works-features__image--wide img {
  aspect-ratio: 688/440;
}
.p-works-features__image--tall img {
  aspect-ratio: 638/440;
}
.p-works-features__text {
  flex: 1;
  padding: 84px 130px 0 90px;
}
@media (max-width: 1024px) and (min-width: 769px) {
  .p-works-features__text {
    padding: 42px 65px 0 45px;
  }
}
@media (max-width: 767px) {
  .p-works-features__text {
    padding: 24px 20px 0;
  }
}
.p-works-features__text--left {
  padding: 84px 90px 0 130px;
}
@media (max-width: 1024px) and (min-width: 769px) {
  .p-works-features__text--left {
    padding: 42px 45px 0 65px;
  }
}
@media (max-width: 767px) {
  .p-works-features__text--left {
    padding: 24px 20px 0;
  }
}
.p-works-features__item-title {
  font-size: 21px;
  font-weight: 800;
  color: #16478f;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .p-works-features__item-title {
    font-size: 17px;
    margin-bottom: 14px;
  }
}
.p-works-features__item-text {
  font-size: 16px;
  font-weight: 600;
  color: #263051;
  line-height: 2.1;
  letter-spacing: 0.075em;
}
@media (max-width: 767px) {
  .p-works-features__item-text {
    font-size: 14px;
    line-height: 1.8;
  }
}
.p-works-features__bottom {
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .p-works-features__bottom {
    padding-bottom: 60px;
  }
}

.c-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 124px;
  height: 36px;
  border-radius: 18px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.075em;
}
.c-badge--navy {
  background-color: #18468f;
  color: #ffffff;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .c-badge--navy {
    margin-bottom: 40px;
  }
}
.c-badge--burgundy {
  background-color: #9a1b2e;
  color: #ffffff;
}
.c-badge--gold-outline {
  background-color: #ffffff;
  color: #dea64e;
}

.p-important-vision {
  position: relative;
  padding: 60px 0 100px;
}
@media (max-width: 767px) {
  .p-important-vision {
    padding: 40px 0 60px;
  }
}
.p-important-vision__deco--dot1, .p-important-vision__deco--dot2, .p-important-vision__deco--dot3 {
  opacity: 0;
  transform: scale(0);
}
.p-important-vision__deco--dot1 img, .p-important-vision__deco--dot2 img, .p-important-vision__deco--dot3 img {
  width: 100%;
  height: 100%;
  display: block;
}
.p-important-vision__deco--dot1 {
  position: absolute;
  width: 140px;
  height: 140px;
  top: 8%;
  left: 12%;
  z-index: -1;
}
.p-important-vision__deco--dot1.is-inview {
  animation: vision-deco-enter-dot1 0.8s ease-out forwards;
}
.p-important-vision__deco--dot1.is-inview img {
  animation: float-deco 4s ease-in-out 0.8s infinite;
}
@media (max-width: 767px) {
  .p-important-vision__deco--dot1 {
    width: 50px;
    height: 50px;
    top: 5%;
    left: 5%;
  }
}
.p-important-vision__deco--dot2 {
  position: absolute;
  width: 100px;
  height: 100px;
  bottom: 20%;
  right: 9%;
  z-index: -1;
}
.p-important-vision__deco--dot2.is-inview {
  animation: vision-deco-enter-dot2 0.8s ease-out 0.2s forwards;
}
.p-important-vision__deco--dot2.is-inview img {
  animation: float-deco 5s ease-in-out 1s infinite;
}
@media (max-width: 767px) {
  .p-important-vision__deco--dot2 {
    width: 40px;
    height: 40px;
    bottom: 15%;
    right: 5%;
  }
}
.p-important-vision__deco--dot3 {
  position: absolute;
  width: 82px;
  height: 82px;
  bottom: -120px;
  left: 12%;
  z-index: -1;
}
.p-important-vision__deco--dot3.is-inview {
  animation: vision-deco-enter-dot3 0.8s ease-out 0.4s forwards;
}
.p-important-vision__deco--dot3.is-inview img {
  animation: float-deco 3.5s ease-in-out 1.2s infinite;
}
@media (max-width: 767px) {
  .p-important-vision__deco--dot3 {
    width: 30px;
    height: 30px;
    bottom: -40px;
    left: 8%;
  }
}
.p-important-vision__inner {
  text-align: center;
}
.p-important-vision__subtitle {
  font-size: 21px;
  font-weight: 800;
  color: #263051;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 767px) {
  .p-important-vision__subtitle {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
.p-important-vision__heading {
  position: relative;
  margin: 10px auto 20px;
  padding: 0 0 30px;
  font-size: 60px;
  font-weight: 800;
  color: #263051;
  letter-spacing: 0.1em;
  line-height: 1.5;
  background-image: url("../images/important/bg.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%;
}
@media (max-width: 767px) {
  .p-important-vision__heading {
    margin: 0 auto 6px;
    padding: 0 0 20px;
    font-size: 28px;
    background-size: auto 100%;
  }
}
.p-important-vision__box {
  max-width: 1107px;
  margin: 0 auto;
  text-align: center;
}
.p-important-vision__text {
  font-size: 16px;
  font-weight: 600;
  color: #263051;
  letter-spacing: 0.075em;
  line-height: 2.5;
}
@media (max-width: 767px) {
  .p-important-vision__text {
    font-size: 14px;
    line-height: 2.2;
    text-align: left;
  }
  .p-important-vision__text br {
    display: none;
  }
}

.p-important-mission {
  padding: 0;
}
@media (max-width: 767px) {
  .p-important-mission {
    padding: 0;
  }
}
.p-important-mission__inner {
  text-align: center;
}
.p-important-mission__box {
  max-width: 1107px;
  margin: 0 auto;
  background-color: #f6f4ee;
  border-radius: 20px;
  padding: 80px 60px 90px;
  margin-top: -18px;
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  .p-important-mission__box {
    padding: 60px 20px 30px;
    margin-top: -18px;
    margin-bottom: 60px;
    border-radius: 12px;
  }
}
.p-important-mission__subtitle {
  font-size: 21px;
  font-weight: 800;
  color: #9a1b2e;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 767px) {
  .p-important-mission__subtitle {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
.p-important-mission__title {
  font-size: 48px;
  font-weight: 800;
  color: #9a1b2e;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .p-important-mission__title {
    font-size: 28px;
    margin-bottom: 24px;
  }
}
.p-important-mission__text {
  font-size: 16px;
  font-weight: 600;
  color: #263051;
  letter-spacing: 0.075em;
  line-height: 2.5;
  text-align: left;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .p-important-mission__text {
    font-size: 14px;
    line-height: 2.2;
    margin-bottom: 24px;
  }
}
.p-important-mission__gallery {
  display: flex;
  justify-content: center;
  gap: 29px;
}
@media (max-width: 767px) {
  .p-important-mission__gallery {
    flex-wrap: wrap;
    gap: 12px;
  }
}
.p-important-mission__gallery-item {
  flex: 1;
  max-width: 225px;
  aspect-ratio: 225/314;
  overflow: hidden;
  border-radius: 20px;
  background-color: #f6f6f6;
}
@media (max-width: 767px) {
  .p-important-mission__gallery-item {
    flex: none;
    width: calc(50% - 6px);
    height: 200px;
    aspect-ratio: auto;
    border-radius: 12px;
  }
}
.p-important-mission__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-important-value-curve {
  position: relative;
  z-index: 1;
  height: 200px;
  width: 100%;
  overflow: hidden;
}
.p-important-value-curve::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  background-color: #dea64e;
  border-radius: 50% 50% 0 0;
}
@media (max-width: 767px) {
  .p-important-value-curve {
    height: 80px;
  }
}

.p-important-value {
  background-color: #dea64e;
  padding: 0;
}
@media (max-width: 767px) {
  .p-important-value {
    padding: 0;
  }
}
.p-important-value__header {
  text-align: center;
  padding-top: 0;
  padding-bottom: 90px;
}
@media (max-width: 767px) {
  .p-important-value__header {
    padding-top: 0;
    padding-bottom: 40px;
  }
}
.p-important-value__title {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .p-important-value__title {
    font-size: 28px;
    margin-top: 20px;
  }
}
.p-important-value__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .p-important-value__inner {
    gap: 16px;
    padding-bottom: 60px;
  }
}
.p-important-value__card {
  display: flex;
  width: 1107px;
  max-width: 100%;
  min-height: 281px;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: visible;
}
@media (max-width: 767px) {
  .p-important-value__card {
    flex-direction: column;
    min-height: auto;
    border-radius: 12px;
    overflow: hidden;
    padding: 40px 20px;
  }
}
.p-important-value__card-image {
  position: relative;
  width: 191px;
  height: 191px;
  flex-shrink: 0;
  margin: 50px 0 0 50px;
  background-color: #f6f6f6;
  border-radius: 10px;
  overflow: visible;
  align-self: flex-start;
}
@media (max-width: 767px) {
  .p-important-value__card-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    aspect-ratio: 1/1;
    margin: 0 auto;
  }
}
.p-important-value__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
.p-important-value__card-number {
  position: absolute;
  top: -20px;
  left: -20px;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #263051;
}
@media (max-width: 767px) {
  .p-important-value__card-number {
    top: -20px;
    left: -20px;
    font-size: 24px;
  }
}
.p-important-value__card-body {
  flex: 1;
  padding: 50px 46px 30px 50px;
}
@media (max-width: 767px) {
  .p-important-value__card-body {
    padding: 20px 0 0;
  }
}
.p-important-value__card-subtitle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #263051;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.p-important-value__card-subtitle::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #16478f;
  flex-shrink: 0;
}
.p-important-value__card-title-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}
.p-important-value__card-accent {
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: rgba(222, 166, 78, 0.447);
  border-radius: 5px;
}
.p-important-value__card-title {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  color: #263051;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .p-important-value__card-title {
    font-size: 20px;
  }
}
.p-important-value__card-text {
  font-size: 16px;
  font-weight: 600;
  color: #263051;
  letter-spacing: 0.075em;
  line-height: 2.1;
}
@media (max-width: 767px) {
  .p-important-value__card-text {
    font-size: 14px;
    line-height: 1.8;
  }
}

.p-contact-mascots--gold {
  background-color: #dea64e;
  padding-top: 80px;
}

@keyframes vision-deco-enter-dot1 {
  0% {
    opacity: 0;
    transform: translate(80px, 20px) scale(0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}
@keyframes vision-deco-enter-dot2 {
  0% {
    opacity: 0;
    transform: translate(-80px, -20px) scale(0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}
@keyframes vision-deco-enter-dot3 {
  0% {
    opacity: 0;
    transform: translate(70px, 20px) scale(0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}
.p-recruit-profile {
  background-color: #ffffff;
  padding: 80px 0 100px;
}
@media (max-width: 767px) {
  .p-recruit-profile {
    padding: 40px 0 56px;
  }
}
.p-recruit-profile__header {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .p-recruit-profile__header {
    margin-bottom: 24px;
  }
}
.p-recruit-profile__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #16478f;
  margin-right: 8px;
  flex-shrink: 0;
}
.p-recruit-profile__title {
  font-size: 28px;
  font-weight: 800;
  color: #16478f;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .p-recruit-profile__title {
    font-size: 22px;
  }
}
.p-recruit-profile__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
@media (max-width: 767px) {
  .p-recruit-profile__cards {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 300px;
    margin: 0 auto;
  }
}
.p-recruit-profile__card {
  background-color: #f6f4ee;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-recruit-profile__card {
    border-radius: 12px;
  }
}
.p-recruit-profile__card img {
  width: 100%;
  display: block;
  mix-blend-mode: multiply;
  aspect-ratio: 336/240;
  object-fit: cover;
}
.p-recruit-profile__card-text {
  padding: 20px 0 0;
  font-size: 16px;
  font-weight: 600;
  color: #263051;
  letter-spacing: 0.075em;
  line-height: 1.75;
  text-align: center;
}
@media (max-width: 767px) {
  .p-recruit-profile__card-text {
    padding: 12px 0 0;
    font-size: 14px;
  }
}

.p-recruit-system-curve {
  position: relative;
  height: 240px;
  width: 100%;
  overflow: hidden;
  background-color: #ffffff;
}
.p-recruit-system-curve::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  background-color: #f6f4ee;
  border-radius: 50% 50% 0 0;
}
@media (max-width: 767px) {
  .p-recruit-system-curve {
    height: 90px;
  }
}

.p-recruit-system {
  background-color: #f6f4ee;
  padding: 0 0 100px;
}
@media (max-width: 767px) {
  .p-recruit-system {
    padding: 0 0 56px;
  }
}
.p-recruit-system__header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .p-recruit-system__header {
    margin-bottom: 16px;
  }
}
.p-recruit-system__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #16478f;
  margin-right: 8px;
  flex-shrink: 0;
}
.p-recruit-system__title {
  font-size: 28px;
  font-weight: 800;
  color: #16478f;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .p-recruit-system__title {
    font-size: 22px;
  }
}
.p-recruit-system__intro {
  font-size: 16px;
  font-weight: 600;
  color: #263051;
  line-height: 1.8;
  letter-spacing: 0.075em;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .p-recruit-system__intro {
    font-size: 14px;
    margin-bottom: 32px;
  }
}
.p-recruit-system__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}
@media (max-width: 767px) {
  .p-recruit-system__cards {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}
.p-recruit-system__card {
  position: relative;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  overflow: visible;
  width: calc((100% - 100px) / 3);
}
@media (max-width: 767px) {
  .p-recruit-system__card {
    border-radius: 12px;
    padding: 32px 24px;
    width: 100%;
    max-width: 300px;
  }
}
.p-recruit-system__card-number {
  position: absolute;
  top: -0.5em;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #263051;
  line-height: 1;
}
.p-recruit-system__card-title {
  font-size: 21px;
  font-weight: 700;
  color: #263051;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .p-recruit-system__card-title {
    font-size: 18px;
    margin-bottom: 24px;
  }
}
.p-recruit-system__card-title span {
  background: linear-gradient(transparent 50%, rgba(222, 166, 78, 0.447) 50%);
  padding: 0 4px;
}
.p-recruit-system__card-icon {
  margin-bottom: 30px;
}
.p-recruit-system__card-icon img {
  width: auto;
  height: 80px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .p-recruit-system__card-icon {
    margin-bottom: 16px;
  }
  .p-recruit-system__card-icon img {
    height: 64px;
  }
}
.p-recruit-system__card-text {
  font-size: 14px;
  color: #333333;
  line-height: 1.8;
  text-align: left;
}

.p-recruit-stats-curve {
  position: relative;
  height: 240px;
  width: 100%;
  overflow: hidden;
  background-color: #f6f4ee;
}
.p-recruit-stats-curve::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  background-color: #f4f7fa;
  border-radius: 50% 50% 0 0;
}
@media (max-width: 767px) {
  .p-recruit-stats-curve {
    height: 90px;
  }
}

.p-recruit-stats {
  background-color: #f4f7fa;
  padding: 0 0 100px;
}
@media (max-width: 1024px) {
  .p-recruit-stats {
    padding: 0 0 56px;
  }
}
.p-recruit-stats__header {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .p-recruit-stats__header {
    margin-bottom: 24px;
  }
}
.p-recruit-stats__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #16478f;
  margin-right: 8px;
  flex-shrink: 0;
}
.p-recruit-stats__title {
  font-size: 28px;
  font-weight: 800;
  color: #16478f;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  .p-recruit-stats__title {
    font-size: 22px;
  }
}
.p-recruit-stats__row-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .p-recruit-stats__row-top {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }
}
.p-recruit-stats__row-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
@media (max-width: 1024px) {
  .p-recruit-stats__row-bottom {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 300px;
    margin: 0 auto;
  }
}
.p-recruit-stats__row-bottom .p-recruit-stats__card {
  display: flex;
  flex-direction: column;
  min-height: 331px;
}
@media (max-width: 1024px) {
  .p-recruit-stats__row-bottom .p-recruit-stats__card {
    min-height: auto;
  }
}
.p-recruit-stats__row-bottom .p-recruit-stats__card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.p-recruit-stats__row-bottom .p-recruit-stats__card-value {
  justify-content: center;
}
.p-recruit-stats__card {
  position: relative;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: visible;
}
@media (max-width: 1024px) {
  .p-recruit-stats__card {
    border-radius: 12px;
  }
}
.p-recruit-stats__card-label {
  position: absolute;
  top: -10px;
  left: -10px;
  display: inline-block;
  background-color: #e9edf3;
  padding: 10px 16px;
  font-size: 21px;
  font-weight: 800;
  color: #16478f;
  letter-spacing: 0.1em;
  line-height: 1;
  z-index: 1;
}
@media (max-width: 1024px) {
  .p-recruit-stats__card-label {
    font-size: 16px;
    padding: 8px 12px;
    top: -8px;
    left: -8px;
  }
}
.p-recruit-stats__card-body {
  padding: 50px 32px 32px;
}
@media (max-width: 1024px) {
  .p-recruit-stats__card-body {
    padding: 44px 20px 24px;
  }
}
.p-recruit-stats__card-value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}
.p-recruit-stats__card-number {
  font-family: "Poppins", sans-serif;
  font-size: 85px;
  font-weight: 500;
  color: #18468f;
  letter-spacing: 0.05em;
  line-height: 1;
  display: inline-flex;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .p-recruit-stats__card-number {
    font-size: 56px;
  }
}
.p-recruit-stats__card-number .slot-digit {
  display: inline-block;
  height: 1em;
  overflow: hidden;
  position: relative;
}
.p-recruit-stats__card-number .slot-digit__inner {
  display: flex;
  flex-direction: column;
  transition: transform 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.p-recruit-stats__card-number .slot-digit__char {
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-recruit-stats__card-number .slot-dot {
  display: inline-block;
}
.p-recruit-stats__card-unit {
  font-size: 21px;
  font-weight: 800;
  color: #16478f;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  .p-recruit-stats__card-unit {
    font-size: 16px;
  }
}
.p-recruit-stats__card-text {
  font-size: 14px;
  font-weight: 600;
  color: #263051;
  line-height: 1.8;
  letter-spacing: 0.075em;
}
.p-recruit-stats__card-icon img {
  display: block;
}
@media (max-width: 1024px) {
  .p-recruit-stats__card-icon img {
    transform: scale(0.7);
    transform-origin: center;
  }
}
.p-recruit-stats__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.p-recruit-stats__row-bottom .p-recruit-stats__card-icon {
  margin-bottom: auto;
}
.p-recruit-stats__row-bottom .p-recruit-stats__card-icon img {
  margin: 0 auto;
}

.p-culture-curve-top--blue {
  background-color: #f4f7fa;
}

.p-culture-curve-top--blue + .p-culture {
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .p-culture-curve-top--blue + .p-culture {
    padding-bottom: 40px;
  }
}

.p-recruit-entry-fixed {
  position: fixed;
  right: 0;
  top: 127px;
  z-index: 99;
  display: block;
  background-color: #ffffff;
  border: 2px solid #16478f;
  border-right: none;
  border-radius: 15px 0 0 15px;
  padding: 12px 40px 12px 20px;
  animation: slide-in-right 0.5s ease 1s both;
}
.p-recruit-entry-fixed:hover {
  opacity: 0.8;
}
.p-recruit-entry-fixed__content {
  text-align: center;
}
.p-recruit-entry-fixed__img {
  width: 84px;
  height: auto;
  display: inline;
}
.p-recruit-entry-fixed__text {
  font-size: 14px;
  font-weight: 800;
  color: #263051;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.p-recruit-entry-fixed__arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #174286;
}
.p-recruit-entry-fixed__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 3.5px 0 3.5px 5px;
  border-color: transparent transparent transparent #ffffff;
}
@media (max-width: 767px) {
  .p-recruit-entry-fixed {
    top: 127px;
    padding: 10px 34px 10px 16px;
  }
  .p-recruit-entry-fixed .p-recruit-entry-fixed__img {
    width: 68px;
  }
  .p-recruit-entry-fixed .p-recruit-entry-fixed__text {
    font-size: 12px;
  }
  .p-recruit-entry-fixed .p-recruit-entry-fixed__arrow {
    right: 12px;
    width: 12px;
    height: 12px;
  }
  .p-recruit-entry-fixed .p-recruit-entry-fixed__arrow::after {
    border-width: 3px 0 3px 4px;
  }
}

.p-recruit-entry-banner {
  background-color: #ffffff;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .p-recruit-entry-banner {
    display: none;
  }
}
.p-recruit-entry-banner__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #16478f;
  border-radius: 15px;
  overflow: hidden;
  padding: 20px;
  transition: opacity 0.3s ease;
}
.p-recruit-entry-banner__inner:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .p-recruit-entry-banner__inner {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }
}
.p-recruit-entry-banner__img {
  flex-shrink: 0;
}
.p-recruit-entry-banner__img img {
  width: 294px;
  height: 153px;
  object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .p-recruit-entry-banner__img img {
    width: 120px;
    height: auto;
  }
}
.p-recruit-entry-banner__action {
  position: absolute;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 767px) {
  .p-recruit-entry-banner__action {
    position: static;
  }
}
.p-recruit-entry-banner__text {
  font-size: 16px;
  font-weight: 800;
  color: #263051;
  letter-spacing: 0.1em;
}
.p-recruit-entry-banner svg {
  fill: #16478f;
  flex-shrink: 0;
}

@keyframes slide-in-right {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
.p-contact-mascots {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0 50px;
  margin-bottom: -1px;
}
@media (max-width: 767px) {
  .p-contact-mascots {
    padding: 0 20px;
  }
}
.p-contact-mascots__left, .p-contact-mascots__right {
  width: 100px;
}
@media (max-width: 767px) {
  .p-contact-mascots__left, .p-contact-mascots__right {
    width: 60px;
  }
}
.p-contact-mascots__left img, .p-contact-mascots__right img {
  width: 100%;
  height: auto;
  display: block;
}

.p-contact {
  position: relative;
  background-color: #f4f7fa;
  padding-top: 60px;
}
@media (max-width: 767px) {
  .p-contact {
    padding-top: 32px;
  }
}
.p-contact__inner {
  display: flex;
}
@media (max-width: 767px) {
  .p-contact__inner {
    flex-direction: column;
  }
}
.p-contact__photo {
  position: relative;
  width: 50%;
  min-height: 400px;
  max-height: 410px;
  overflow: hidden;
  border-radius: 0 20px 20px 0;
}
@media (max-width: 767px) {
  .p-contact__photo {
    width: 300px;
    min-height: auto;
    max-height: none;
    border-radius: 12px;
    margin: 0 auto;
  }
}
.p-contact__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-contact__photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 71, 143, 0.7);
}
.p-contact__body {
  flex: 1;
  padding: 40px 60px 0;
  background-color: #f4f7fa;
}
@media (max-width: 767px) {
  .p-contact__body {
    padding: 32px 20px 0;
  }
}
.p-contact__label {
  color: #dea64e;
}
.p-contact__title {
  font-size: 48px;
  font-weight: 700;
  color: #263051;
  line-height: 1.2;
  margin: 0 0 40px;
}
@media (max-width: 767px) {
  .p-contact__title {
    font-size: 28px;
  }
}
.p-contact__tel {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 58px;
  font-weight: 800;
  color: #18468f;
  letter-spacing: 0.02em;
  line-height: 1.2;
  transition: opacity 0.3s ease;
}
.p-contact__tel:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .p-contact__tel {
    font-size: 36px;
  }
}
.p-contact__hours {
  font-size: 16px;
  font-weight: 700;
  color: #18468f;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .p-contact__hours {
    font-size: 14px;
  }
}

.l-footer {
  background-color: #f4f7fa;
  padding-top: 70px;
  position: relative;
}
@media (max-width: 767px) {
  .l-footer {
    padding-top: 40px;
  }
}
.l-footer__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px 70px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .l-footer__inner {
    flex-direction: column;
    gap: 32px;
    padding: 0 20px 32px;
  }
}
.l-footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.l-footer__logo img {
  width: 36px;
  height: 36px;
}
.l-footer__company-name {
  font-size: 20px;
  font-weight: 700;
  color: #263051;
}
.l-footer__address {
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  color: #263051;
  line-height: 1.8;
  margin-bottom: 20px;
}
.l-footer__sns {
  display: flex;
  gap: 16px;
}
.l-footer__sns a {
  color: #16478f;
  transition: opacity 0.3s ease;
}
.l-footer__sns a svg {
  width: 32px;
  height: 32px;
}
.l-footer__sns a:hover {
  opacity: 0.6;
}
.l-footer__nav {
  background-color: #ffffff;
  border-radius: 22px;
  height: 44px;
  display: flex;
  align-items: center;
  padding: 0 31px 0 5px;
  gap: 21px;
}
@media (max-width: 1024px) {
  .l-footer__nav {
    display: none;
  }
}
.l-footer__nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #18468f;
  flex-shrink: 0;
}
.l-footer__nav-list {
  display: flex;
  align-items: center;
  gap: 46px;
}
@media (max-width: 767px) {
  .l-footer__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.l-footer__nav-list a {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #333333;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.l-footer__nav-list a:hover {
  color: #16478f;
}
.l-footer__bottom {
  position: relative;
}
.l-footer__copyright {
  position: relative;
  z-index: 3;
  background-color: #16478f;
  padding: 25px 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .l-footer__copyright {
    padding: 16px 12px;
    font-size: 10px;
  }
}
.l-footer__mascot {
  position: absolute;
  bottom: 100%;
  right: 12%;
  width: 80px;
  z-index: 2;
  pointer-events: none;
  margin-bottom: 1px;
}
@media (max-width: 767px) {
  .l-footer__mascot {
    width: 50px;
    right: 16px;
  }
}
.l-footer__mascot img {
  width: 100%;
  height: auto;
  display: block;
}
.l-footer__deco-obj {
  position: absolute;
  width: 750px;
  height: 750px;
  bottom: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
  animation: float-deco 6s ease-in-out 2s infinite;
}
.l-footer__deco-obj img {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 767px) {
  .l-footer__deco-obj {
    display: none;
  }
}
.l-footer__deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(224, 224, 224, 0.35);
  pointer-events: none;
  z-index: 0;
  width: 700px;
  height: 700px;
  top: -100px;
  right: -250px;
}
@media (max-width: 767px) {
  .l-footer__deco-circle {
    display: none;
  }
}

.js-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-fade-in-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.js-fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-fade-in-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.js-pop-up {
  opacity: 0;
  transform: translateY(60px) scale(0.8);
}
.js-pop-up.is-visible {
  opacity: 1;
  animation: pop-up-bounce 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes pop-up-bounce {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.8);
  }
  40% {
    opacity: 1;
    transform: translateY(-15px) scale(1.05) rotate(-3deg);
  }
  60% {
    transform: translateY(5px) scale(0.97) rotate(2deg);
  }
  80% {
    transform: translateY(-3px) scale(1.02) rotate(-1deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
}
.js-stagger .js-stagger-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.js-stagger .js-stagger-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/*# sourceMappingURL=style.css.map */
