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

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

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

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-size: inherit;
  font-weight: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
:root {
  --color-navy: #1d4e7a;
  --color-yellow: #f2c14e;
  --color-charcoal: #404040;
  --color-slate: #7796ad;
  --color-cream: #faf9f5;
  --color-bluebg: #eaf3fb;
  --color-line: #d9d9d9;
  --color-white: #ffffff;
  --radius: 4px;
  --font-en: "DM Sans", "Noto Sans JP", sans-serif;
  --font-jp: "YakuHanJP", "Noto Sans JP", sans-serif;
  --container: 1064px;
  --gutter: clamp(20px, 5vw, 48px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  background-color: var(--color-cream);
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font-jp);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-charcoal);
  background-color: transparent;
  overflow-wrap: break-word;
}

:focus-visible {
  outline: 2px solid var(--color-navy);
  outline-offset: 2px;
}

body.is-menu-open {
  overflow: hidden;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.l-container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.l-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-color: var(--color-cream);
}

.l-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding-inline: var(--gutter);
  background-color: transparent;
}
@media (min-width: 1024px) {
  .l-header {
    height: 90px;
    padding-inline: 48px;
  }
}

.home .l-header {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s var(--ease);
}

.home .l-header.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

@media (max-width: 767px) {
  .l-header {
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s var(--ease);
  }
  .l-header.is-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
    transform: translateY(-100%) !important;
  }
}
.l-header__logo {
  display: block;
  width: 54px;
}
@media (min-width: 1024px) {
  .l-header__logo {
    width: 68px;
  }
}
.l-header__logo svg,
.l-header__logo img {
  width: 100%;
  height: auto;
}

.l-header__toggle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-left: auto;
  padding: 4px;
  transition: transform 0.8s var(--ease);
}
.l-header__toggle span {
  display: block;
  width: 10px;
  height: 10px;
  background-color: var(--color-navy);
  border-radius: 50%;
  transition: transform 0.7s var(--ease), background-color 0.6s var(--ease), opacity 0.5s var(--ease);
}
.l-header__toggle span:nth-child(3) {
  background-color: #9fcbea;
}
.l-header__toggle[aria-expanded=true] {
  transform: rotate(90deg);
}
.l-header__toggle[aria-expanded=true] span:nth-child(2),
.l-header__toggle[aria-expanded=true] span:nth-child(4),
.l-header__toggle[aria-expanded=true] span:nth-child(6),
.l-header__toggle[aria-expanded=true] span:nth-child(8) {
  opacity: 0;
  transform: scale(0);
}
.l-header__toggle[aria-expanded=true] span:nth-child(3) {
  background-color: var(--color-yellow);
}

@media (prefers-reduced-motion: reduce) {
  .l-header__toggle,
  .l-header__toggle span {
    transition-duration: 0.8s !important;
  }
}
.l-footer {
  padding-block: 56px 40px;
}
@media (min-width: 1024px) {
  .l-footer {
    padding-block: 80px 48px;
  }
}

.l-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--color-line);
}
@media (min-width: 1024px) {
  .l-footer__inner {
    gap: 48px;
  }
}

.l-footer__main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .l-footer__main {
    flex-direction: row;
    justify-content: space-between;
  }
}

.l-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 313px;
}

.l-footer__logo {
  width: 88px;
}
@media (min-width: 1024px) {
  .l-footer__logo {
    width: 100px;
  }
}

.l-footer__company {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-style: normal;
  font-size: 0.8125rem;
  line-height: 1.6;
}

.l-footer__nav-group {
  display: flex;
  gap: 48px;
}

.l-footer__nav-label {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  font-family: var(--font-en);
  font-size: 0.875rem;
  color: var(--color-charcoal);
}

.l-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 0.875rem;
  font-weight: 500;
}
.l-footer__nav-list a {
  transition: color 0.2s;
}
.l-footer__nav-list a:hover {
  color: var(--color-navy);
}

.l-footer__sns {
  display: flex;
  gap: 21px;
  align-items: center;
}
.l-footer__sns a {
  display: block;
  opacity: 1;
  transition: opacity 0.2s;
}
.l-footer__sns a:hover {
  opacity: 0.6;
}
.l-footer__sns img {
  height: 18px;
  width: auto;
}

.l-footer__bottom {
  display: flex;
  gap: 24px;
  align-items: center;
  font-family: var(--font-en);
  font-size: 0.75rem;
  color: var(--color-slate);
}

.l-footer__legal {
  display: flex;
  gap: 8px;
}
.l-footer__legal a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.l-footer__legal a:hover {
  text-decoration: none;
}

.l-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding-inline: var(--gutter);
  background-color: rgba(250, 249, 245, 0.3);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.85s var(--ease), visibility 0s linear 0.95s;
}
.l-menu.is-open {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.85s var(--ease), visibility 0s;
}
@media (min-width: 1024px) {
  .l-menu {
    padding-inline: 48px;
  }
}

.l-menu__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: max(2rem, (100svh - 29rem) / 2);
  gap: 56px;
}
@media (min-width: 768px) {
  .l-menu__body {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(40px, 6vw, 88px);
  }
}

