@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body.jtna-page {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: #fff;
  padding-top: 75px;
  overflow-x: hidden;
}
@media (max-width: 1024px) {
  body.jtna-page {
    padding-top: 67px;
  }
}
body.jtna-page.jtna-drawer-open {
  overflow: hidden;
  touch-action: none;
}
body.jtna-page.jtna-drawer-open .jtna-header {
  z-index: 1200;
}

.jtna {
  max-width: 1600px;
  margin: 0 auto;
  overflow-x: hidden;
}

.jtna-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: none;
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.jtna-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border-bottom-color: rgba(0, 0, 0, 0.06);
}
.jtna-header__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 16px 36px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}
@media (max-width: 1024px) {
  .jtna-header__inner {
    padding: 12px 16px;
  }
}
.jtna-header__logo {
  flex-shrink: 0;
  width: 120px;
  min-height: 42px;
}
.jtna-header__logo img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  vertical-align: top;
}
.jtna-header__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .jtna-header__right {
    display: none;
  }
}
.jtna-header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.jtna-header__nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.jtna-header__nav a {
  position: relative;
  display: inline-block;
  padding: 4px 0;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  transition: color 0.25s ease;
}
.jtna-header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, #803cb5 0%, #fb9a29 100%);
  transform: scaleX(0);
  transform-origin: 50% 50%;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0.92;
}
.jtna-header__nav a:hover, .jtna-header__nav a:focus-visible {
  color: #803cb5;
}
.jtna-header__nav a:hover::after, .jtna-header__nav a:focus-visible::after {
  transform: scaleX(1);
}
.jtna-header__nav a[aria-current=page] {
  color: #803cb5;
  font-weight: 600;
}
.jtna-header__nav a[aria-current=page]::after {
  transform: scaleX(1);
}
@media (prefers-reduced-motion: reduce) {
  .jtna-header__nav a::after {
    transition: none;
  }
}
.jtna-header__cta {
  flex-shrink: 0;
}
.jtna-header__cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 47px;
  padding: 0 20px 0 16px;
  background: #fb9a29;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.jtna-header__cta a:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}
.jtna-header__cta-icon {
  flex-shrink: 0;
  display: block;
}
.jtna-header__burger {
  display: none;
  margin-left: auto;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 4px;
  color: #333;
  transition: background 0.2s ease;
}
@media (max-width: 1024px) {
  .jtna-header__burger {
    display: inline-flex;
  }
}
.jtna-header__burger:hover {
  background: rgba(0, 0, 0, 0.05);
}
.jtna-header__burger:focus-visible {
  outline: 2px solid #803cb5;
  outline-offset: 2px;
}
.jtna-header__burger-lines {
  position: relative;
  display: block;
  width: 22px;
  height: 16px;
}
.jtna-header__burger-lines span {
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transform-origin: 50% 50%;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}
.jtna-header__burger-lines span:nth-child(1) {
  top: 0;
}
.jtna-header__burger-lines span:nth-child(2) {
  top: 7px;
}
.jtna-header__burger-lines span:nth-child(3) {
  top: 14px;
}
.jtna-header__burger[aria-expanded=true] .jtna-header__burger-lines span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.jtna-header__burger[aria-expanded=true] .jtna-header__burger-lines span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.jtna-header__burger[aria-expanded=true] .jtna-header__burger-lines span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (prefers-reduced-motion: reduce) {
  .jtna-header__burger-lines span {
    transition: none;
  }
}