.l-menu__label {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  font-family: var(--font-en);
  font-size: 1rem;
  color: var(--color-charcoal);
}
@media (min-width: 768px) {
  .l-menu__label {
    margin-bottom: 48px;
  }
}

.l-menu__nav-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 3rem;
  line-height: 1.25em;
  font-weight: 500;
}
.l-menu__nav-list > li > a {
  position: relative;
  display: grid;
  overflow: hidden;
}

.l-menu__nav-en,
.l-menu__nav-ja {
  grid-area: 1/1;
  width: max-content;
  transition: transform 0.45s var(--ease), opacity 0.4s var(--ease);
}

.l-menu__nav-en {
  font-family: var(--font-en);
}

.l-menu__nav-ja {
  font-size: 2.75rem;
  transform: translateY(110%);
  opacity: 0;
}

.l-menu__nav-list > li > a:hover .l-menu__nav-en {
  transform: translateY(-110%);
  opacity: 0;
}

.l-menu__nav-list > li > a:hover .l-menu__nav-ja {
  transform: translateY(0);
  opacity: 1;
}

.l-menu__sns {
  display: flex;
  gap: 36px;
  align-items: center;
}
.l-menu__sns a {
  transition: opacity 0.2s;
}
.l-menu__sns a:hover {
  opacity: 0.6;
}
.l-menu__sns img {
  height: 22px;
  width: auto;
}

.l-menu__cta {
  position: absolute;
  right: var(--gutter);
  bottom: 40px;
  width: 540px;
  max-width: calc(100% - var(--gutter) * 2);
}
.l-menu__cta.c-button {
  justify-content: flex-end;
}
@media (min-width: 1024px) {
  .l-menu__cta {
    right: 48px;
    bottom: 48px;
  }
}

.l-menu__bottom {
  position: absolute;
  left: var(--gutter);
  bottom: 40px;
  display: flex;
  gap: 24px;
  align-items: center;
  font-family: var(--font-en);
  font-size: 0.75rem;
  color: var(--color-slate);
}
@media (min-width: 1024px) {
  .l-menu__bottom {
    left: 48px;
    bottom: 48px;
  }
}
.l-menu__bottom a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.l-menu__bottom span {
  display: flex;
  gap: 8px;
}

@media (max-width: 767px) {
  .l-menu {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 48px;
  }
  .l-menu__body {
    flex: none;
    padding-top: 96px;
  }
  .l-menu__cta {
    position: static;
    margin-top: 48px;
  }
  .l-menu__bottom {
    position: static;
    margin-top: 32px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .l-menu {
    transition-duration: 0.85s, 0s !important;
  }
  .l-menu__nav-en,
  .l-menu__nav-ja {
    transition-duration: 0.45s !important;
  }
}
.c-section-head {
  display: flex;
  gap: 8px;
  align-items: center;
}

.c-section-head__dot {
  flex: none;
  width: 20px;
  height: 20px;
  background-color: var(--color-yellow);
  border-radius: 50%;
}

.c-section-head__en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: var(--color-navy);
}

.c-more {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--color-navy);
}

.c-more__arrow-wrap {
  position: relative;
  display: inline-block;
  width: 21px;
  height: 16px;
  overflow: hidden;
}

.c-more__arrow {
  position: absolute;
  inset: 0;
  width: 21px;
  height: 16px;
  transition: transform 0.45s var(--ease);
}

.c-more__arrow--clone {
  transform: translateX(-180%);
}

.c-more:hover .c-more__arrow {
  transform: translateX(180%);
}

.c-more:hover .c-more__arrow--clone {
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .c-more__arrow {
    transition-duration: 0.45s !important;
  }
}
.c-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  height: 20px;
  padding-inline: 10px;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--color-slate);
  background-color: var(--color-white);
  border-radius: 2px;
}

.c-button {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 24px 32px;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--color-cream);
  background-color: var(--color-navy);
  background-image: linear-gradient(#9fcbea, #9fcbea);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0% 100%;
  border-radius: var(--radius);
  transition: background-size 0.6s var(--ease), color 0.3s var(--ease);
}
.c-button:hover {
  background-size: 100% 100%;
  color: #1d4e7a;
}

.c-button__arrow-wrap {
  position: relative;
  display: inline-block;
  width: 21px;
  height: 16px;
  overflow: hidden;
}

.c-button__arrow {
  position: absolute;
  inset: 0;
  width: 21px;
  height: 16px;
  transition: transform 0.45s var(--ease);
}

.c-button__arrow--clone {
  transform: translateX(-180%);
}

.c-button:hover .c-button__arrow {
  transform: translateX(180%);
}

.c-button:hover .c-button__arrow--clone {
  transform: translateX(0);
}

.c-button--back .c-button__arrow {
  transform: scaleX(-1);
}
.c-button--back .c-button__arrow--clone {
  transform: scaleX(-1) translateX(-180%);
}
.c-button--back:hover .c-button__arrow {
  transform: scaleX(-1) translateX(180%);
}
.c-button--back:hover .c-button__arrow--clone {
  transform: scaleX(-1) translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .c-button {
    transition-duration: 0.6s, 0.3s !important;
  }
  .c-button__arrow {
    transition-duration: 0.45s !important;
  }
}
.c-breadcrumb {
  font-size: 0.65rem;
  color: var(--color-slate);
}
.c-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.c-breadcrumb li {
  display: flex;
  gap: 8px;
  align-items: center;
}
.c-breadcrumb li:not(:last-child)::after {
  content: "/";
  color: var(--color-line);
}
.c-breadcrumb a:hover {
  color: var(--color-navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.c-breadcrumb [aria-current=page] {
  color: var(--color-charcoal);
}

.c-breadcrumb--footer {
  padding-block: 24px;
}

.p-section {
  padding-block: clamp(64px, 9vw, 110px);
}

.p-section__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.p-hero {
  position: relative;
  overflow: hidden;
  background-color: transparent;
}

.p-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  padding: 104px var(--gutter) 96px;
}
@media (min-width: 1024px) {
  .p-hero__inner {
    padding-block: 0;
    padding-inline: var(--gutter);
  }
}

.p-hero__intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 375px) {
  .p-hero__intro {
    transform: translateY(-4vh);
  }
}
@media (min-width: 1024px) {
  .p-hero__intro {
    flex-direction: row;
    align-items: flex-end;
    gap: clamp(32px, 5vw, 64px);
    transform: translateY(-5vh);
  }
}

.p-hero__logo {
  flex: none;
  width: clamp(140px, 42vw, 600px);
}
.p-hero__logo img {
  width: 100%;
}

.p-hero__lead {
  max-width: clamp(399px, 56vw, 960px);
}
@media (min-width: 1024px) {
  .p-hero__lead {
    flex: 1;
  }
}

.p-hero__lead-en {
  margin-bottom: 16px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(1.5rem, 1.8vw, 2.25rem);
  color: var(--color-navy);
}

.p-hero__lead-jp {
  font-weight: 500;
  font-size: clamp(1rem, 1.2vw, 1.4rem);
  line-height: 1.6;
  color: var(--color-charcoal);
}

.p-hero__nav {
  position: absolute;
  left: var(--gutter);
  bottom: 72px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-weight: 500;
  font-size: 0.9375rem;
  text-align: left;
  color: var(--color-navy);
}
@media (min-width: 1024px) {
  .p-hero__nav {
    bottom: 64px;
    font-size: 1rem;
  }
}
.p-hero__nav > a {
  position: relative;
  display: grid;
  overflow: hidden;
}

.p-hero__nav-en,
.p-hero__nav-ja {
  grid-area: 1/1;
  width: max-content;
  transition: transform 0.45s var(--ease), opacity 0.4s var(--ease);
}

.p-hero__nav-en {
  font-family: var(--font-en);
}

.p-hero__nav-ja {
  font-size: 0.875rem;
  transform: translateY(110%);
  opacity: 0;
}

.p-hero__nav > a:hover .p-hero__nav-en {
  transform: translateY(-110%);
  opacity: 0;
}

.p-hero__nav > a:hover .p-hero__nav-ja {
  transform: translateY(0);
  opacity: 1;
}

.p-hero__ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-inline: var(--gutter);
}
@media (min-width: 768px) {
  .p-hero__ticker {
    left: auto;
    right: 16px;
    bottom: 48px;
    width: min(520px, 50vw);
    padding-inline: 0;
  }
}

.p-hero__ticker-dot {
  position: relative;
  top: 2px;
  flex: none;
  width: 10px;
  height: 10px;
  background-color: var(--color-yellow);
  border-radius: 50%;
  animation: ticker-blink 2.4s ease-in-out infinite;
}

.p-hero__ticker-window {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.p-hero__ticker-track {
  display: inline-flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker-marquee 22s linear infinite;
}

.p-hero__ticker-item {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 0.875rem;
  color: var(--color-charcoal);
  transition: color 0.2s;
}
.p-hero__ticker-item:hover {
  color: var(--color-navy);
}
.p-hero__ticker-item time {
  flex: none;
  font-family: var(--font-en);
  font-weight: 500;
  color: var(--color-slate);
}

@keyframes ticker-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes ticker-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-hero__ticker-track {
    animation-duration: 22s !important;
    animation-iteration-count: infinite !important;
  }
  .p-hero__ticker-dot {
    animation-duration: 2.4s !important;
    animation-iteration-count: infinite !important;
  }
  .p-hero__nav-en,
  .p-hero__nav-ja {
    transition-duration: 0.45s !important;
  }
}
.p-about {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
}

@supports (animation-timeline: view()) {
  .p-about__body {
    animation: sv-reveal linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }
}
@media (prefers-reduced-motion: reduce) {
  @supports (animation-timeline: view()) {
    .p-about__body {
      animation-duration: auto !important;
    }
  }
}
@keyframes sv-reveal {
  from {
    opacity: 0;
    transform: translateY(56px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.p-about__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin-top: clamp(40px, 7vw, 80px);
  text-align: center;
}

.p-about__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  color: var(--color-navy);
}

.p-about__title {
  font-weight: 700;
  font-size: clamp(1.875rem, 6vw, 3.5rem);
  line-height: 1.3;
  letter-spacing: 0.08em;
}

.p-about__title-en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  letter-spacing: 0.08em;
}