.jtna-drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
  .jtna-drawer {
    transition: none;
  }
}
.jtna-drawer.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.jtna-drawer__panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 100dvh;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
  padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0) env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);
}
@media (prefers-reduced-motion: reduce) {
  .jtna-drawer__panel {
    transition: none;
  }
}
.jtna-drawer.is-open .jtna-drawer__panel {
  transform: translateX(0);
}
.jtna-drawer__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vh, 36px);
  min-height: 0;
  overflow-y: auto;
  padding: 24px 24px 32px;
  -webkit-overflow-scrolling: touch;
}
.jtna-drawer__nav {
  width: 100%;
}
.jtna-drawer__nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 3.5vh, 22px);
}
.jtna-drawer__nav-menu li {
  margin: 0;
  padding: 0;
}
.jtna-drawer__nav-menu a {
  display: inline-block;
  padding: 4px 8px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-align: center;
  transition: color 0.2s ease;
}
.jtna-drawer__nav-menu a:hover, .jtna-drawer__nav-menu a:focus-visible {
  color: #803cb5;
}
.jtna-drawer__cta {
  flex-shrink: 0;
  width: 100%;
  padding: 0 13vw;
}
@media (max-width: 400px) {
  .jtna-drawer__cta {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.jtna-drawer__cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  min-height: 52px;
  padding: 0 20px;
  background: #fb9a29;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 0;
  transition: opacity 0.2s ease;
}
.jtna-drawer__cta a:hover {
  opacity: 0.95;
}
.jtna-drawer__cta-icon {
  flex-shrink: 0;
  display: block;
  color: #fff;
}

@keyframes jtna-hero-pan {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.06);
  }
}
.jtna-hero {
  position: relative;
  width: 100%;
  margin: 0;
  min-height: clamp(520px, 58vh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.jtna-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.jtna-hero__bg img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 38%;
  display: block;
  transform-origin: center center;
}
@media (prefers-reduced-motion: no-preference) {
  .jtna-hero__bg img {
    animation: jtna-hero-pan 24s ease-in-out infinite alternate;
  }
}
.jtna-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  padding: clamp(40px, 8vw, 72px) 24px clamp(48px, 10vw, 88px);
  text-align: center;
}
.jtna-hero__bar-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 12px;
}
.jtna-hero__bar {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.15em;
  min-height: 64px;
  padding: 10px 36px;
  border-radius: 4px;
  background: linear-gradient(115deg, #803cb5 0%, #6a2f9a 38%, #fb9a29 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}
.jtna-hero__line1, .jtna-hero__line2 {
  margin: 0;
  font-size: clamp(28px, 4.2vw, 46px);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}
.jtna-hero__line2 {
  font-weight: 700;
}
.jtna-hero__line3 {
  margin: 18px 0 0;
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.5);
}
.jtna-hero__lead {
  margin: 28px auto 0;
  max-width: 620px;
  padding: 22px 26px;
  font-size: clamp(15px, 1.65vw, 20px);
  font-weight: 600;
  line-height: 1.75;
  color: #fff;
  text-align: left;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
@media (max-width: 768px) {
  .jtna-hero__lead {
    padding: 18px 20px;
    font-size: 15px;
    line-height: 1.8;
  }
}

.jtna-about {
  padding: 72px 24px 80px;
}
.jtna-about__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.jtna-about__label {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #803cb5;
}
.jtna-about__title {
  margin: 0 0 24px;
  font-family: "Roboto", sans-serif;
  font-size: clamp(36px, 6vw, 50px);
  font-weight: 700;
  color: #333;
  line-height: 1.1;
}
.jtna-about__catch {
  margin: 0 auto 32px;
  max-width: 570px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .jtna-about__catch {
    font-size: 20px;
  }
}
.jtna-about__body {
  margin: 0 auto 40px;
  max-width: 795px;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
}
.jtna-about__body p {
  margin: 0 0 0.5em;
}
.jtna-about__btn a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 47px;
  padding: 0 28px 0 22px;
  background: #fb9a29;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.jtna-about__btn a:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}
.jtna-about__btn a img {
  width: 20px;
  height: auto;
}

.jtna-mission {
  width: 100%;
  padding: 72px 0 88px;
  background: #f4f4f4;
}
.jtna-mission__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.jtna-mission__label {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #803cb5;
}
.jtna-mission__title {
  margin: 0 0 48px;
  font-family: "Roboto", sans-serif;
  font-size: clamp(36px, 6vw, 50px);
  font-weight: 700;
  color: #333;
}
.jtna-mission__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .jtna-mission__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

.jtna-mcard {
  position: relative;
  margin: 0;
  min-height: 280px;
  height: 100%;
  overflow: hidden;
  text-align: center;
}
.jtna-mcard__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  line-height: 0;
}
.jtna-mcard__bg img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  transform: scale(1.12);
  transform-origin: center center;
}
.jtna-mcard__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #333;
  opacity: 0.4;
}
.jtna-mcard__content {
  position: relative;
  z-index: 2;
  padding: 64px 20px 28px;
  color: #fff;
}
.jtna-mcard__name {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.jtna-mcard__desc {
  margin: 0 auto;
  max-width: 316px;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  text-align: left;
}

@keyframes jtna-home-fade-rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body.jtna-page--home .jtna-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1), transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}
body.jtna-page--home .jtna-mission__grid .jtna-mcard {
  opacity: 1;
  transform: none;
  transition: opacity 0.88s cubic-bezier(0.22, 1, 0.36, 1), transform 0.88s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

html.jtna-home-js body.jtna-page--home .jtna-reveal:not(.is-inview) {
  opacity: 0;
  transform: translateY(22px);
}
html.jtna-home-js body.jtna-page--home .jtna-reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}
html.jtna-home-js body.jtna-page--home .jtna-mission__grid:not(.is-inview) .jtna-mcard {
  opacity: 0;
  transform: translateY(26px);
}
html.jtna-home-js body.jtna-page--home .jtna-mission__grid.is-inview .jtna-mcard {
  opacity: 1;
  transform: translateY(0);
}
html.jtna-home-js body.jtna-page--home .jtna-mission__grid.is-inview .jtna-mcard:nth-child(1) {
  transition-delay: 0s;
}
html.jtna-home-js body.jtna-page--home .jtna-mission__grid.is-inview .jtna-mcard:nth-child(2) {
  transition-delay: 0.1s;
}
html.jtna-home-js body.jtna-page--home .jtna-mission__grid.is-inview .jtna-mcard:nth-child(3) {
  transition-delay: 0.2s;
}
@media (prefers-reduced-motion: reduce) {
  html.jtna-home-js body.jtna-page--home .jtna-reveal:not(.is-inview) {
    opacity: 1;
    transform: none;
  }
  html.jtna-home-js body.jtna-page--home .jtna-mission__grid:not(.is-inview) .jtna-mcard {
    opacity: 1;
    transform: none;
  }
}

body.jtna-page--home .jtna-hero__bar-wrap {
  opacity: 0;
  animation: jtna-home-fade-rise 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.12s;
}
body.jtna-page--home .jtna-hero__line3 {
  opacity: 0;
  animation: jtna-home-fade-rise 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.38s;
}
body.jtna-page--home .jtna-hero__lead {
  opacity: 0;
  animation: jtna-home-fade-rise 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.58s;
}
@media (prefers-reduced-motion: reduce) {
  body.jtna-page--home .jtna-hero__bar-wrap,
  body.jtna-page--home .jtna-hero__line3,
  body.jtna-page--home .jtna-hero__lead {
    opacity: 1;
    animation: none;
  }
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  body.jtna-page--home .jtna-mission__grid.is-inview .jtna-mcard:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
    transition-delay: 0s;
  }
}
body.jtna-page--home .jtna-mcard__bg img {
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  body.jtna-page--home .jtna-mission__grid.is-inview .jtna-mcard:hover .jtna-mcard__bg img {
    transform: scale(1.08);
  }
}
body.jtna-page--home .jtna-about__btn a {
  transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.jtna-news {
  padding: 72px 24px 88px;
}
.jtna-news__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.jtna-news__head {
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .jtna-news__head {
    text-align: center;
  }
}
.jtna-news__label {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #803cb5;
}
.jtna-news__title {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: clamp(36px, 6vw, 50px);
  font-weight: 600;
  color: #333;
}
.jtna-news__layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .jtna-news__layout {
    grid-template-columns: 1fr;
  }
}
.jtna-news__list {
  border-top: 1px solid #ccc;
}
.jtna-news__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid #ccc;
  font-size: 16px;
  line-height: 30px;
}
@media (max-width: 600px) {
  .jtna-news__item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.jtna-news__date {
  font-weight: 600;
  color: #fb9a29;
  flex-shrink: 0;
}
.jtna-news__more {
  margin-top: 20px;
  text-align: right;
}
.jtna-news__more a {
  text-decoration: underline;
  font-weight: 500;
}
.jtna-news__more a:hover {
  color: #803cb5;
}

.jtna-news-archive {
  max-width: 1000px;
  margin: 0 auto;
}
.jtna-news-archive__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #ccc;
}
.jtna-news-archive__item {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #ccc;
  font-size: 16px;
  line-height: 30px;
}
.jtna-news-archive__link {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px 24px;
  align-items: baseline;
  box-sizing: border-box;
  padding: 14px 0;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 600px) {
  .jtna-news-archive__link {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px 0;
  }
}
.jtna-news-archive__link:hover .jtna-news-archive__text {
  color: #803cb5;
}
.jtna-news-archive__link:focus-visible {
  outline: 2px solid #803cb5;
  outline-offset: 2px;
}
.jtna-news-archive__date {
  margin: 0;
  font-weight: 600;
  color: #fb9a29;
  font-family: "Noto Sans JP", sans-serif;
  white-space: nowrap;
}
.jtna-news-archive__text {
  margin: 0;
  font-weight: 500;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
}