.p-about__text {
  max-width: 760px;
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  line-height: 2.4;
  letter-spacing: 0.06em;
}

.p-service__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (min-width: 1024px) {
  .p-service__inner {
    flex-direction: row;
    gap: 80px;
  }
}

.p-service__head {
  position: sticky;
  top: 100px;
  align-self: flex-start;
}
@media (min-width: 1024px) {
  .p-service__head {
    flex: none;
  }
}

.p-service__list {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 72px);
}
@media (min-width: 1024px) {
  .p-service__list {
    width: 608px;
    margin-left: auto;
  }
}

.p-service__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.p-service__item-title {
  font-weight: 700;
  font-size: clamp(1.375rem, 3.5vw, 2rem);
  line-height: 1.4;
  color: var(--color-navy);
}

.p-service__item-text {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  line-height: 1.7;
}

.p-band {
  position: relative;
  background-color: var(--color-bluebg);
}
.p-band::before, .p-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
  height: clamp(160px, 22vw, 280px);
  pointer-events: none;
}
.p-band::before {
  bottom: 100%;
  background: linear-gradient(to top, var(--color-bluebg), rgba(234, 243, 251, 0));
}
.p-band::after {
  top: 100%;
  background: linear-gradient(to bottom, var(--color-bluebg), rgba(234, 243, 251, 0));
}

.p-projects__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: clamp(40px, 6vw, 80px);
}

.p-projects__lead {
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-charcoal);
}

.p-projects__layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (min-width: 1024px) {
  .p-projects__layout {
    flex-direction: row;
    gap: 64px;
    align-items: flex-start;
  }
}

.p-projects__list {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .p-projects__list {
    flex: 1;
  }
}

.p-projects__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-block: clamp(28px, 4vw, 48px);
  padding-inline: 16px;
  color: inherit;
  border-top: 1px solid #9fb4c6;
  background-image: linear-gradient(#fcefcb, #fcefcb);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0% 100%;
  transition: background-size 0.6s var(--ease);
}
.p-projects__item:has(+ .p-projects__more) {
  border-bottom: 1px solid #9fb4c6;
}
.p-projects__item:hover {
  background-size: 100% 100%;
}

.p-projects__item-title {
  font-weight: 700;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--color-navy);
}

.p-projects__item-text {
  font-weight: 500;
  font-size: 1rem;
}

.p-projects__more {
  display: flex;
  justify-content: flex-end;
  margin: 0;
  padding-block: 20px;
  padding-inline: 16px;
  border-bottom: 2px solid #9fb4c6;
  background-image: linear-gradient(#fcefcb, #fcefcb);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0% 100%;
  transition: background-size 0.6s var(--ease);
}
.p-projects__more:hover {
  background-size: 100% 100%;
}

@media (prefers-reduced-motion: reduce) {
  .p-projects__item,
  .p-projects__more {
    transition-duration: 0.6s !important;
  }
}
.p-projects__thumb {
  display: none;
}
@media (min-width: 1024px) {
  .p-projects__thumb {
    display: block;
    position: relative;
    flex: none;
    width: 450px;
    aspect-ratio: 450/520;
    background-color: #ddd;
    border-radius: var(--radius);
    overflow: hidden;
  }
}
.p-projects__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-projects__carousel {
  display: none;
}

@media (max-width: 1023.98px) {
  .p-projects__carousel {
    display: block;
    position: relative;
    aspect-ratio: 3/2;
    margin-top: clamp(24px, 5vw, 40px);
    background-color: #ddd;
    border-radius: var(--radius);
    overflow: hidden;
  }
  .p-projects__carousel-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s var(--ease);
  }
  .p-projects__carousel-img.is-active {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) and (max-width: 1023.98px) {
  .p-projects__carousel-img {
    transition-duration: 0.8s !important;
  }
}
.p-news__layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (min-width: 1024px) {
  .p-news__layout {
    flex-direction: row;
    gap: 64px;
    align-items: flex-start;
  }
}

@media (min-width: 1024px) {
  .p-news__head {
    position: sticky;
    top: 100px;
    align-self: flex-start;
    flex: none;
  }
}

.p-news__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 1024px) {
  .p-news__content {
    width: 675px;
    margin-left: auto;
  }
}

.p-news__pickup {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.p-news__pickup-title {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--color-navy);
}

.p-news__pickup-thumb {
  aspect-ratio: 389/275;
  max-width: 389px;
  background-color: #ddd;
  border-radius: var(--radius);
  overflow: hidden;
}
.p-news__pickup-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-news__pickup-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-block: 12px 24px;
  padding-inline: 16px;
  color: inherit;
  background-image: linear-gradient(#fcefcb, #fcefcb);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0% 100%;
  transition: background-size 0.6s var(--ease);
}
@media (min-width: 768px) {
  .p-news__pickup-body {
    flex-direction: row;
  }
}
.p-news__pickup-body:hover {
  background-size: 100% 100%;
}