.jtna-news-detail {
  max-width: 800px;
  margin: 0 auto;
}
.jtna-news-detail__header {
  margin-bottom: 24px;
}
.jtna-news-detail__date {
  display: block;
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  color: #fb9a29;
  font-family: "Noto Sans JP", sans-serif;
}
.jtna-news-detail__title {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.55;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
}
.jtna-news-detail__rule {
  height: 3px;
  max-width: 100%;
  margin: 0;
  border: none;
  background: #fb9a29;
}
.jtna-news-detail__body {
  margin-top: 36px;
}
.jtna-news-detail__body p {
  margin: 0 0 1em;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #333;
}
.jtna-news-detail__body p:last-child {
  margin-bottom: 0;
}
.jtna-news-detail__back-wrap {
  margin: 40px 0 0;
  text-align: center;
}
.jtna-news-detail__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 47px;
  padding: 0 24px 0 18px;
  background: #fb9a29;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.jtna-news-detail__back:hover {
  opacity: 0.92;
}
.jtna-news-detail__back:focus-visible {
  outline: 2px solid #803cb5;
  outline-offset: 2px;
}
.jtna-news-detail__back-icon {
  flex-shrink: 0;
  display: block;
}

@keyframes jtna-news-page-fade-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body.jtna-page--news .jtna-reveal,
body.jtna-page--news-detail .jtna-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

html.jtna-news-js body.jtna-page--news .jtna-reveal:not(.is-inview),
html.jtna-news-js body.jtna-page--news-detail .jtna-reveal:not(.is-inview) {
  opacity: 0;
  transform: translateY(22px);
}
html.jtna-news-js body.jtna-page--news .jtna-reveal.is-inview,
html.jtna-news-js body.jtna-page--news-detail .jtna-reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html.jtna-news-js body.jtna-page--news .jtna-reveal:not(.is-inview),
  html.jtna-news-js body.jtna-page--news-detail .jtna-reveal:not(.is-inview) {
    opacity: 1;
    transform: none;
  }
}

body.jtna-page--news .jtna-sub-hero__en,
body.jtna-page--news-detail .jtna-sub-hero__en {
  opacity: 0;
  animation: jtna-news-page-fade-rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.08s;
}
body.jtna-page--news .jtna-sub-hero__title,
body.jtna-page--news-detail .jtna-sub-hero__title {
  opacity: 0;
  animation: jtna-news-page-fade-rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.22s;
}
body.jtna-page--news .jtna-sub-hero__lead,
body.jtna-page--news-detail .jtna-sub-hero__lead {
  opacity: 0;
  animation: jtna-news-page-fade-rise 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.42s;
}
@media (prefers-reduced-motion: reduce) {
  body.jtna-page--news .jtna-sub-hero__en,
  body.jtna-page--news .jtna-sub-hero__title,
  body.jtna-page--news .jtna-sub-hero__lead,
  body.jtna-page--news-detail .jtna-sub-hero__en,
  body.jtna-page--news-detail .jtna-sub-hero__title,
  body.jtna-page--news-detail .jtna-sub-hero__lead {
    opacity: 1;
    animation: none;
  }
}

body.jtna-page--news .jtna-news-archive__link {
  transition: background-color 0.38s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s ease;
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  body.jtna-page--news .jtna-news-archive__link:hover {
    background: rgb(249.92, 247.2, 252.04);
  }
}
body.jtna-page--news .jtna-news-archive__text {
  transition: color 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.jtna-contact {
  width: 100%;
  padding: 56px 24px 64px;
  background: #fb9a29;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
}
.jtna-contact__inner {
  max-width: 800px;
  margin: 0 auto;
}
.jtna-contact__title {
  margin: 0 0 8px;
  font-family: "Roboto", sans-serif;
  font-size: clamp(36px, 6vw, 50px);
  font-weight: 700;
}
.jtna-contact__label {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 700;
}
.jtna-contact__lead {
  margin: 0 0 36px;
  font-size: clamp(16px, 2.8vw, 20px);
  font-weight: 600;
  line-height: 1.75;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.jtna-contact__lead-nowrap {
  white-space: nowrap;
}
@media (max-width: 400px) {
  .jtna-contact__lead-nowrap {
    white-space: normal;
  }
}
.jtna-contact__btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: min(297px, 100%);
  height: 55px;
  padding: 0 24px;
  background: #fff;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s ease;
}
.jtna-contact__btn a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.jtna-contact__btn-icon {
  flex-shrink: 0;
  display: block;
  color: #fb9a29;
}

.jtna-page--contact .jtna-header__cta a[aria-current=page] {
  opacity: 1;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.85);
}

.jtna-contact-page {
  max-width: 1200px;
  margin: 0 auto;
}
.jtna-contact-page__intro {
  margin: 0 0 32px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #333;
}
.jtna-contact-page__section-title {
  margin: 0 0 24px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.55;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
}
.jtna-contact-page__rule {
  height: 3px;
  max-width: 100%;
  margin: 0 0 40px;
  border: none;
  background: #fb9a29;
}
.jtna-contact-page__form-wrap {
  padding: 40px 36px 48px;
  background: #f7f7f7;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .jtna-contact-page__form-wrap {
    padding: 28px 20px 36px;
  }
}

.jtna-contact-form__row {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 12px 28px;
  align-items: center;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .jtna-contact-form__row {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
  }
  .jtna-contact-form__row .jtna-contact-form__row-head {
    flex-wrap: wrap;
  }
}
.jtna-contact-form__row--textarea {
  align-items: start;
}
.jtna-contact-form__row--textarea .jtna-contact-form__row-head {
  padding-top: 10px;
}
.jtna-contact-form__row-head {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
}
.jtna-contact-form__row-head label {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
}
.jtna-contact-form__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 66px;
  height: 33px;
  padding: 0 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
}
.jtna-contact-form__badge--required {
  background: #ffa518;
}
.jtna-contact-form__badge--optional {
  background: #999;
}
.jtna-contact-form__input, .jtna-contact-form__select, .jtna-contact-form__textarea {
  box-sizing: border-box;
  width: 100%;
  max-width: 663px;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 0;
}
.jtna-contact-form__input::placeholder, .jtna-contact-form__select::placeholder, .jtna-contact-form__textarea::placeholder {
  color: #999;
}
.jtna-contact-form__input:focus, .jtna-contact-form__select:focus, .jtna-contact-form__textarea:focus {
  outline: 2px solid rgba(128, 60, 181, 0.45);
  outline-offset: 2px;
}
.jtna-contact-form__input, .jtna-contact-form__select {
  min-height: 55px;
}
.jtna-contact-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.jtna-contact-form__textarea {
  min-height: 206px;
  resize: vertical;
}
.jtna-contact-form__privacy {
  margin: 36px auto 0;
  max-width: 800px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  text-align: center;
  color: #333;
}
.jtna-contact-form__privacy a {
  color: #333;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.jtna-contact-form__privacy a:hover {
  color: #803cb5;
}
.jtna-contact-form__consent {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 24px auto 0;
}
.jtna-contact-form__consent input[type=checkbox] {
  width: 26px;
  height: 26px;
  margin: 0;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #fb9a29;
}
.jtna-contact-form__consent label {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
}
.jtna-contact-form__submit-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 32px;
}
.jtna-contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 47px;
  padding: 12px 64px;
  box-sizing: border-box;
  background: #fb9a29;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.jtna-contact-form__submit:hover {
  opacity: 0.92;
}
.jtna-contact-form__submit:focus-visible {
  outline: 2px solid #803cb5;
  outline-offset: 2px;
}
.jtna-contact-form__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.jtna-contact-form__submit-icon {
  flex-shrink: 0;
  display: block;
}

.wpcf7 .jtna-contact-form__row > p,
.wpcf7 .jtna-contact-form__consent > p,
.wpcf7 .jtna-contact-form__submit-wrap > p {
  margin: 0;
  padding: 0;
  display: contents;
}

.wpcf7 .jtna-contact-form__row-head {
  display: block;
}
.wpcf7 .jtna-contact-form__row-head > p {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.wpcf7 .jtna-contact-form__row-head > p label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
}

.wpcf7 .jtna-contact-form__consent .wpcf7-acceptance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.wpcf7 .jtna-contact-form__consent .wpcf7-list-item {
  margin: 0;
}
.wpcf7 .jtna-contact-form__consent .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

.wpcf7-form:not(.invalid):not(.unaccepted) .wpcf7-not-valid-tip {
  display: none;
}

.wpcf7 .jtna-contact-form__submit-wrap .wpcf7-spinner {
  margin: 0;
  position: absolute;
}

@keyframes jtna-contact-page-fade-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body.jtna-page--contact .jtna-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

html.jtna-contact-js body.jtna-page--contact .jtna-reveal:not(.is-inview) {
  opacity: 0;
  transform: translateY(22px);
}
html.jtna-contact-js body.jtna-page--contact .jtna-reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html.jtna-contact-js body.jtna-page--contact .jtna-reveal:not(.is-inview) {
    opacity: 1;
    transform: none;
  }
}

body.jtna-page--contact .jtna-sub-hero__en {
  opacity: 0;
  animation: jtna-contact-page-fade-rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.08s;
}
body.jtna-page--contact .jtna-sub-hero__title {
  opacity: 0;
  animation: jtna-contact-page-fade-rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.22s;
}
body.jtna-page--contact .jtna-sub-hero__lead {
  opacity: 0;
  animation: jtna-contact-page-fade-rise 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.42s;
}
@media (prefers-reduced-motion: reduce) {
  body.jtna-page--contact .jtna-sub-hero__en,
  body.jtna-page--contact .jtna-sub-hero__title,
  body.jtna-page--contact .jtna-sub-hero__lead {
    opacity: 1;
    animation: none;
  }
}
body.jtna-page--contact .jtna-contact__btn a {
  transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  body.jtna-page--contact .jtna-contact__btn a:hover {
    transform: translateY(-2px);
  }
}