.p-news__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: none;
}

@media (max-width: 1023.98px) {
  .p-news__meta {
    flex-direction: row;
    align-items: center;
  }
  .p-news__pickup-thumb {
    max-width: 100%;
  }
}
.p-news__date {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--color-slate);
}

.p-news__pickup-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-news__pickup-text dt {
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-navy);
}

.p-news__pickup-text dd {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-charcoal);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.p-news__list {
  display: flex;
  flex-direction: column;
}

.p-news__row {
  border-top: 1px solid #9fb4c6;
  background-image: linear-gradient(#fcefcb, #fcefcb);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0% 100%;
  transition: background-size 0.6s var(--ease);
}
.p-news__row:last-of-type {
  border-bottom: 1px solid #9fb4c6;
}
.p-news__row:hover {
  background-size: 100% 100%;
}

.p-news__row-link {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding-block: 24px;
  padding-inline: 16px;
  color: inherit;
}

.p-news__row-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-news__row-meta {
  display: flex;
  gap: 8px;
  align-items: center;
}

.p-news__row-title {
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-navy);
}

.p-news__row-thumb {
  flex: none;
  width: 134px;
  height: 95px;
  background-color: #ddd;
  border-radius: 2px;
  overflow: hidden;
}
.p-news__row-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-news__more {
  display: flex;
  justify-content: flex-end;
  margin: 0;
  padding-block: 20px;
  padding-inline: 16px;
  border-bottom: 2px solid #9fb4c6;
  background-image: linear-gradient(#fcefcb, #fcefcb);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0% 100%;
  transition: background-size 0.6s var(--ease);
}
.p-news__more:hover {
  background-size: 100% 100%;
}

@media (prefers-reduced-motion: reduce) {
  .p-news__pickup-body,
  .p-news__row,
  .p-news__more {
    transition-duration: 0.6s !important;
  }
}
.p-home-contact__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .p-home-contact__inner {
    flex-direction: row;
    gap: 64px;
    align-items: center;
    justify-content: space-between;
  }
}

.p-home-contact__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1024px) {
  .p-home-contact__head {
    max-width: 359px;
  }
}

.p-home-contact__text {
  font-size: 0.875rem;
  line-height: 1.7;
}

.c-cta {
  width: 100%;
  justify-content: flex-end;
}
@media (min-width: 1024px) {
  .c-cta {
    width: 540px;
    height: 121px;
    padding-inline: 48px;
  }
}

.is-subpage {
  position: relative;
}

.is-subpage > main,
.is-subpage > .l-footer,
.is-subpage > .c-breadcrumb {
  position: relative;
  z-index: 1;
}

.p-subpage-glow::before, .p-subpage-glow::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
  height: clamp(160px, 24vw, 337px);
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.p-subpage-glow::before {
  top: 0;
  background-image: url(../img/body-bg-top.svg);
}
.p-subpage-glow::after {
  bottom: 0;
  background-image: url(../img/body-bg-bottom.svg);
}

.p-subpage-glow--flat::before,
.p-subpage-glow--flat::after {
  display: none;
}

@media (max-width: 1023.98px) {
  .p-subpage-glow::before {
    background-image: url(../img/body-bg-top-sp.svg);
  }
  .p-subpage-glow::after {
    background-image: url(../img/body-bg-bottom-sp.svg);
  }
}
.p-page-head {
  padding-top: clamp(120px, 18vw, 230px);
  padding-bottom: clamp(32px, 6vw, 72px);
}

.p-page-head__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.p-page-head__title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.p-page-head__dot {
  flex: none;
  width: 20px;
  height: 20px;
  background-color: var(--color-yellow);
  border-radius: 50%;
}

.p-page-head__en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(3rem, 9vw, 6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}

.p-archive {
  position: relative;
  background-color: var(--color-cream);
}
.p-archive::before, .p-archive::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
  height: clamp(160px, 24vw, 337px);
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.p-archive::before {
  bottom: 100%;
  background-image: url(../img/body-bg-top.svg);
}
.p-archive::after {
  top: 100%;
  background-image: url(../img/body-bg-bottom.svg);
}
@media (max-width: 1023.98px) {
  .p-archive::before {
    background-image: url(../img/body-bg-top-sp.svg);
  }
  .p-archive::after {
    background-image: url(../img/body-bg-bottom-sp.svg);
  }
}
.p-archive {
  padding-bottom: clamp(80px, 12vw, 160px);
}

.p-archive__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.p-archive__layout {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 48px);
}
@media (min-width: 1024px) {
  .p-archive__layout {
    flex-direction: row;
    gap: 64px;
    align-items: flex-start;
  }
}

@media (min-width: 1024px) {
  .p-archive__category {
    position: sticky;
    top: 120px;
    flex: none;
    width: 120px;
  }
}

.p-archive__category-label {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-charcoal);
}

.p-archive__category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}
@media (min-width: 1024px) {
  .p-archive__category-list {
    flex-direction: column;
    gap: 24px;
  }
}

.p-archive__category-item {
  position: relative;
  display: inline-block;
  width: fit-content;
  padding-bottom: 6px;
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-charcoal);
  transition: color 0.2s;
}
.p-archive__category-item:hover {
  color: var(--color-navy);
}
.p-archive__category-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #9fcbea;
  transition: width 0.3s var(--ease);
}
.p-archive__category-item:hover::after {
  width: 100%;
}
.p-archive__category-item.is-active {
  font-weight: 700;
}
.p-archive__category-item.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20px;
  height: 2px;
  background-color: var(--color-yellow);
}

.p-archive__main {
  flex: 1;
  min-width: 0;
}

.p-archive__list {
  display: flex;
  flex-direction: column;
}

.p-projects-list {
  display: flex;
  flex-direction: column;
}

.p-projects-card {
  display: flex;
  flex-direction: row;
  gap: clamp(16px, 3vw, 24px);
  align-items: center;
  color: inherit;
  padding-block: 24px;
  padding-inline: 16px;
  border-top: 1px solid #9fb4c6;
  background-image: linear-gradient(#fcefcb, #fcefcb);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0% 100%;
  transition: background-size 0.6s var(--ease);
}
.p-projects-card:hover {
  background-size: 100% 100%;
}

.p-projects-list > li:last-child .p-projects-card {
  border-bottom: 1px solid #9fb4c6;
}

.p-projects-card__thumb {
  flex: none;
  width: clamp(120px, 30%, 220px);
  aspect-ratio: 450/520;
  overflow: hidden;
  background-color: var(--color-bluebg);
  border-radius: var(--radius);
}
.p-projects-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-projects-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.p-projects-card__title {
  font-weight: 700;
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  color: var(--color-navy);
}

.p-projects-card__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-charcoal);
}

.p-archive__pager {
  display: block;
  width: 100%;
  padding-block: 24px;
  text-align: center;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--color-navy);
  border: 0;
  border-bottom: 2px solid #9fb4c6;
  background-color: transparent;
  background-image: linear-gradient(#fcefcb, #fcefcb);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0% 100%;
  cursor: pointer;
  transition: background-size 0.6s var(--ease);
}
.p-archive__pager:hover {
  background-size: 100% 100%;
}
.p-archive__pager:disabled {
  opacity: 0.6;
  cursor: default;
}

@media (prefers-reduced-motion: reduce) {
  .p-archive__pager {
    transition-duration: 0.6s !important;
  }
  .p-archive__category-item::after {
    transition-duration: 0.3s !important;
  }
  .p-projects-card {
    transition-duration: 0.6s !important;
  }
}
.p-article-head {
  position: relative;
  z-index: 1;
  padding-top: clamp(120px, 16vw, 184px);
}

.p-article-head__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.p-article__top {
  display: flex;
  align-items: center;
}

.p-article__breadcrumb {
  margin-top: 12px;
}
.p-article__breadcrumb ol {
  justify-content: flex-end;
}

.p-prose-wrap--flush {
  padding-top: 0;
}

.p-article__header {
  margin-bottom: clamp(32px, 5vw, 56px);
}

.p-article__meta {
  display: flex;
  gap: 16px;
  align-items: baseline;
  margin-bottom: 24px;
}

.p-article__date {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--color-slate);
}

.p-article__cat {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-charcoal);
}

.p-article__title {
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.4;
  color: var(--color-navy);
}

.p-article__thumb {
  margin-top: 24px;
  aspect-ratio: 660/349;
  overflow: hidden;
  background-color: #ddd;
  border-radius: var(--radius);
}
.p-article__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-article__back {
  display: flex;
  justify-content: center;
  margin-top: clamp(40px, 6vw, 64px);
}

.p-prose-wrap {
  position: relative;
  padding-bottom: clamp(48px, 7vw, 96px);
  background-color: var(--color-cream);
}
.p-prose-wrap::before, .p-prose-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
  height: clamp(180px, 26vw, 360px);
  pointer-events: none;
}
.p-prose-wrap::before {
  bottom: 100%;
  background: radial-gradient(120% 140% at 50% 100%, var(--color-cream), rgba(250, 249, 245, 0) 72%);
}
.p-prose-wrap::after {
  top: 100%;
  background: radial-gradient(120% 140% at 50% 0%, var(--color-cream), rgba(250, 249, 245, 0) 72%);
}

.p-prose-wrap__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-block: clamp(40px, 6vw, 72px);
}

.p-prose-wrap__body {
  width: 100%;
  max-width: 660px;
  margin-inline: auto;
}

.p-prose__title {
  margin-bottom: clamp(24px, 3vw, 32px);
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.4;
  color: var(--color-navy);
}