.jtna-footer {
  padding: 40px 24px 32px;
}
.jtna-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: clamp(28px, 5vw, 40px);
  row-gap: 20px;
}
.jtna-footer__logo {
  flex-shrink: 0;
  width: 120px;
  min-height: 42px;
}
.jtna-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  vertical-align: top;
}
.jtna-footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px clamp(16px, 3vw, 28px);
  max-width: min(100%, 640px);
}
.jtna-footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px clamp(16px, 3vw, 28px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.jtna-footer__nav a {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}
.jtna-footer__nav a:hover {
  color: #803cb5;
}
.jtna-footer__copy {
  flex: 1 0 100%;
  margin: 0;
  padding-top: 4px;
  font-size: 12px;
  text-align: center;
  color: #333;
}

.jtna-back-to-top {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #fb9a29;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(251, 154, 41, 0.35);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.92);
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s ease;
}
@media (max-width: 640px) {
  .jtna-back-to-top {
    width: 48px;
    height: 48px;
    right: 16px;
    bottom: 20px;
  }
}
.jtna-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.jtna-back-to-top:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14), 0 3px 8px rgba(251, 154, 41, 0.45);
  filter: brightness(1.03);
}
.jtna-back-to-top:focus-visible {
  outline: 2px solid #803cb5;
  outline-offset: 3px;
}
.jtna-back-to-top.is-visible:active {
  transform: translateY(1px) scale(0.98);
}
.jtna-back-to-top__icon {
  display: block;
  width: 22px;
  height: 22px;
}
@media (prefers-reduced-motion: reduce) {
  .jtna-back-to-top {
    transition-duration: 0.01ms;
  }
}

.jtna-sub-hero {
  width: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 24px 40px;
  background: linear-gradient(90deg, #803cb5 0%, #fb9a29 100%);
  color: #fff;
  text-align: center;
}
.jtna-sub-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.jtna-sub-hero__en {
  margin: 0 0 8px;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
}
.jtna-sub-hero__title {
  margin: 0 0 28px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.45;
  color: #fff;
}
.jtna-sub-hero__lead {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 36px;
  color: #fff;
}

.jtna-sub {
  padding: 32px 0 72px;
  background: #fff;
}
.jtna-sub__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.jtna-sub-breadcrumb {
  margin: 0 0 40px;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  color: #333;
}
.jtna-sub-breadcrumb a {
  color: #333;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.jtna-sub-breadcrumb a:hover {
  color: #803cb5;
}
.jtna-sub-breadcrumb__sep {
  margin: 0 0.15em;
}

.jtna-sub-block {
  margin: 0 0 56px;
}
.jtna-sub-block:last-child {
  margin-bottom: 0;
}
.jtna-sub-block__title {
  margin: 0 0 16px;
  font-size: 26px;
  font-weight: 500;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
}
.jtna-sub-block__rule {
  height: 3px;
  max-width: 100%;
  margin: 0 0 24px;
  border: none;
  background: linear-gradient(90deg, #803cb5 0%, #fb9a29 100%);
}
.jtna-sub-block__body {
  max-width: 100%;
}

.jtna-sub-text p {
  margin: 0 0 1em;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
}
.jtna-sub-text p:last-child {
  margin-bottom: 0;
}

.jtna-sub-lead {
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 26px;
  color: #333;
}

.jtna-info-table {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #fff;
  box-sizing: border-box;
}
.jtna-info-table__row {
  display: grid;
  grid-template-columns: minmax(100px, 228px) 1fr;
  min-height: 62px;
  align-items: stretch;
  border-bottom: 1px solid #fff;
}
.jtna-info-table__row:last-child {
  border-bottom: none;
}
@media (max-width: 640px) {
  .jtna-info-table__row {
    grid-template-columns: 1fr;
  }
}
.jtna-info-table__row:first-child dt {
  min-height: 85px;
}
@media (max-width: 640px) {
  .jtna-info-table__row:first-child dt {
    min-height: auto;
  }
}
.jtna-info-table dt {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 12px 16px;
  background: #ffaf52;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  text-align: center;
  border-right: 4px solid #fff;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .jtna-info-table dt {
    border-right: none;
    border-bottom: 1px solid #fff;
  }
}
.jtna-info-table dd {
  margin: 0;
  padding: 12px 20px;
  background: #f4f4f4;
  font-size: 16px;
  line-height: 26px;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.jtna-officers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .jtna-officers {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .jtna-officers {
    grid-template-columns: 1fr;
  }
}
.jtna-officers__card {
  margin: 0;
  padding: 20px 12px 24px;
  border: 2px solid rgba(221, 221, 221, 0.87);
  text-align: center;
  background: #fff;
}
.jtna-officers__role {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: #fb9a29;
}
.jtna-officers__name {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: #333;
}

.jtna-purpose {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px 16px;
  align-items: start;
}
@media (max-width: 1100px) {
  .jtna-purpose {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 700px) {
  .jtna-purpose {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .jtna-purpose {
    grid-template-columns: 1fr;
  }
}
.jtna-purpose__item {
  text-align: center;
}
.jtna-purpose__icon {
  margin: 0 auto 12px;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.jtna-purpose__icon img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.jtna-purpose__heading {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  color: #fb9a29;
  line-height: 1.35;
}
.jtna-purpose__text {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  text-align: left;
  color: #333;
}

.jtna-products {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px 12px;
  align-items: end;
}
@media (max-width: 1100px) {
  .jtna-products {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .jtna-products {
    grid-template-columns: repeat(2, 1fr);
  }
}
.jtna-products__item {
  margin: 0;
  text-align: center;
}
.jtna-products__img {
  margin: 0 auto 12px;
  max-width: 178px;
  line-height: 0;
}
.jtna-products__img img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 178px;
  margin: 0 auto;
}
.jtna-products__cap {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: #fb9a29;
}

.jtna-sub-cta-wrap {
  margin: 28px 0 0;
  text-align: center;
}

.jtna-sub-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  padding: 0 36px;
  background: #fb9a29;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.jtna-sub-cta:hover {
  opacity: 0.92;
}

.jtna-sub-bullets {
  margin: 28px 0 24px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.65;
  color: #fb9a29;
}
.jtna-sub-bullets--underline {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  text-decoration-color: #fb9a29;
}

.jtna-header__nav a[aria-current=page] {
  color: #803cb5;
  font-weight: 600;
}

@keyframes jtna-about-fade-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body.jtna-page--about .jtna-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

html.jtna-about-js body.jtna-page--about .jtna-reveal:not(.is-inview) {
  opacity: 0;
  transform: translateY(22px);
}
html.jtna-about-js body.jtna-page--about .jtna-reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html.jtna-about-js body.jtna-page--about .jtna-reveal:not(.is-inview) {
    opacity: 1;
    transform: none;
  }
}

body.jtna-page--about .jtna-sub-hero__en {
  opacity: 0;
  animation: jtna-about-fade-rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.08s;
}
body.jtna-page--about .jtna-sub-hero__title {
  opacity: 0;
  animation: jtna-about-fade-rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.22s;
}
body.jtna-page--about .jtna-sub-hero__lead {
  opacity: 0;
  animation: jtna-about-fade-rise 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.42s;
}
@media (prefers-reduced-motion: reduce) {
  body.jtna-page--about .jtna-sub-hero__en,
  body.jtna-page--about .jtna-sub-hero__title,
  body.jtna-page--about .jtna-sub-hero__lead {
    opacity: 1;
    animation: none;
  }
}
body.jtna-page--about .jtna-officers__card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  body.jtna-page--about .jtna-officers__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  }
}
body.jtna-page--about .jtna-products__img img {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  body.jtna-page--about .jtna-products__item:hover .jtna-products__img img {
    transform: scale(1.04);
  }
}
body.jtna-page--about .jtna-sub-cta {
  transition: opacity 0.2s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  body.jtna-page--about .jtna-sub-cta:hover {
    transform: translateY(-2px);
  }
}

.jtna-sub-h3 {
  margin: 32px 0 16px;
  font-size: 22px;
  font-weight: 600;
  color: #fb9a29;
  font-family: "Noto Sans JP", sans-serif;
}
.jtna-sub-block > .jtna-sub-h3:first-of-type {
  margin-top: 0;
}

.jtna-sub-block > .jtna-sub-block__body.jtna-sub-text + .jtna-sub-h3 {
  margin-top: 40px;
}

.jtna-tech-scenes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .jtna-tech-scenes {
    grid-template-columns: 1fr;
  }
}
.jtna-tech-scenes__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.jtna-tech-scenes__item h4 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
  color: #803cb5;
  font-family: "Noto Sans JP", sans-serif;
}
.jtna-tech-scenes__item p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
}

.jtna-tech-table-wrap {
  margin-top: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.jtna-tech-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 16px;
  line-height: 26px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
}
.jtna-tech-table thead th {
  padding: 14px 12px;
  background: #ffaf52;
  color: #fff;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}
.jtna-tech-table tbody th {
  padding: 14px 12px;
  background: #f4f4f4;
  color: #333;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
.jtna-tech-table tbody td {
  padding: 14px 16px;
  background: #f4f4f4;
  color: #333;
  font-weight: 400;
  vertical-align: middle;
}
.jtna-tech-table tbody tr + tr th,
.jtna-tech-table tbody tr + tr td {
  border-top: 1px solid #e8e8e8;
}

.jtna-tech-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 20px;
  align-items: start;
}
@media (max-width: 900px) {
  .jtna-tech-products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .jtna-tech-products {
    grid-template-columns: 1fr;
  }
}
.jtna-tech-products__item {
  margin: 0;
  text-align: center;
}
.jtna-tech-products__img {
  margin: 0 auto 12px;
  max-width: 370px;
  line-height: 0;
  overflow: hidden;
}
.jtna-tech-products__img img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 270px;
  object-fit: cover;
}
.jtna-tech-products__cap {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  color: #fb9a29;
  font-family: "Noto Sans JP", sans-serif;
}
.jtna-tech-products__desc {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
}

@keyframes jtna-tech-page-fade-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body.jtna-page--technology .jtna-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

html.jtna-technology-js body.jtna-page--technology .jtna-reveal:not(.is-inview) {
  opacity: 0;
  transform: translateY(22px);
}
html.jtna-technology-js body.jtna-page--technology .jtna-reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html.jtna-technology-js body.jtna-page--technology .jtna-reveal:not(.is-inview) {
    opacity: 1;
    transform: none;
  }
}

body.jtna-page--technology .jtna-sub-hero__en {
  opacity: 0;
  animation: jtna-tech-page-fade-rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.08s;
}
body.jtna-page--technology .jtna-sub-hero__title {
  opacity: 0;
  animation: jtna-tech-page-fade-rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.22s;
}
body.jtna-page--technology .jtna-sub-hero__lead {
  opacity: 0;
  animation: jtna-tech-page-fade-rise 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.42s;
}
@media (prefers-reduced-motion: reduce) {
  body.jtna-page--technology .jtna-sub-hero__en,
  body.jtna-page--technology .jtna-sub-hero__title,
  body.jtna-page--technology .jtna-sub-hero__lead {
    opacity: 1;
    animation: none;
  }
}
body.jtna-page--technology .jtna-tech-scenes__item {
  padding: 2px 0;
  border-radius: 4px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  body.jtna-page--technology .jtna-tech-scenes__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  }
}
body.jtna-page--technology .jtna-tech-products__img img {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  body.jtna-page--technology .jtna-tech-products__item:hover .jtna-tech-products__img img {
    transform: scale(1.04);
  }
}
body.jtna-page--technology .jtna-sub-cta {
  transition: opacity 0.2s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  body.jtna-page--technology .jtna-sub-cta:hover {
    transform: translateY(-2px);
  }
}

.jtna-activities-plan {
  margin-top: 8px;
}
.jtna-activities-plan__item {
  margin: 0 0 28px;
}
.jtna-activities-plan__item:last-child {
  margin-bottom: 0;
}
.jtna-activities-plan__item h4 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  color: #803cb5;
  font-family: "Noto Sans JP", sans-serif;
}
.jtna-activities-plan__item p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
}

.jtna-page--activities .jtna-sub-text p {
  line-height: 1.75;
}
.jtna-page--activities .jtna-sub-h3 {
  margin-top: 36px;
  margin-bottom: 14px;
}
.jtna-page--activities .jtna-sub-bullets {
  line-height: 1.7;
}
.jtna-page--activities .jtna-activities-plan__item {
  margin-bottom: 32px;
}
.jtna-page--activities .jtna-activities-plan__item:last-child {
  margin-bottom: 0;
}
.jtna-page--activities .jtna-activities-plan__item h4 {
  margin-bottom: 12px;
}
.jtna-page--activities .jtna-activities-plan__item p {
  line-height: 1.75;
}