.p-prose {
  font-size: 1rem;
  line-height: 2;
  color: var(--color-charcoal);
}
.p-prose > * + * {
  margin-top: 14px;
}
.p-prose > .p-prose__lead {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 1.1875rem;
  line-height: 1.95;
  color: var(--color-navy);
}
.p-prose h2 {
  margin-top: clamp(28px, 4vw, 40px);
  padding-left: 21px;
  border-left: 5px solid #9fcbea;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--color-navy);
}
.p-prose h2 + * {
  margin-top: 4px;
}
.p-prose h3 {
  margin-top: 24px;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-navy);
}
.p-prose a {
  color: var(--color-navy);
  text-decoration: none;
  background-image: linear-gradient(#9fcbea, #9fcbea), linear-gradient(rgba(159, 203, 234, 0.4), rgba(159, 203, 234, 0.4));
  background-repeat: no-repeat, no-repeat;
  background-position: left 100%, left 100%;
  background-size: 0% 1.5px, 100% 1.5px;
  transition: background-size 0.5s var(--ease);
}
.p-prose a:hover {
  background-size: 100% 1.5px, 100% 1.5px;
}
.p-prose strong {
  font-weight: 700;
  color: var(--color-navy);
  background-image: linear-gradient(transparent 60%, rgba(242, 193, 78, 0.4) 60%);
}
.p-prose ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
  list-style: none;
}
.p-prose ul > li {
  position: relative;
  padding-left: 34px;
  line-height: 1.9;
}
.p-prose ul > li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 6px;
  width: 9px;
  height: 9px;
  background-color: #9fcbea;
  border-radius: 50%;
}
.p-prose ol {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
  list-style: none;
  counter-reset: prose-ol;
}
.p-prose ol > li {
  position: relative;
  padding-left: 34px;
  line-height: 1.9;
  counter-increment: prose-ol;
}
.p-prose ol > li::before {
  content: counter(prose-ol);
  position: absolute;
  top: 1px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-family: var(--font-en);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-cream);
  background-color: var(--color-navy);
  border-radius: 50%;
}
.p-prose blockquote {
  padding: 32px 26px 22px;
  background-color: var(--color-bluebg);
  border-radius: var(--radius);
  font-size: 1rem;
  line-height: 1.95;
  color: var(--color-navy);
}
.p-prose blockquote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  font-style: normal;
  color: var(--color-slate);
}
.p-prose figure:not([class]) {
  margin-top: 24px;
}
.p-prose figure:not([class]) img {
  display: block;
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  background-color: var(--color-bluebg);
  border-radius: var(--radius);
}
.p-prose figure:not([class]) figcaption {
  margin-top: 10px;
  font-size: 0.78rem;
  color: #8a8a8a;
  text-align: center;
}
.p-prose hr {
  margin-block: 24px;
  border: 0;
  border-top: 1px solid #e7e1d5;
}
.p-prose table {
  width: 100%;
  margin-top: 24px;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.p-prose table thead th {
  padding: 15px 16px;
  font-weight: 600;
  color: var(--color-cream);
  background-color: var(--color-navy);
  text-align: left;
}
.p-prose table thead th:first-child {
  border-top-left-radius: 3.5px;
}
.p-prose table thead th:last-child {
  border-top-right-radius: 3.5px;
}
.p-prose table tbody th,
.p-prose table tbody td {
  padding: 15px 16px;
  border-bottom: 1px solid #e7e1d5;
  text-align: left;
  vertical-align: top;
}
.p-prose table tbody th {
  width: 162px;
  font-weight: 600;
  color: var(--color-navy);
}
.p-prose table tbody td {
  color: var(--color-charcoal);
}
.p-prose table tbody tr:last-child th,
.p-prose table tbody tr:last-child td {
  border-bottom: 0;
}

.p-prose__note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 24px;
  padding: 18px 20px;
  background-color: #fcefcb;
  border-radius: var(--radius);
  font-size: 0.875rem;
  line-height: 1.85;
  color: var(--color-charcoal);
}

.p-prose__note-badge {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--color-navy);
  background-color: var(--color-yellow);
  border-radius: 50%;
}

@media (prefers-reduced-motion: reduce) {
  .p-prose a {
    transition-duration: 0.5s !important;
  }
}
.p-contact {
  position: relative;
  background-color: var(--color-cream);
}
.p-contact::before, .p-contact::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
  height: clamp(160px, 24vw, 337px);
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.p-contact::before {
  bottom: 100%;
  background-image: url(../img/body-bg-top.svg);
}
.p-contact::after {
  top: 100%;
  background-image: url(../img/body-bg-bottom.svg);
}
@media (max-width: 1023.98px) {
  .p-contact::before {
    background-image: url(../img/body-bg-top-sp.svg);
  }
  .p-contact::after {
    background-image: url(../img/body-bg-bottom-sp.svg);
  }
}
.p-contact {
  padding-bottom: clamp(64px, 10vw, 120px);
}

.p-contact__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 48px);
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
@media (min-width: 1024px) {
  .p-contact__inner {
    flex-direction: row;
    gap: 56px;
    align-items: flex-start;
  }
}

@media (min-width: 1024px) {
  .p-contact__aside {
    flex: none;
    width: 422px;
  }
}

.p-contact__lead {
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.06;
  color: var(--color-charcoal);
}

.p-contact__banner {
  display: block;
  margin-top: clamp(20px, 3vw, 28px);
  border-radius: var(--radius);
  overflow: hidden;
}
.p-contact__banner img {
  display: block;
  width: 100%;
  height: auto;
}

.p-form {
  width: 100%;
}
@media (min-width: 1024px) {
  .p-form {
    max-width: 560px;
  }
}

.p-form__row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.p-form__label {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-navy);
}
.p-form__label a {
  color: var(--color-navy);
  text-decoration: none;
  background-image: linear-gradient(#9fcbea, #9fcbea), linear-gradient(rgba(159, 203, 234, 0.4), rgba(159, 203, 234, 0.4));
  background-repeat: no-repeat, no-repeat;
  background-position: left 100%, left 100%;
  background-size: 0% 1.5px, 100% 1.5px;
  transition: background-size 0.5s var(--ease);
}
.p-form__label a:hover {
  background-size: 100% 1.5px, 100% 1.5px;
}

.p-form__required {
  padding: 3px 7px 3px;
  font-weight: 700;
  font-size: 0.6875rem;
  line-height: 1;
  color: var(--color-cream);
  background-color: var(--color-yellow);
  border-radius: 2.75px;
}

.p-form .wpcf7-form-control-wrap {
  display: block;
}

.p-form__input,
.p-form__textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-charcoal);
  background-color: var(--color-white);
  border: 1px solid var(--color-navy);
  border-radius: 3.5px;
}
.p-form__input::placeholder,
.p-form__textarea::placeholder {
  color: #757575;
}
.p-form__input:focus,
.p-form__textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(29, 78, 122, 0.2);
}

.p-form__textarea {
  min-height: 140px;
  resize: vertical;
}

.p-form__checks {
  padding-top: 2px;
}
.p-form__checks .wpcf7-radio,
.p-form__checks .wpcf7-acceptance {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-form__checks .wpcf7-list-item {
  margin: 0;
}
.p-form__checks .wpcf7-list-item label {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 1rem;
  color: var(--color-navy);
  cursor: pointer;
}
.p-form__checks input[type=radio],
.p-form__checks input[type=checkbox] {
  flex: none;
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  margin: 0;
  background-color: var(--color-white);
  border: 1px solid var(--color-navy);
  cursor: pointer;
  display: grid;
  place-content: center;
}
.p-form__checks input[type=radio]:focus-visible,
.p-form__checks input[type=checkbox]:focus-visible {
  outline: 2px solid var(--color-navy);
  outline-offset: 2px;
}
.p-form__checks input[type=radio] {
  border-radius: 50%;
}
.p-form__checks input[type=radio]::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-navy);
  transform: scale(0);
  transition: transform 0.15s var(--ease);
}
.p-form__checks input[type=radio]:checked::before {
  transform: scale(1);
}
.p-form__checks input[type=checkbox] {
  border-radius: 3.25px;
}
.p-form__checks input[type=checkbox]::before {
  content: "✓";
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-navy);
  transform: scale(0);
  transition: transform 0.15s var(--ease);
}
.p-form__checks input[type=checkbox]:checked::before {
  transform: scale(1);
}

.p-form__actions {
  margin-top: 8px;
}

.p-form__submit {
  width: 100%;
  padding: 42px 64px;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-cream);
  background-color: var(--color-navy);
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}
@media (min-width: 768px) {
  .p-form__submit {
    width: auto;
    min-width: 400px;
  }
}
.p-form__submit.is-disabled {
  background-color: var(--color-line);
  color: var(--color-white);
  cursor: not-allowed;
}
.p-form__submit:not(.is-disabled):hover {
  background-color: #9fcbea;
  color: var(--color-navy);
}

.p-form .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 12px 16px;
  font-size: 0.875rem;
  border: 1px solid var(--color-line);
  border-radius: 3.5px;
}

.p-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 0.8125rem;
  color: #d63638;
}

.p-form .wpcf7-spinner {
  margin: 0 0 0 12px;
}

@media (prefers-reduced-motion: reduce) {
  .p-form__checks input[type=radio]::before,
  .p-form__checks input[type=checkbox]::before {
    transition-duration: 0.15s !important;
  }
  .p-form__label a {
    transition-duration: 0.5s !important;
  }
}
.p-thanks {
  position: relative;
  padding-bottom: clamp(80px, 12vw, 140px);
}

.p-thanks__inner {
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  text-align: center;
}

.p-thanks__text {
  margin-bottom: clamp(32px, 5vw, 48px);
  font-size: 1rem;
  line-height: 2;
  color: var(--color-charcoal);
}
@media (max-width: 767px) {
  .p-thanks__text {
    text-align: left;
  }
}

.p-thanks__banners {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 24px);
}

.p-thanks__banner {
  display: block;
  aspect-ratio: 1500/500;
  overflow: hidden;
  border-radius: var(--radius);
  background-color: var(--color-bluebg);
}
.p-thanks__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.u-skip-link {
  position: absolute;
  top: -100px;
  left: 8px;
  z-index: 1000;
  padding: 8px 16px;
  color: var(--color-cream);
  background-color: var(--color-navy);
  border-radius: var(--radius);
  transition: top 0.2s;
}
.u-skip-link:focus {
  top: 8px;
}

.u-pc-only {
  display: none;
}
@media (min-width: 768px) {
  .u-pc-only {
    display: block;
  }
}

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