@keyframes jtna-activities-page-fade-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body.jtna-page--activities .jtna-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

html.jtna-activities-js body.jtna-page--activities .jtna-reveal:not(.is-inview) {
  opacity: 0;
  transform: translateY(22px);
}
html.jtna-activities-js body.jtna-page--activities .jtna-reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html.jtna-activities-js body.jtna-page--activities .jtna-reveal:not(.is-inview) {
    opacity: 1;
    transform: none;
  }
}

body.jtna-page--activities .jtna-sub-hero__en {
  opacity: 0;
  animation: jtna-activities-page-fade-rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.08s;
}
body.jtna-page--activities .jtna-sub-hero__title {
  opacity: 0;
  animation: jtna-activities-page-fade-rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.22s;
}
body.jtna-page--activities .jtna-sub-hero__lead {
  opacity: 0;
  animation: jtna-activities-page-fade-rise 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.42s;
}
@media (prefers-reduced-motion: reduce) {
  body.jtna-page--activities .jtna-sub-hero__en,
  body.jtna-page--activities .jtna-sub-hero__title,
  body.jtna-page--activities .jtna-sub-hero__lead {
    opacity: 1;
    animation: none;
  }
}
body.jtna-page--activities .jtna-activities-plan__item {
  padding: 2px 0;
  border-radius: 4px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  body.jtna-page--activities .jtna-activities-plan__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  }
}
body.jtna-page--activities .jtna-sub-cta {
  transition: opacity 0.2s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  body.jtna-page--activities .jtna-sub-cta:hover {
    transform: translateY(-2px);
  }
}

.jtna-page--glossary .jtna-sub {
  padding-top: 24px;
}

.jtna-glossary__search-wrap {
  margin: 0 0 20px;
}
.jtna-glossary__search-input {
  box-sizing: border-box;
  display: block;
  width: 100%;
  max-width: 400px;
  min-height: 55px;
  padding: 14px 16px;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  color: #333;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 0;
}
.jtna-glossary__search-input::placeholder {
  color: #999;
}
.jtna-glossary__search-input:focus {
  outline: 2px solid rgba(128, 60, 181, 0.35);
  outline-offset: 2px;
}
.jtna-glossary__cats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin: 0 0 20px;
}
.jtna-glossary__cat {
  margin: 0;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.25;
  color: #333;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.jtna-glossary__cat:hover {
  border-color: #bbb;
}
.jtna-glossary__cat.is-active, .jtna-glossary__cat[aria-pressed=true] {
  font-weight: 600;
  color: #fff;
  background: #fb9a29;
  border-color: #fb9a29;
}
.jtna-glossary__cat:focus-visible {
  outline: 2px solid #803cb5;
  outline-offset: 2px;
}
.jtna-glossary__status {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}
.jtna-glossary__empty {
  margin: 0 0 24px;
  padding: 14px 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  background: #fff8f0;
  border-left: 4px solid #fb9a29;
}
.jtna-glossary__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 20px;
}
@media (max-width: 1100px) {
  .jtna-glossary__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .jtna-glossary__list {
    grid-template-columns: 1fr;
  }
}

.jtna-glossary-term {
  box-sizing: border-box;
  margin: 0;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: box-shadow 0.25s ease;
}
.jtna-glossary-term:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.jtna-glossary-term[hidden] {
  display: none !important;
}
.jtna-glossary-term__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.jtna-glossary-term__chevron {
  display: none;
}
.jtna-glossary-term__ja {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  color: #803cb5;
  font-family: "Noto Sans JP", sans-serif;
}
.jtna-glossary-term__en {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  color: #999;
  font-family: "Noto Sans JP", sans-serif;
}
.jtna-glossary-term__body {
  margin: 0;
  padding-top: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 640px) {
  .jtna-glossary-term {
    cursor: pointer;
  }
  .jtna-glossary-term__chevron {
    display: block;
    flex-shrink: 0;
    color: #999;
    transition: transform 0.3s ease;
  }
  .jtna-glossary-term.is-open .jtna-glossary-term__chevron {
    transform: rotate(180deg);
  }
  .jtna-glossary-term__body {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease, padding-top 0.35s ease;
  }
  .jtna-glossary-term.is-open .jtna-glossary-term__body {
    max-height: 200px;
    opacity: 1;
    padding-top: 12px;
  }
}

@keyframes jtna-glossary-page-fade-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body.jtna-page--glossary .jtna-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

html.jtna-glossary-js body.jtna-page--glossary .jtna-reveal:not(.is-inview) {
  opacity: 0;
  transform: translateY(22px);
}
html.jtna-glossary-js body.jtna-page--glossary .jtna-reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html.jtna-glossary-js body.jtna-page--glossary .jtna-reveal:not(.is-inview) {
    opacity: 1;
    transform: none;
  }
}

body.jtna-page--glossary .jtna-sub-hero__en {
  opacity: 0;
  animation: jtna-glossary-page-fade-rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.08s;
}
body.jtna-page--glossary .jtna-sub-hero__title {
  opacity: 0;
  animation: jtna-glossary-page-fade-rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.22s;
}
body.jtna-page--glossary .jtna-sub-hero__lead {
  opacity: 0;
  animation: jtna-glossary-page-fade-rise 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.42s;
}
@media (prefers-reduced-motion: reduce) {
  body.jtna-page--glossary .jtna-sub-hero__en,
  body.jtna-page--glossary .jtna-sub-hero__title,
  body.jtna-page--glossary .jtna-sub-hero__lead {
    opacity: 1;
    animation: none;
  }
}
body.jtna-page--glossary .jtna-glossary-term {
  transition: background-color 0.42s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  body.jtna-page--glossary .jtna-glossary-term:hover {
    background: rgb(249.92, 247.2, 252.04);
    border-color: rgba(128, 60, 181, 0.28);
  }
}

.jtna-sub-jump {
  margin: -8px 0 36px;
}
.jtna-sub-jump__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #333;
}
.jtna-sub-jump__list li {
  display: inline-flex;
  align-items: baseline;
  max-width: 100%;
}
.jtna-sub-jump__list li:not(:last-child)::after {
  content: "・";
  margin: 0 6px 0 2px;
  color: #333;
  opacity: 0.45;
  font-weight: 400;
  pointer-events: none;
}
.jtna-sub-jump__list a {
  color: #333;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.jtna-sub-jump__list a:hover {
  color: #803cb5;
}
.jtna-sub-jump__list a:focus-visible {
  outline: 2px solid #803cb5;
  outline-offset: 2px;
}

.jtna-page .jtna-sub-block__title[id] {
  scroll-margin-top: calc(75px + 16px);
}
@media (max-width: 1024px) {
  .jtna-page .jtna-sub-block__title[id] {
    scroll-margin-top: calc(67px + 16px);
  }
}

.jtna-ethics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .jtna-ethics-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.jtna-ethics-topic__title {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  color: #fb9a29;
  font-family: "Noto Sans JP", sans-serif;
}
.jtna-ethics-topic__sub {
  margin: 0 0 22px;
}
.jtna-ethics-topic__sub:last-child {
  margin-bottom: 0;
}
.jtna-ethics-topic__sub h4 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  color: #803cb5;
  font-family: "Noto Sans JP", sans-serif;
}
.jtna-ethics-topic__sub p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
}

.jtna-ethics-safety {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px 48px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .jtna-ethics-safety {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
}
.jtna-ethics-safety__group {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.jtna-ethics-safety__group .jtna-sub-h3 {
  margin-top: 0;
  margin-bottom: 12px;
}
.jtna-ethics-safety__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.jtna-ethics-safety__list li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 1.1em;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #333;
}
.jtna-ethics-safety__list li:last-child {
  margin-bottom: 0;
}
.jtna-ethics-safety__list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.jtna-ethics-data {
  margin-top: 4px;
}
.jtna-ethics-data .jtna-ethics-topic__sub {
  margin-bottom: 22px;
}
.jtna-ethics-data .jtna-ethics-topic__sub:last-child {
  margin-bottom: 0;
}

@keyframes jtna-ethics-page-fade-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body.jtna-page--ethics .jtna-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

html.jtna-ethics-js body.jtna-page--ethics .jtna-reveal:not(.is-inview) {
  opacity: 0;
  transform: translateY(22px);
}
html.jtna-ethics-js body.jtna-page--ethics .jtna-reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html.jtna-ethics-js body.jtna-page--ethics .jtna-reveal:not(.is-inview) {
    opacity: 1;
    transform: none;
  }
}

body.jtna-page--ethics .jtna-sub-hero__en {
  opacity: 0;
  animation: jtna-ethics-page-fade-rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.08s;
}
body.jtna-page--ethics .jtna-sub-hero__title {
  opacity: 0;
  animation: jtna-ethics-page-fade-rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.22s;
}
body.jtna-page--ethics .jtna-sub-hero__lead {
  opacity: 0;
  animation: jtna-ethics-page-fade-rise 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.42s;
}
@media (prefers-reduced-motion: reduce) {
  body.jtna-page--ethics .jtna-sub-hero__en,
  body.jtna-page--ethics .jtna-sub-hero__title,
  body.jtna-page--ethics .jtna-sub-hero__lead {
    opacity: 1;
    animation: none;
  }
}
body.jtna-page--ethics .jtna-ethics-topic {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  body.jtna-page--ethics .jtna-ethics-topic:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  }
}
body.jtna-page--ethics .jtna-ethics-safety__group {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  body.jtna-page--ethics .jtna-ethics-safety__group:hover {
    transform: translateY(-2px);
  }
}

.jtna-privacy-page {
  max-width: 1200px;
  margin: 0 auto;
}
.jtna-privacy-page__intro {
  margin: 0 0 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
}

.jtna-privacy-section {
  margin: 0 0 32px;
}
.jtna-privacy-section:last-of-type {
  margin-bottom: 0;
}
.jtna-privacy-section__title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
}
.jtna-privacy-section__body {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
}
.jtna-privacy-section__body p {
  margin: 0 0 1em;
}
.jtna-privacy-section__body p:last-child {
  margin-bottom: 0;
}
.jtna-privacy-section__list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
}
.jtna-privacy-section__list li {
  position: relative;
  margin: 0 0 0.35em;
  padding-left: 1.1em;
}
.jtna-privacy-section__list li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.jtna-privacy-section__list li:last-child {
  margin-bottom: 0;
}
.jtna-privacy-section__org {
  margin: 16px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
}
.jtna-privacy-section__org p {
  margin: 0 0 0.25em;
}
.jtna-privacy-section__org p:last-child {
  margin-bottom: 0;
}

@keyframes jtna-privacy-page-fade-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body.jtna-page--privacy .jtna-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

html.jtna-privacy-js body.jtna-page--privacy .jtna-reveal:not(.is-inview) {
  opacity: 0;
  transform: translateY(22px);
}
html.jtna-privacy-js body.jtna-page--privacy .jtna-reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html.jtna-privacy-js body.jtna-page--privacy .jtna-reveal:not(.is-inview) {
    opacity: 1;
    transform: none;
  }
}

body.jtna-page--privacy .jtna-sub-hero__en {
  opacity: 0;
  animation: jtna-privacy-page-fade-rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.08s;
}
body.jtna-page--privacy .jtna-sub-hero__title {
  opacity: 0;
  animation: jtna-privacy-page-fade-rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.28s;
}
@media (prefers-reduced-motion: reduce) {
  body.jtna-page--privacy .jtna-sub-hero__en,
  body.jtna-page--privacy .jtna-sub-hero__title {
    opacity: 1;
    animation: none;
  }
}
body.jtna-page--privacy .jtna-contact__btn a {
  transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  body.jtna-page--privacy .jtna-contact__btn a:hover {
    transform: translateY(-2px);
  }
}
