.editorial-book .editorial-cover {
  max-width: 230px;
  margin-bottom: 40px;
}
.editorial-book .editorial-cover img {
  max-height: 320px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media(max-width:480px) {
  .editorial-book .editorial-cover {
    max-width: 210px;
  }
  .editorial-book .editorial-cover img {
    max-height: 300px;
  }
}
:root {
  --background: #fff;
  --foreground: #171a21;
  --primary: #064acb;
  --primary-foreground: #fff;
  --border: #dedfe3;
  --radius: 0;
  --font-sans: 'Noto Sans JP','Hiragino Kaku Gothic ProN','Yu Gothic',sans-serif;
  --blue: #054acb;
  --muted: #f3f5f8;
  --muted-foreground: #646a74;
  --ring: #064acb;
  --accent: #e9effb;
  --accent-foreground: #16315d;
  --card: #fff;
  --card-foreground: #171a21;
  --popover: #fff;
  --popover-foreground: #171a21;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 35px;
}
body {
  margin: 0;
  color: var(--foreground);
  background: white;
  font-family: var(--font-sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible {
  outline: 3px solid #ea8312;
  outline-offset: 5px;
}
img {
  max-width: 100%;
  display: block;
}
h1,h2,h3,p {
  margin: 0;
}
.skip {
  position: absolute;
  z-index: 10;
  top: -60px;
  left: 20px;
  background: white;
  padding: 10px;
}
.skip:focus {
  top: 10px;
}
.header {
  height: 108px;
  max-width: 1600px;
  margin: auto;
  padding: 0 4.5%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.brand {
  display: block;
  flex-shrink: 0;
  width: 218px;
}
.brand img {
  width: 100%;
  height: auto;
}
.header nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.header nav a {
  padding: 16px 0;
  position: relative;
}
.header nav a:after {
  content: '';
  height: 2px;
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 100%;
  background: var(--blue);
  transition: right .2s;
}
.header nav a:hover:after {
  right: 0;
}
.header-contact {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--border);
  padding: 14px 20px;
}
.header-contact:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.hero {
  position: relative;
  overflow: hidden;
  max-width: 1600px;
  margin: 0 auto;
  background: #0541ab;
  color: #fff;
  min-height: 590px;
  height: min(44vw,690px);
}
.hero-art {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}
.hero:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(0,28,101,.24),transparent 63%);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 72px 6.3%;
  max-width: 850px;
}
.eyebrow {
  font-family: Arial,sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .17em;
}
.hero h1 {
  font-family: 'Hiragino Mincho ProN','Yu Mincho',serif;
  font-size: clamp(38px,4.2vw,64px);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: .075em;
  margin-top: 34px;
  text-shadow: 0 2px 12px #00308033;
}
.hero-description {
  font-size: 16px;
  line-height: 2.05;
  letter-spacing: .055em;
  margin-top: 25px;
}
.hero-link {
  display: inline-flex;
  gap: 45px;
  align-items: center;
  margin-top: 32px;
  font-size: 14px;
  font-weight: 700;
}
.hero-link span {
  display: grid;
  place-items: center;
  border: 1px solid #ffffff88;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  transition: background .2s;
}
.hero-link:hover span {
  background: white;
  color: var(--blue);
}
.hero-foot {
  position: absolute;
  left: 6.3%;
  right: 4%;
  bottom: 27px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: .17em;
  font-family: Arial,sans-serif;
  z-index: 1;
}
.intro-strip {
  display: flex;
  align-items: center;
  max-width: 1400px;
  padding: 28px 5.5%;
  margin: auto;
  gap: 28px;
  border-bottom: 1px solid var(--border);
}
.intro-strip>span {
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}
.intro-strip p {
  font-size: 13px;
  color: #59616e;
}
.intro-strip a {
  margin-left: auto;
  color: var(--blue);
}
.section {
  max-width: 1400px;
  padding: 83px 5.5%;
  margin: auto;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 35px;
}
.blue {
  color: var(--blue);
}
h2 {
  font-size: 29px;
  line-height: 1.65;
  font-weight: 700;
  letter-spacing: .04em;
}
.section-heading h2 {
  margin-top: 10px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 19px;
  font-size: 14px;
  white-space: nowrap;
  padding: 9px 0;
  border-bottom: 1px solid #a0a4aa;
}
.text-link:hover {
  color: var(--blue);
  border-color: var(--blue);
}
.book-grid {
  display: grid;
  grid-template-columns: repeat(6,minmax(0,1fr));
  gap: 24px;
}
.book-cover {
  position: relative;
  background: #f2f3f5;
  padding: 23px 20px;
  height: 258px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.book-cover img {
  height: 100%;
  width: auto;
  object-fit: contain;
  box-shadow: 5px 6px 11px #15192b22;
  transition: transform .25s;
}
.book:hover .book-cover img {
  transform: translateY(-5px);
}
.book-open {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--blue);
  color: white;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
}
.cover-1 {
  background: #eef1f6;
}
.cover-2 {
  background: #f7f2ef;
}
.cover-3 {
  background: #edf2f5;
}
.cover-4 {
  background: #f4f2ee;
}
.cover-5 {
  background: #f1f1f7;
}
.book h3 {
  font-size: 15px;
  line-height: 1.75;
  font-weight: 700;
  margin-top: 18px;
}
.book p {
  font-size: 13px;
  margin-top: 8px;
  color: #646971;
}
.about-section {
  background: #f1f5fc;
  padding: 75px max(5.5%,calc((100vw - 1246px)/2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.huge-words {
  font-family: Arial,sans-serif;
  font-weight: 600;
  font-size: clamp(56px,6.2vw,92px);
  line-height: 1.04;
  letter-spacing: -.06em;
  color: #0b337f;
  margin-top: 33px;
}
.huge-words span {
  color: #f1892b;
}
.about-copy h2 {
  font-family: 'Hiragino Mincho ProN','Yu Mincho',serif;
  font-size: 31px;
  font-weight: 600;
  line-height: 1.8;
}
.about-copy>p {
  font-size: 15px;
  line-height: 2.1;
  margin-top: 22px;
  max-width: 510px;
}
.about-copy .text-link {
  margin-top: 20px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.service {
  display: block;
  padding: 28px 25px 25px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.service:hover {
  background: #f0f5ff;
}
.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--blue);
}
.service-top>span {
  font-family: Georgia,serif;
  font-size: 27px;
}
.service-en {
  font-family: Arial,sans-serif;
  font-size: 11px;
  color: #657082;
  letter-spacing: .08em;
  margin-top: 36px;
}
.service h3 {
  font-size: 20px;
  margin-top: 9px;
}
.service-description {
  font-size: 14px;
  line-height: 1.95;
  color: #525b68;
  margin-top: 17px;
}
.service-arrow {
  display: block;
  margin: 27px 0 0 auto;
  color: var(--blue);
}
.company-section {
  padding-top: 30px;
  padding-bottom: 85px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.company-section h2 {
  margin-top: 12px;
  font-size: 26px;
}
.company-mission {
  margin-top: 26px;
  line-height: 2;
  color: #535b67;
  font-size: 15px;
}
dl {
  margin: 0;
  border-top: 1px solid var(--border);
}
dl>div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  line-height: 1.9;
}
dt {
  font-weight: 700;
}
dd {
  margin: 0;
  color: #4d5663;
}
.contact-section {
  background: var(--blue);
  color: white;
  padding: 56px max(5.5%,calc((100vw - 1246px)/2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
.contact-section h2 {
  font-family: 'Hiragino Mincho ProN','Yu Mincho',serif;
  font-size: 35px;
  font-weight: 600;
  margin-top: 13px;
}
.contact-section p:not(.eyebrow) {
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.8;
}
.contact-button {
  background: white;
  color: #123b87;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
  padding: 25px 30px;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}
.contact-button:hover {
  background: #e7efff;
}
footer {
  max-width: 1400px;
  margin: auto;
  padding: 45px 5.5% 25px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 35px;
}
.footer-top .brand {
  width: 200px;
}
.footer-top>p {
  font-family: Arial,sans-serif;
  font-size: 12px;
  letter-spacing: .14em;
  color: #637084;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #69717d;
}
.footer-bottom small {
  font-size: 12px;
}
.footer-bottom>div {
  display: flex;
  gap: 27px;
  font-size: 12px;
}
.mobile-break {
  display: none;
}
@media(min-width:1600px) {
  .hero-copy {
    padding-top: 95px;
  }
  .hero h1 {
    margin-top: 42px;
  }
}
@media(max-width:1100px) {
  .header {
    height: 92px;
    gap: 23px;
    padding: 0 4%;
  }
  .brand {
    width: 180px;
  }
  .header nav {
    gap: 20px;
    font-size: 13px;
  }
  .header-contact {
    padding: 12px;
    gap: 10px;
    font-size: 13px;
  }
  .hero {
    min-height: 550px;
  }
  .hero-copy {
    padding-top: 62px;
  }
  .book-grid {
    gap: 16px;
  }
  .book-cover {
    height: 218px;
    padding: 20px 14px;
  }
  .service {
    padding: 22px 20px;
  }
  .service h3 {
    font-size: 18px;
  }
  .about-section {
    gap: 40px;
  }
}
@media(max-width:800px) {
  .header {
    height: auto;
    min-height: 100px;
    flex-wrap: wrap;
    padding: 20px 5% 0;
    gap: 12px;
  }
  .brand {
    width: 180px;
  }
  .header-contact {
    margin-left: auto;
  }
  .header nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid #ededed;
    font-size: 13px;
  }
  .header nav a {
    padding: 14px 0;
  }
  .hero {
    height: 570px;
    min-height: 0;
  }
  .hero-art {
    object-position: 58% center;
  }
  .hero-copy {
    padding: 45px 6%;
    max-width: 70%;
  }
  .hero h1 {
    font-size: 38px;
    letter-spacing: .03em;
    margin-top: 27px;
  }
  .hero-description {
    font-size: 14px;
    margin-top: 20px;
  }
  .hero-link {
    gap: 17px;
    font-size: 13px;
    margin-top: 29px;
  }
  .hero-foot {
    font-size: 9px;
  }
  .intro-strip {
    padding: 24px 5%;
    gap: 12px;
    flex-wrap: wrap;
  }
  .intro-strip>span {
    font-size: 14px;
  }
  .intro-strip p {
    width: 85%;
    order: 3;
    font-size: 12px;
  }
  .section {
    padding: 57px 5%;
  }
  .section-heading {
    align-items: start;
    gap: 14px;
  }
  h2 {
    font-size: 24px;
  }
  .section-heading .text-link {
    font-size: 12px;
    gap: 7px;
    margin-top: 21px;
  }
  .book-grid {
    grid-template-columns: repeat(3,minmax(0,1fr));
    row-gap: 30px;
    gap: 24px 18px;
  }
  .book-cover {
    height: 270px;
    padding: 22px;
  }
  .book h3 {
    font-size: 14px;
  }
  .about-section {
    padding: 55px 5%;
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .huge-words {
    font-size: 67px;
    margin-top: 25px;
  }
  .about-copy h2 {
    font-size: 28px;
  }
  .about-copy>p {
    max-width: none;
  }
  .service-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .service {
    padding: 24px;
  }
  .service-description {
    font-size: 14px;
  }
  .service-en {
    margin-top: 25px;
  }
  .company-section {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 0;
  }
  .company-mission br {
    display: none;
  }
  .company-mission {
    margin-top: 16px;
  }
  .contact-section {
    padding: 45px 5%;
    align-items: flex-start;
    flex-direction: column;
    gap: 27px;
  }
  .contact-section h2 {
    font-size: 30px;
  }
  .contact-button {
    width: 100%;
    padding: 21px 25px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-bottom>div {
    gap: 18px;
    flex-wrap: wrap;
  }
  .footer-top>p {
    font-size: 10px;
  }
  .footer-top .brand {
    width: 160px;
  }
}
@media(max-width:480px) {
  .hero {
    height: 600px;
  }
  .hero-art {
    object-fit: cover;
    width: 165%;
    max-width: none;
    height: 100%;
    left: -38%;
    object-position: center;
  }
  .hero:after {
    background: linear-gradient(90deg,#00277655,transparent 90%);
  }
  .hero-copy {
    max-width: 100%;
    padding-top: 35px;
  }
  .hero h1 {
    font-size: 35px;
    line-height: 1.6;
  }
  .hero-description {
    margin-top: 15px;
  }
  .hero-link {
    margin-top: 19px;
  }
  .hero-foot {
    bottom: 20px;
  }
  .hero-foot>a {
    font-size: 8px;
  }
  .book-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 25px 19px;
  }
  .book-cover {
    height: 249px;
    padding: 22px;
  }
  .section-heading {
    flex-wrap: wrap;
    margin-bottom: 25px;
  }
  .section-heading .text-link {
    margin-top: 0;
  }
  .section-heading h2 {
    font-size: 25px;
  }
  .service {
    padding: 20px 16px;
  }
  .service h3 {
    font-size: 17px;
  }
  .service-description {
    font-size: 14px;
  }
  .service-en {
    font-size: 10px;
  }
  .service-top>span {
    font-size: 25px;
  }
  .company-section h2 {
    font-size: 24px;
  }
  dl>div {
    grid-template-columns: 88px 1fr;
    gap: 12px;
  }
  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .mobile-break {
    display: block;
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none!important;
  }
}
.about-copy>p,.service-description,.company-mission,.contact-section p:not(.eyebrow) {
  font-size: 16px;
}
.header nav,.header-contact,.text-link,.hero-link {
  font-size: 14px;
}
.book p {
  font-size: 14px;
}
.book h3 {
  font-size: 16px;
}
dl>div {
  font-size: 16px;
}
.intro-strip p {
  font-size: 14px;
}
@media(max-width:480px) {
  .hero {
    height: 700px;
  }
  .hero-art {
    width: 100%;
    max-width: 100%;
    height: 350px;
    left: 0;
    bottom: 0;
    object-position: 65% center;
  }
  .hero {
    background: #073baf;
  }
  .hero:after {
    background: none;
  }
  .hero-copy {
    padding-top: 34px;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero h1 {
    font-size: clamp(28px,8.8vw,35px);
  }
  .book h3 {
    font-size: 15px;
  }
  .service h3 {
    font-size: 18px;
  }
  .header nav {
    font-size: 13px;
  }
  .service-description {
    font-size: 16px;
  }
  .section-heading .text-link {
    font-size: 14px;
  }
  .company-section dl>div {
    font-size: 14px;
  }
}
.book-ribbon {
  background: #f0f4fc;
  overflow: hidden;
  padding: 26px 0 34px;
}
.ribbon-heading {
  max-width: 1400px;
  margin: 0 auto 21px;
  padding: 0 5.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.ribbon-heading p {
  font-size: 14px;
  letter-spacing: .08em;
  color: #15376b;
  font-weight: 700;
}
.ribbon-window {
  overflow: hidden;
  padding: 44px 0 10px;
}
.ribbon-track {
  display: flex;
  width: max-content;
  animation: book-flow 40s linear infinite;
  animation-duration: 40s;
  will-change: transform;
}
.ribbon-group {
  display: flex;
  align-items: start;
  gap: 48px;
  padding-right: 48px;
  flex: none;
}
.ribbon-book {
  position: relative;
  z-index: 0;
  display: block;
  width: 150px;
  flex: none;
  text-align: center;
}
.ribbon-book img {
  width: auto;
  height: 224px;
  margin: auto;
  box-shadow: 7px 9px 15px #152c4c26;
  transition: transform .5s cubic-bezier(.22,1,.36,1),box-shadow .5s cubic-bezier(.22,1,.36,1);
  transform-origin: center bottom;
  will-change: transform;
}
.ribbon-book span {
  display: block;
  font-size: 13px;
  line-height: 1.6;
  color: #374862;
  margin-top: 17px;
  max-width: 150px;
}
.ribbon-book:hover,.ribbon-book:focus-visible,.ribbon-book:active {
  z-index: 2;
}
.ribbon-book:hover img,.ribbon-book:focus-visible img,.ribbon-book:active img {
  transform: translateY(-15px) scale(1.1) rotate(-2deg);
  box-shadow: 12px 18px 26px #152c4c38;
}
@keyframes book-flow {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333333333%);
  }
}
@media(max-width:600px) {
  .book-ribbon {
    padding: 20px 0 24px;
  }
  .ribbon-heading {
    margin-bottom: 12px;
  }
  .ribbon-heading p {
    font-size: 13px;
  }
  .ribbon-window {
    padding-top: 40px;
  }
  .ribbon-group {
    gap: 30px;
    padding-right: 30px;
  }
  .ribbon-book {
    width: 119px;
  }
  .ribbon-book img {
    height: 180px;
  }
  .ribbon-track {
    animation-duration: 34s;
  }
}
@media(prefers-reduced-motion:reduce) {
  .ribbon-book img {
    transition: none;
  }
  .ribbon-book:hover img,.ribbon-book:focus-visible img,.ribbon-book:active img {
    transform: none;
  }
  .ribbon-track {
    animation: none;
    transform: none;
  }
  .ribbon-window {
    overflow-x: auto;
  }
  .ribbon-group[aria-hidden="true"] {
    display: none;
  }
}
.sub-header {
  border-bottom: 1px solid var(--border);
}
.catalog-hero {
  background: var(--blue);
  color: white;
  padding: 72px max(5.5%,calc((100vw - 1246px)/2)) 76px;
}
.catalog-hero h1 {
  font-family: 'Hiragino Mincho ProN','Yu Mincho',serif;
  font-size: clamp(40px,5vw,68px);
  font-weight: 600;
  letter-spacing: .08em;
  margin-top: 18px;
}
.catalog-hero>p:last-child {
  font-size: 16px;
  margin-top: 22px;
  letter-spacing: .04em;
}
.catalog-section {
  padding-top: 55px;
}
.catalog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 18px;
  margin-bottom: 35px;
  font-family: Arial,sans-serif;
  font-size: 13px;
  letter-spacing: .13em;
  color: #58657a;
}
.catalog-grid {
  row-gap: 56px;
}
.catalog-grid .book h2 {
  font-size: 16px;
  line-height: 1.75;
  margin-top: 18px;
}
.book-more {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}
.detail-breadcrumb {
  max-width: 1300px;
  margin: 0 auto;
  padding: 24px 4%;
  display: flex;
  gap: 11px;
  color: #687180;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
}
.detail-breadcrumb span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}
.book-detail {
  max-width: 1260px;
  margin: 0 auto;
  padding: 65px 5% 95px;
  display: grid;
  grid-template-columns: minmax(270px,390px) 1fr;
  gap: clamp(55px,8vw,125px);
  align-items: start;
}
.detail-cover {
  background: #eef3fb;
  padding: 52px;
  display: flex;
  justify-content: center;
  position: relative;
}
.detail-cover:after {
  content: 'ZERO ONE PUBLISHING';
  position: absolute;
  bottom: 16px;
  left: 20px;
  color: #164693;
  font: 10px Arial,sans-serif;
  letter-spacing: .15em;
}
.detail-cover img {
  width: auto;
  max-height: 540px;
  box-shadow: 13px 15px 30px #142c5329;
}
.detail-main {
  padding-top: 24px;
}
.detail-main h1 {
  font-family: 'Hiragino Mincho ProN','Yu Mincho',serif;
  font-size: clamp(30px,3.2vw,49px);
  line-height: 1.55;
  letter-spacing: .035em;
  font-weight: 600;
  margin-top: 20px;
}
.detail-author {
  font-size: 17px;
  margin-top: 25px;
  color: #555e6b;
}
.detail-rule {
  height: 1px;
  background: var(--border);
  margin: 42px 0;
}
.detail-intro h2 {
  font-size: 21px;
  margin-bottom: 20px;
}
.detail-intro>p:first-of-type {
  font-family: 'Hiragino Mincho ProN','Yu Mincho',serif;
  font-size: 17px;
  line-height: 2.1;
}
.source-note {
  color: #737b87;
  font-size: 12px;
  margin-top: 18px;
}
.amazon-button {
  margin-top: 36px;
  background: var(--blue);
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 19px 25px;
  min-width: 250px;
  justify-content: center;
  font-weight: 700;
}
.amazon-button:hover {
  background: #08388f;
}
.detail-nav {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: 1260px;
  margin: 0 auto 85px;
  display: grid;
  grid-template-columns: 1fr 130px 1fr;
  min-height: 120px;
}
.detail-nav>div {
  display: flex;
  align-items: stretch;
}
.detail-nav>div:last-child {
  justify-content: flex-end;
}
.detail-nav>div>a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 24px;
  width: 100%;
  font-size: 13px;
  line-height: 1.5;
}
.detail-nav>div:last-child a {
  text-align: right;
  justify-content: flex-end;
}
.detail-nav small {
  display: block;
  color: var(--blue);
  font: 10px Arial,sans-serif;
  letter-spacing: .13em;
  margin-bottom: 7px;
}
.all-books-link {
  display: grid;
  place-items: center;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
}
.detail-nav a:hover {
  background: #f1f5fc;
}
@media(max-width:800px) {
  .catalog-hero {
    padding: 50px 5%;
  }
  .catalog-grid {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }
  .book-detail {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 30px;
  }
  .detail-cover {
    max-width: 420px;
    width: 100%;
    margin: auto;
    padding: 45px;
  }
  .detail-main {
    padding-top: 0;
  }
  .detail-nav {
    grid-template-columns: 1fr 88px 1fr;
    margin-bottom: 55px;
  }
  .detail-nav>div>a {
    padding: 15px;
    font-size: 12px;
  }
  .detail-nav>div>a span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .all-books-link {
    font-size: 12px;
  }
}
@media(max-width:480px) {
  .catalog-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 34px 19px;
  }
  .catalog-hero h1 {
    font-size: 38px;
  }
  .book-detail {
    padding-left: 6%;
    padding-right: 6%;
  }
  .detail-cover {
    padding: 38px 50px;
  }
  .detail-main h1 {
    font-size: 30px;
  }
  .detail-intro>p:first-of-type {
    font-size: 16px;
  }
  .amazon-button {
    width: 100%;
  }
  .detail-nav {
    grid-template-columns: 1fr 76px 1fr;
  }
  .detail-nav>div>a {
    padding: 12px 8px;
  }
  .detail-nav svg {
    display: none;
  }
}
.detail-cover {
  background: #eaf0fa;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  min-height: 640px;
}
.detail-cover:before {
  content: 'BOOKS';
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) rotate(-90deg);
  font: 700 118px/1 Arial,sans-serif;
  letter-spacing: -.06em;
  color: #cfdbef;
  white-space: nowrap;
}
.detail-cover img {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 540px;
  object-fit: contain;
}
.book-cover img,.ribbon-book img {
  width: auto;
  object-fit: contain;
  aspect-ratio: auto;
}
@media(max-width:800px) {
  .detail-cover {
    min-height: 590px;
  }
  .detail-cover:before {
    font-size: 105px;
  }
}
@media(max-width:480px) {
  .detail-cover {
    min-height: 520px;
  }
  .detail-cover:before {
    font-size: 92px;
  }
}
.detail-cover:before {
  z-index: 0;
}
.detail-cover:after {
  z-index: 2;
}
.inner-hero-copy>p:last-child:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.9;
  margin-top: 20px;
}
.inner-hero.illustrated-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 35px;
  align-items: center;
  padding: 0 0 0 5.5%;
  min-height: 370px;
  overflow: hidden;
}
.illustrated-hero .inner-hero-copy {
  padding: 50px 0;
}
.illustrated-hero h1 {
  font-size: clamp(32px,3.5vw,52px);
}
.inner-hero-image {
  width: 100%;
  height: 100%;
  min-height: 370px;
  max-height: 440px;
  object-fit: cover;
}
.mission-section {
  max-width: 1246px;
  margin: auto;
  padding: 75px 5.5% 55px;
}
.mission-section h2 {
  font-family: 'Hiragino Mincho ProN','Yu Mincho',serif;
  font-size: clamp(25px,3.1vw,39px);
  font-weight: 600;
  line-height: 1.85;
  margin-top: 19px;
  letter-spacing: .025em;
}
.representative-section {
  max-width: 1246px;
  margin: auto;
  padding: 20px 5.5% 100px;
  display: grid;
  grid-template-columns: minmax(230px,.75fr) minmax(0,1.25fr);
  gap: 65px;
  align-items: start;
}
.representative-portrait img {
  width: 100%;
  height: auto;
}
.representative-portrait .signature {
  font-size: 14px;
  line-height: 1.9;
  margin-top: 0;
  padding: 22px 0;
  border-top: 0;
}
.representative-copy h2 {
  font-family: 'Hiragino Mincho ProN','Yu Mincho',serif;
  font-size: 30px;
  margin-top: 12px;
}
.representative-copy p.eyebrow {
  font: 700 12px Arial,sans-serif;
  letter-spacing: .17em;
  margin-top: 0;
}
.representative-copy p {
  line-height: 2.15;
}
.detail-cover:before {
  content: none;
}
.detail-cover {
  padding: 125px 45px 48px;
  min-height: 630px;
}
.cover-backdrop-word {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 0;
  font: 700 clamp(74px,8vw,103px)/1 Arial,sans-serif;
  letter-spacing: -.065em;
  color: #a9bddc;
  pointer-events: none;
}
.detail-cover img {
  max-height: 470px;
  height: auto;
  width: auto;
  object-fit: contain;
}
@media(max-width:800px) {
  .inner-hero.illustrated-hero {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 0;
  }
  .illustrated-hero .inner-hero-copy {
    padding: 40px 5% 32px;
  }
  .inner-hero-image {
    height: 290px;
    min-height: 0;
    max-height: none;
  }
  .representative-section {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 65px;
  }
  .representative-portrait {
    max-width: 380px;
  }
  .mission-section {
    padding: 50px 5% 35px;
  }
  .detail-cover {
    min-height: 580px;
    padding-top: 120px;
  }
  .cover-backdrop-word {
    font-size: 96px;
  }
}
@media(max-width:480px) {
  .inner-hero-image {
    height: 235px;
  }
  .illustrated-hero h1 {
    font-size: 32px;
  }
  .inner-hero-copy>p:last-child:not(.eyebrow) {
    font-size: 15px;
  }
  .representative-section {
    padding-left: 5%;
    padding-right: 5%;
  }
  .representative-copy h2 {
    font-size: 27px;
  }
  .detail-cover {
    min-height: 510px;
    padding: 110px 40px 42px;
  }
  .cover-backdrop-word {
    font-size: 84px;
    top: 18px;
  }
}
.inner-hero {
  background: var(--blue);
  color: #fff;
  padding: 70px max(5.5%,calc((100vw - 1246px)/2)) 78px;
}
.inner-hero h1 {
  font-family: 'Hiragino Mincho ProN','Yu Mincho',serif;
  font-size: clamp(38px,5vw,66px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: .06em;
  margin-top: 17px;
}
.inner-hero>p:last-child {
  font-size: 17px;
  line-height: 1.9;
  margin-top: 20px;
  letter-spacing: .03em;
}
.content-section {
  max-width: 1246px;
  margin: auto;
  padding: 80px 5.5% 100px;
  display: grid;
  grid-template-columns: minmax(230px,.8fr) minmax(0,1.2fr);
  gap: 80px;
}
.content-section h2 {
  font-family: 'Hiragino Mincho ProN','Yu Mincho',serif;
  font-size: 30px;
  line-height: 1.7;
}
.prose p {
  font-size: 16px;
  line-height: 2.05;
  margin-top: 20px;
}
.signature {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.signature strong {
  display: block;
  font-size: 24px;
  margin-top: 6px;
}
.company-page {
  padding-top: 15px;
}
.contact-page .prose>h2:not(:first-child) {
  margin-top: 52px;
}
.contact-page ul {
  margin: 24px 0 0;
  padding-left: 1.4em;
  color: #4d5663;
  line-height: 2;
}
.mail-button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: var(--blue);
  color: #fff;
  padding: 19px 25px;
  margin-top: 28px;
  font-weight: 700;
}
.mail-button:hover {
  background: #08388f;
}
.legal-page {
  max-width: 960px;
  margin: auto;
  padding: 75px 5.5% 100px;
}
.legal-page>p {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 28px;
}
.legal-page section {
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}
.legal-page h2 {
  font-size: 20px;
  line-height: 1.7;
}
.legal-page p {
  font-size: 16px;
  line-height: 2;
  margin-top: 12px;
}
.legal-list {
  border-top: 1px solid var(--border);
}
.legal-list>div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 26px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  line-height: 1.9;
}
.legal-list strong {
  font-weight: 700;
}
.business-lead {
  max-width: 950px;
  margin: auto;
  padding: 70px 5.5% 0;
}
.business-lead p {
  font-family: 'Hiragino Mincho ProN','Yu Mincho',serif;
  font-size: 22px;
  line-height: 2;
}
.service-page-grid .service h2 {
  font-size: 20px;
  margin-top: 9px;
}
.service-more {
  display: block;
  margin-top: 27px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}
.service-detail {
  max-width: 1060px;
  margin: auto;
  padding: 75px 5.5% 100px;
}
.service-intro {
  font-family: 'Hiragino Mincho ProN','Yu Mincho',serif;
  font-size: 21px;
  line-height: 2;
}
.service-content {
  margin-top: 55px;
  border-top: 1px solid var(--border);
}
.service-content section {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 25px;
  padding: 38px 0;
  border-bottom: 1px solid var(--border);
}
.service-content section>span {
  font: 27px Georgia,serif;
  color: var(--blue);
}
.service-content h2 {
  font-size: 23px;
  line-height: 1.65;
}
.service-content p {
  font-size: 16px;
  line-height: 2;
  margin-top: 15px;
  color: #4d5663;
}
.contact-inline {
  margin-top: 55px;
  padding: 35px;
  background: #eef3fb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.contact-inline h2 {
  font-size: 24px;
}
.contact-inline p {
  font-size: 15px;
  line-height: 1.8;
  margin-top: 9px;
}
.contact-inline .mail-button {
  margin-top: 0;
  flex-shrink: 0;
}
@media(max-width:800px) {
  .inner-hero {
    padding: 50px 5% 55px;
  }
  .content-section {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 55px 5% 75px;
  }
  .company-page {
    padding-top: 0;
  }
  .business-lead {
    padding-top: 48px;
  }
  .service-detail {
    padding-top: 52px;
  }
  .contact-inline {
    align-items: flex-start;
    flex-direction: column;
  }
  .contact-inline .mail-button {
    width: 100%;
    justify-content: center;
  }
  .legal-page {
    padding-top: 52px;
  }
}
@media(max-width:480px) {
  .inner-hero h1 {
    font-size: 36px;
  }
  .inner-hero>p:last-child {
    font-size: 15px;
  }
  .content-section h2 {
    font-size: 25px;
  }
  .legal-list>div {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .service-content section {
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }
  .service-content section>span {
    font-size: 22px;
  }
  .service-content h2 {
    font-size: 20px;
  }
  .service-intro,.business-lead p {
    font-size: 18px;
  }
  .service-page-grid {
    grid-template-columns: 1fr;
  }
}
.book-detail.editorial-book {
  display: block;
  position: relative;
  max-width: 1440px;
  padding: 50px 6% 90px 23%;
  isolation: isolate;
}
.editorial-book .detail-main {
  padding: 0;
}
.book-side-word {
  position: absolute;
  left: 2%;
  top: 40px;
  writing-mode: vertical-rl;
  font: 600 clamp(110px,17vw,245px)/.9 Georgia,'Times New Roman',serif;
  letter-spacing: -.055em;
  color: #ededed;
  z-index: -1;
  pointer-events: none;
}
.editorial-book .detail-main h1 {
  font-size: clamp(30px,3.5vw,52px);
  line-height: 1.6;
}
.editorial-book .detail-author {
  margin-top: 18px;
}
.editorial-book .detail-rule {
  background: #171a21;
  margin: 35px 0 50px;
}
.editorial-cover {
  margin: 0 auto 55px;
  max-width: 510px;
  text-align: center;
}
.editorial-cover img {
  margin: auto;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 740px;
  object-fit: contain;
}
.editorial-book .detail-intro {
  max-width: 780px;
  margin: auto;
}
.editorial-book .amazon-button {
  margin-top: 32px;
}
.contact-form-section {
  max-width: 950px;
  margin: auto;
  padding: 65px 6% 90px;
}
.contact-form-section>h2 {
  margin-top: 15px;
  font-family: 'Yu Mincho',serif;
}
.contact-form-lead {
  line-height: 1.9;
  margin-top: 20px;
  color: #4d5663;
}
.contact-form {
  margin-top: 40px;
  border-top: 1px solid var(--border);
}
.contact-form .input_unit {
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 210px minmax(0,1fr);
  gap: 25px;
}
.contact-form label {
  font-size: 16px;
  line-height: 1.8;
}
.contact-form .my_left label {
  font-weight: 700;
}
.contact-form .input_unit.required .my_left label:after {
  content: '必須';
  display: inline-block;
  margin-left: 10px;
  font-size: 12px;
  color: var(--blue);
  background: #edf2fc;
  padding: 1px 6px;
}
.contact-form input[type=text],.contact-form input[type=email],.contact-form textarea {
  font: inherit;
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #b9c2d0;
  border-radius: 0;
  background: #f8fafc;
  color: #171a21;
  min-height: 50px;
}
.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}
.contact-form input:focus-visible,.contact-form textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}
.contact-form .radiobutton_frame {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin: 0 0 12px;
}
.contact-form input[type=radio] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  cursor: pointer;
}
.contact-form .submit {
  margin-top: 35px;
  text-align: center;
}
.contact-form input[type=submit] {
  font: 700 16px var(--font-sans);
  background: var(--blue);
  color: white;
  border: 0;
  padding: 20px 65px;
  cursor: pointer;
}
.contact-form input[type=submit]:hover {
  background: #07388f;
}
.contact-form-note {
  font-size: 14px;
  line-height: 1.9;
  color: #687180;
  margin-top: 25px;
}
.gift-section {
  max-width: 1246px;
  margin: 0 auto;
  padding: 0 5.5% 80px;
}
.gift-banner {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 55px;
  background: #063bad;
  color: #fff;
  padding: 45px 65px;
  overflow: hidden;
}
.gift-book {
  display: flex;
  justify-content: center;
}
.gift-book img {
  height: 285px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  box-shadow: 15px 18px 25px #00195266;
  transform: rotate(-7deg);
  transition: transform .25s;
}
.gift-banner:hover .gift-book img {
  transform: rotate(-3deg);
}
.gift-copy h2 {
  font-family: 'Yu Mincho',serif;
  font-size: 42px;
  margin-top: 12px;
}
.gift-title {
  font-size: 20px;
  line-height: 1.8;
  margin-top: 14px;
}
.gift-description {
  font-size: 15px;
  line-height: 1.9;
  margin-top: 15px;
  color: #e0eaff;
}
.gift-cta {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 15px 22px;
  background: #fff;
  color: #073baf;
  font-weight: 700;
  margin-top: 25px;
}
.gift-copy small {
  display: block;
  font-size: 12px;
  margin-top: 12px;
  color: #dce6fc;
}
@media(max-width:800px) {
  .book-detail.editorial-book {
    padding: 35px 6% 65px 16%;
  }
  .book-side-word {
    font-size: 100px;
    left: 0;
    top: 45px;
  }
  .editorial-cover {
    max-width: 400px;
  }
  .gift-banner {
    gap: 28px;
    padding: 32px;
  }
  .gift-copy h2 {
    font-size: 32px;
  }
  .gift-title {
    font-size: 17px;
  }
  .gift-book img {
    height: 245px;
  }
  .contact-form .input_unit {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .contact-form-section {
    padding-top: 50px;
  }
}
@media(max-width:480px) {
  .book-detail.editorial-book {
    padding: 30px 6% 60px 13%;
  }
  .book-side-word {
    font-size: 62px;
    left: -5px;
    top: 35px;
  }
  .editorial-book .detail-main h1 {
    font-size: 27px;
  }
  .editorial-book .detail-rule {
    margin: 25px 0 35px;
  }
  .editorial-cover {
    margin-bottom: 35px;
  }
  .gift-banner {
    grid-template-columns: 1fr;
    padding: 35px 25px;
    gap: 30px;
  }
  .gift-book img {
    height: 215px;
  }
  .gift-copy h2 {
    font-size: 34px;
  }
  .gift-section {
    padding-bottom: 55px;
  }
  .gift-cta {
    width: 100%;
    justify-content: space-between;
  }
}
/* Unified blue-and-white publishing identity */
:root {
  --brand-blue: #064acb;
  --brand-blue-deep: #03399e;
  --brand-blue-soft: #edf3ff;
  --brand-red: #ff0000;
  --brand-red-text: #d60000;
  --ink: #152b50;
  --paper: #fff;
  --blue: var(--brand-blue);
  --primary: var(--brand-blue);
  --ring: var(--brand-blue);
  --muted: var(--brand-blue-soft);
  --surface-blue: #f0f5ff;
  --border: #d7e1f1;
  --accent: #edf3ff;
}
a:focus-visible {
  outline-color: var(--brand-red);
}
.header nav a:after {
  background: var(--brand-red);
}
.header-contact {
  border-color: var(--border);
}
.header-contact svg,.text-link svg,.contact-button svg,.service-more svg {
  color: var(--brand-red-text);
}
.header-contact:hover svg {
  color: #fff;
}
.section-heading .eyebrow,.mission-section>.eyebrow,.company-section>div>.eyebrow,.representative-copy>p.eyebrow,.contact-form-section>.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-heading .eyebrow:before,.mission-section>.eyebrow:before,.company-section>div>.eyebrow:before,.representative-copy>p.eyebrow:before,.contact-form-section>.eyebrow:before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  flex-shrink: 0;
  background: var(--brand-red);
}
.huge-words {
  color: var(--blue);
}
.huge-words span {
  color: var(--brand-red);
}
.service-top>span,.service-content section>span {
  color: var(--brand-red-text);
}
.service:hover {
  background: var(--brand-blue-soft);
}
.service-more {
  display: flex;
  align-items: center;
  gap: 14px;
}
.gift-banner {
  background: var(--blue);
  border-top: 3px solid var(--brand-red);
}
.gift-cta {
  color: var(--blue);
}
.gift-cta svg {
  color: var(--brand-red-text);
}
.contact-form input[type=radio] {
  accent-color: var(--brand-red-text);
}
.contact-form .input_unit.required .my_left label:after {
  background: #fff0f0;
  color: #b90000;
}
.contact-inline {
  border-left: 3px solid var(--brand-red);
  font-size: 17px;
  font-weight: 700;
  background: var(--brand-blue-soft);
  color: var(--blue);
}
.contact-inline>svg {
  color: var(--brand-red-text);
}
.contact-inline:hover {
  background: #e1ebff;
}
.about-section,.book-ribbon {
  background: var(--surface-blue);
}
.book-cover,.cover-1,.cover-2,.cover-3,.cover-4,.cover-5 {
  background: var(--surface-blue);
}
.book-side-word {
  color: #e7effc;
}
.book-open,.contact-section,.amazon-button {
  background: var(--blue);
}
.amazon-button:hover {
  background: var(--brand-blue-deep);
}
.book-detail .detail-main>.eyebrow {
  color: var(--blue);
}
.contact-form input[type=text],.contact-form input[type=email],.contact-form textarea {
  background: #f8faff;
  border-color: #bdcde8;
}
.hero.hero-future {
  background: var(--blue);
  color: #fff;
  height: auto;
  min-height: clamp(600px,48vw,770px);
}
.hero-future:after {
  display: block;
  z-index: 0;
  background: linear-gradient(90deg,rgba(3,41,132,.28),rgba(3,41,132,.06) 46%,transparent 65%);
}
.hero-future .hero-art {
  width: 100%;
  height: 100%;
  max-width: 100%;
  left: 0;
  right: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
}
.hero-future .hero-copy {
  width: 53%;
  max-width: none;
  padding: clamp(64px,6vw,92px) 2% 80px 6.5%;
  z-index: 1;
}
.hero-future .eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  letter-spacing: .14em;
  color: #fff;
}
.hero-future .eyebrow:before {
  content: '';
  width: 28px;
  height: 3px;
  background: var(--brand-red);
  flex: none;
}
.hero-future h1 {
  color: #fff;
  font-size: clamp(39px,3.8vw,61px);
  line-height: 1.62;
  letter-spacing: .015em;
  margin-top: 26px;
  text-shadow: none;
  font-weight: 600;
}
.hero-future .hero-description {
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: .035em;
  color: #edf4ff;
  margin-top: 24px;
}
.hero-future .hero-link {
  color: #fff;
  gap: 24px;
  margin-top: 28px;
}
.hero-future .hero-link span {
  border-color: #ffffff90;
  border-radius: 0;
  width: 48px;
  height: 48px;
  color: #fff;
}
.hero-future .hero-link:hover span {
  background: #fff;
  border-color: #fff;
  color: var(--blue);
}
.hero-future .hero-foot {
  left: 6.5%;
  right: 5%;
  bottom: 27px;
  color: #f0f5ff;
  letter-spacing: .12em;
  gap: 20px;
  font-size: 10px;
}
.inner-hero,.catalog-hero {
  background: var(--blue);
  color: #fff;
}
.inner-hero.illustrated-hero {
  grid-template-columns: .92fr 1.08fr;
  gap: 0;
  padding: 0;
  min-height: 450px;
  max-width: 1600px;
  margin: auto;
  background: var(--blue);
  color: #fff;
}
.inner-hero.illustrated-hero .inner-hero-copy {
  padding: 62px 9% 62px 14%;
}
.inner-hero.illustrated-hero .inner-hero-copy>.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #edf4ff;
  font-size: 12px;
  letter-spacing: .16em;
}
.inner-hero.illustrated-hero .inner-hero-copy>.eyebrow:before {
  content: '';
  display: block;
  width: 25px;
  height: 3px;
  background: var(--brand-red);
}
.inner-hero.illustrated-hero .inner-hero-copy>h1 {
  color: #fff;
  font-size: clamp(32px,3.2vw,49px);
  line-height: 1.65;
  letter-spacing: .025em;
  margin-top: 27px;
  font-weight: 600;
}
.inner-hero.illustrated-hero .inner-hero-copy>p:last-child:not(.eyebrow) {
  font-size: 16px;
  line-height: 2;
  color: #edf4ff;
  margin-top: 26px;
}
.inner-hero.illustrated-hero .inner-hero-image {
  height: 100%;
  min-height: 450px;
  max-height: 550px;
  object-fit: cover;
  object-position: center;
}
.business-lead {
  max-width: 1030px;
  padding-top: 65px;
}
.service-detail .service-intro {
  font-size: 22px;
  line-height: 2.1;
}
.service-content section {
  padding-top: 40px;
  padding-bottom: 40px;
}
.service-content section p+p {
  margin-top: 22px;
}
@media(min-width:1600px) {
  .hero-future .hero-copy {
    padding-top: 100px;
  }
}
@media(max-width:1100px) {
  .hero-future .hero-copy {
    padding-left: 5%;
    padding-top: 75px;
    width: 55%;
  }
  .hero-future h1 {
    font-size: 38px;
  }
  .hero-future .hero-foot {
    left: 5%;
  }
  .inner-hero.illustrated-hero .inner-hero-copy {
    padding: 50px 8% 50px 11%;
  }
  .inner-hero.illustrated-hero .inner-hero-image {
    min-height: 420px;
  }
  .inner-hero.illustrated-hero {
    min-height: 420px;
  }
}
@media(max-width:800px) {
  .hero.hero-future {
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  .hero-future:after {
    display: none;
  }
  .hero-future .hero-copy {
    position: relative;
    order: 1;
    width: 100%;
    padding: 45px 6% 38px;
  }
  .hero-future h1 {
    font-size: clamp(36px,6.8vw,52px);
    margin-top: 26px;
    line-height: 1.55;
  }
  .hero-future .hero-description {
    margin-top: 18px;
  }
  .hero-future .hero-link {
    margin-top: 24px;
  }
  .hero-future .hero-art {
    position: relative;
    order: 2;
    width: 100%;
    max-width: 100%;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    height: auto;
    aspect-ratio: 16/10;
    object-fit: cover;
    object-position: 70% center;
  }
  .hero-future .hero-foot {
    position: relative;
    order: 3;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    padding: 20px 6%;
    margin: 0;
    font-size: 10px;
  }
  .inner-hero.illustrated-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .inner-hero.illustrated-hero .inner-hero-copy {
    padding: 43px 6% 37px;
  }
  .inner-hero.illustrated-hero .inner-hero-copy>h1 {
    font-size: 35px;
    margin-top: 20px;
  }
  .inner-hero.illustrated-hero .inner-hero-copy>p:last-child:not(.eyebrow) {
    margin-top: 16px;
  }
  .inner-hero.illustrated-hero .inner-hero-image {
    height: 310px;
    min-height: 0;
    max-height: none;
  }
  .service-detail .service-intro {
    font-size: 19px;
  }
}
@media(max-width:480px) {
  .hero-future .hero-copy {
    padding-top: 36px;
  }
  .hero-future h1 {
    font-size: clamp(31px,8.7vw,39px);
    letter-spacing: 0;
  }
  .hero-future .eyebrow {
    font-size: 11px;
    gap: 12px;
  }
  .hero-future .hero-description {
    font-size: 15px;
  }
  .hero-future .hero-link {
    font-size: 14px;
    gap: 20px;
  }
  .hero-future .hero-foot {
    font-size: 9px;
    gap: 12px;
  }
  .hero-future .hero-foot>a {
    font-size: 9px;
  }
  .inner-hero.illustrated-hero .inner-hero-copy>h1 {
    font-size: 32px;
  }
  .inner-hero.illustrated-hero .inner-hero-image {
    height: 250px;
  }
  .contact-inline {
    padding: 27px;
    font-size: 16px;
  }
}
.author-achievements {
  max-width: 1246px;
  margin: auto;
  padding: 5px 5.5% 95px;
}
.author-achievements .section-heading {
  margin-bottom: 32px;
}
.author-achievements h2 {
  font-family: 'Hiragino Mincho ProN','Yu Mincho',serif;
  font-size: 32px;
  font-weight: 600;
}
.author-stats {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  border-top: 1px solid #cbd0d6;
  border-bottom: 1px solid #cbd0d6;
}
.author-stats>div {
  padding: 30px 24px 34px;
  border-right: 1px solid #dfe2e6;
}
.author-stats>div:first-child {
  padding-left: 0;
}
.author-stats>div:last-child {
  border-right: 0;
}
.author-stats .stat-label {
  font-size: 14px;
  color: #515c6b;
  letter-spacing: .035em;
}
.author-stats .stat-number {
  font: 400 clamp(50px,6vw,78px)/1.2 Georgia,'Times New Roman',serif;
  letter-spacing: -.04em;
  color: var(--blue);
  margin: 16px 0;
}
.stat-number .stat-unit {
  font: 500 17px var(--font-sans);
  letter-spacing: 0;
  margin-left: 7px;
}
.author-stats>div>p:last-child {
  font-size: 15px;
  line-height: 1.8;
  color: #424c59;
}
.training-record {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 42px;
  background: var(--surface-blue);
  margin-top: 35px;
  padding: 34px 36px;
  border-left: 3px solid var(--brand-red);
}
.training-record h3 {
  font-size: 20px;
  line-height: 1.7;
  margin-top: 12px;
}
.training-record>div>p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.95;
  color: #4b5563;
  margin-top: 15px;
}
.training-record .eyebrow {
  color: var(--brand-red-text);
  font-size: 12px;
}
.training-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 22px;
  align-content: center;
}
.training-record .training-numbers>p {
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
  color: #4b5563;
}
.training-numbers strong {
  display: block;
  font: 400 40px/1.4 Georgia,'Times New Roman',serif;
  color: var(--blue);
  white-space: nowrap;
}
.training-numbers strong .stat-unit {
  font: 500 13px var(--font-sans);
  margin-left: 3px;
}
.training-numbers small {
  grid-column: 1/-1;
  font-size: 12px;
  color: #667181;
}
.achievement-columns {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 65px;
  margin-top: 58px;
}
.achievement-columns h3 {
  font-size: 22px;
  line-height: 1.7;
  padding-bottom: 22px;
  border-bottom: 1px solid #b8c0cc;
}
.achievement-books>a {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 23px 0;
  border-bottom: 1px solid #e0e3e7;
}
.achievement-books h4,.achievement-activities h4 {
  font-size: 16px;
  line-height: 1.85;
  margin: 0;
  font-weight: 700;
}
.achievement-books p,.achievement-activities article>p:last-child {
  font-size: 14px;
  line-height: 1.9;
  margin-top: 10px;
  color: #4b5563;
}
.achievement-books a>svg {
  flex-shrink: 0;
  margin-top: 6px;
  color: var(--brand-red-text);
}
.achievement-books a:hover h4 {
  color: var(--blue);
}
.achievement-books small {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #737c89;
}
.achievement-activities article {
  padding: 24px 0;
  border-bottom: 1px solid #e0e3e7;
}
.achievement-activities .activity-label {
  font: 700 11px/1.4 Arial,sans-serif;
  letter-spacing: .13em;
  color: var(--brand-red-text);
  margin-bottom: 12px;
}
@media(max-width:1000px) {
  .training-record {
    gap: 25px;
    padding: 30px;
  }
  .training-numbers strong {
    font-size: 34px;
  }
  .achievement-columns {
    gap: 35px;
  }
}
@media(max-width:800px) {
  .author-achievements {
    padding-bottom: 65px;
  }
  .author-achievements h2 {
    font-size: 28px;
  }
  .author-stats>div {
    padding: 25px 16px;
  }
  .stat-number .stat-unit {
    font-size: 14px;
  }
  .training-record {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .training-numbers {
    max-width: 460px;
    gap: 20px;
  }
  .training-numbers strong {
    font-size: 42px;
  }
  .achievement-columns {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 42px;
  }
}
@media(max-width:480px) {
  .author-stats {
    grid-template-columns: 1fr;
  }
  .author-stats>div,.author-stats>div:first-child {
    border-right: 0;
    border-bottom: 1px solid #dfe2e6;
    display: grid;
    grid-template-columns: 125px 1fr;
    gap: 8px 20px;
    padding: 22px 0;
  }
  .author-stats>div:last-child {
    border-bottom: 0;
  }
  .author-stats .stat-label {
    grid-column: 1/-1;
    font-size: 13px;
  }
  .author-stats .stat-number {
    font-size: 47px;
    line-height: 1.1;
    margin: 6px 0;
    align-self: center;
  }
  .stat-number .stat-unit {
    font-size: 12px;
    margin-left: 4px;
  }
  .author-stats>div>p:last-child {
    align-self: center;
    font-size: 13px;
  }
  .training-record {
    padding: 28px 22px;
  }
  .training-record h3 {
    font-size: 18px;
  }
  .training-numbers {
    gap: 16px;
  }
  .training-numbers strong {
    font-size: 34px;
  }
  .training-numbers strong .stat-unit {
    font-size: 12px;
  }
  .training-record .training-numbers>p {
    font-size: 12px;
  }
  .achievement-columns h3 {
    font-size: 20px;
  }
}
/* Reserve the final number width; only the visible digits change. */
.count-up {
  position: relative;
  display: inline-grid;
  font-variant-numeric: tabular-nums;
  vertical-align: baseline;
}
.count-up:before {
  content: attr(data-count-display);
  visibility: hidden;
  grid-area: 1/1;
}
.count-value {
  grid-area: 1/1;
}
.count-accessible {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.activity-image {
  margin: 19px 0 16px;
}
.activity-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 1px solid var(--border);
  background: #fff;
}
.activity-image figcaption {
  font-size: 11px;
  line-height: 1.7;
  color: #667181;
  margin-top: 8px;
}
/* Mission sits beneath the image so the hero headline can breathe. */
.hero-mission-band {
  display: grid;
  grid-template-columns: auto minmax(0,1fr) 36px;
  align-items: center;
  gap: 30px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 24px 6.5%;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.hero-mission-band .mission-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font: 700 11px/1.6 Arial,sans-serif;
  letter-spacing: .12em;
  color: var(--blue);
  white-space: nowrap;
}
.hero-mission-band .mission-kicker:before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--brand-red);
  flex: none;
}
.hero-mission-band .mission-statement {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: .015em;
  color: var(--ink);
  text-wrap: pretty;
}
.hero-mission-band>a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--brand-red-text);
  transition: background .2s;
}
.hero-mission-band>a:hover {
  background: var(--brand-blue-soft);
}
@media(max-width:1100px) {
  .hero-mission-band {
    gap: 22px;
    padding: 22px 5%;
  }
  .hero-mission-band .mission-statement {
    font-size: 15px;
  }
}
@media(max-width:800px) {
  .hero-mission-band {
    grid-template-columns: minmax(0,1fr) 36px;
    gap: 10px 18px;
    padding: 23px 6%;
  }
  .hero-mission-band .mission-kicker {
    grid-column: 1;
    grid-row: 1;
  }
  .hero-mission-band .mission-statement {
    grid-column: 1;
    grid-row: 2;
    font-size: 15px;
    line-height: 1.85;
  }
  .hero-mission-band>a {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }
}
@media(max-width:480px) {
  .hero-mission-band {
    padding-top: 21px;
    padding-bottom: 21px;
  }
  .hero-mission-band .mission-statement {
    font-size: 14px;
  }
  .hero-mission-band .mission-kicker {
    font-size: 10px;
  }
}
/* Five business areas and the producer education page. */
.service-grid.services-five {
  grid-template-columns: repeat(6,minmax(0,1fr));
}
.services-five>.service {
  grid-column: span 2;
}
.services-five>.service:nth-last-child(-n+2) {
  grid-column: span 3;
}
.services-five .service h2,.services-five .service h3 {
  overflow-wrap: anywhere;
}
.inner-hero.illustrated-hero.producer-hero {
  grid-template-columns: .9fr 1.1fr;
  min-height: 490px;
}
.inner-hero.illustrated-hero.producer-hero .inner-hero-copy>h1 {
  font-size: clamp(30px,3vw,44px);
  line-height: 1.6;
  letter-spacing: .015em;
}
.producer-hero-visual {
  margin: 0;
  padding: 48px 8% 42px 2%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  min-width: 0;
}
.producer-app-frame {
  border: 1px solid #ffffff6b;
  box-shadow: 0 18px 48px #00245b45;
  background: #fff;
}
.producer-app-frame img {
  width: 100%;
  height: auto;
}
.producer-hero-visual figcaption {
  font-size: 12px;
  line-height: 1.85;
  color: #edf4ff;
  letter-spacing: .025em;
}
.producer-hero-visual figcaption span {
  display: block;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
  letter-spacing: .04em;
}
.producer-section {
  max-width: 1246px;
  margin: 0 auto;
  padding: 76px 5.5%;
}
.producer-section-heading>.eyebrow,.producer-record-copy>.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}
.producer-section-heading>.eyebrow:before,.producer-record-copy>.eyebrow:before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--brand-red);
  flex: none;
}
.producer-section h2 {
  font-family: 'Hiragino Mincho ProN','Yu Mincho',serif;
  font-size: 31px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: .015em;
  margin-top: 16px;
}
.producer-overview {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 36px 65px;
}
.producer-overview-copy p {
  font-size: 16px;
  line-height: 2.05;
  color: #4d596b;
}
.producer-overview-copy .producer-lead {
  font-family: 'Hiragino Mincho ProN','Yu Mincho',serif;
  font-size: 22px;
  line-height: 1.95;
  color: var(--ink);
  margin-bottom: 20px;
}
.producer-pillars {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  margin-top: 14px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.producer-pillars article {
  padding: 29px 28px 31px;
  border-right: 1px solid var(--border);
}
.producer-pillars article:first-child {
  padding-left: 0;
}
.producer-pillars article:last-child {
  border-right: 0;
  padding-right: 0;
}
.producer-number {
  font: 400 29px/1.2 Georgia,serif;
  color: var(--brand-red-text);
}
.producer-pillars h3 {
  font-size: 19px;
  line-height: 1.8;
  margin: 20px 0 13px;
}
.producer-pillars p {
  font-size: 15px;
  line-height: 1.95;
  color: #4d596b;
}
.producer-record {
  background: var(--surface-blue);
}
.producer-record-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 65px;
  padding-bottom: 65px;
}
.producer-record-copy>p:not(.eyebrow) {
  font-size: 16px;
  line-height: 2.05;
  color: #4d596b;
  margin-top: 23px;
}
.producer-record-copy .text-link {
  margin-top: 23px;
}
.producer-record-numbers {
  border-top: 1px solid #c0cee5;
}
.producer-record-numbers>div {
  padding: 22px 0;
  border-bottom: 1px solid #c0cee5;
}
.producer-record-numbers p {
  font-size: 14px;
  color: #4b5d78;
}
.producer-record-numbers strong {
  display: block;
  font: 400 clamp(54px,6vw,76px)/1.2 Georgia,serif;
  letter-spacing: -.03em;
  color: var(--blue);
  margin-top: 10px;
  white-space: nowrap;
}
.producer-record-numbers strong span {
  font: 500 16px var(--font-sans);
  letter-spacing: 0;
  margin-left: 9px;
}
.producer-record-numbers small {
  display: block;
  font-size: 12px;
  color: #667181;
  margin-top: 15px;
}
.kinpro-app-intro {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 65px;
}
.kinpro-app-intro h3 {
  font-size: 23px;
  line-height: 1.8;
  margin-bottom: 17px;
}
.kinpro-app-intro>div>p:not(.eyebrow) {
  font-size: 16px;
  line-height: 2.05;
  color: #4d596b;
}
.kinpro-app-intro>div>p+p {
  margin-top: 17px;
}
.kinpro-tools {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  margin-top: 45px;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.kinpro-tools article {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 25px 22px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.kinpro-tools article>span {
  font: 400 19px/1.6 Georgia,serif;
  color: var(--brand-red-text);
  flex: none;
}
.kinpro-tools h3 {
  font-size: 15px;
  line-height: 1.8;
}
.kinpro-tools p {
  font-size: 14px;
  line-height: 1.9;
  color: #596577;
  margin-top: 8px;
}
.kinpro-screen-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin: 58px 0 25px;
}
.kinpro-screen-heading h3 {
  font-size: 23px;
  line-height: 1.7;
}
.kinpro-screen-heading p {
  font-size: 14px;
  color: #667181;
  line-height: 1.8;
}
.kinpro-screens {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 38px 30px;
}
.kinpro-screens figure {
  margin: 0;
  min-width: 0;
}
.kinpro-screens img {
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  background: #fff;
}
.kinpro-screens figcaption {
  padding: 18px 0 0;
}
.kinpro-screens h4 {
  font-size: 17px;
  line-height: 1.8;
  margin: 0;
}
.kinpro-screens p {
  font-size: 14px;
  line-height: 1.9;
  color: #596577;
  margin-top: 7px;
}
.producer-contact h2 {
  font-size: 30px;
}
.producer-contact .contact-button {
  gap: 24px;
}
.producer-back {
  max-width: 1246px;
  margin: auto;
  padding: 35px 5.5% 0;
  text-align: right;
}
@media(max-width:1000px) {
  .producer-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }
  .producer-overview,.producer-record-inner,.kinpro-app-intro {
    gap: 30px;
  }
  .producer-section h2 {
    font-size: 27px;
  }
  .producer-overview-copy .producer-lead {
    font-size: 20px;
  }
  .producer-pillars article {
    padding-right: 20px;
    padding-left: 20px;
  }
  .producer-pillars h3 {
    font-size: 17px;
  }
  .kinpro-tools article {
    padding: 22px 16px;
    gap: 10px;
  }
}
@media(max-width:800px) {
  .service-grid.services-five {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .services-five>.service,.services-five>.service:nth-last-child(-n+2) {
    grid-column: span 1;
  }
  .services-five>.service:last-child {
    grid-column: span 2;
  }
  .inner-hero.illustrated-hero.producer-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .inner-hero.illustrated-hero.producer-hero .inner-hero-copy>h1 {
    font-size: 33px;
  }
  .producer-hero-visual {
    padding: 0 6% 32px;
    gap: 16px;
  }
  .producer-section {
    padding: 52px 6%;
  }
  .producer-overview,.producer-record-inner,.kinpro-app-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .producer-section h2 {
    font-size: 28px;
  }
  .producer-pillars {
    grid-template-columns: 1fr;
  }
  .producer-pillars article,.producer-pillars article:first-child,.producer-pillars article:last-child {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .producer-pillars article:last-child {
    border-bottom: 0;
  }
  .producer-pillars h3 {
    font-size: 19px;
    margin-top: 12px;
  }
  .producer-record-numbers {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 18px;
  }
  .producer-record-numbers>div {
    padding: 22px 0 18px;
  }
  .producer-record-numbers strong {
    font-size: 54px;
  }
  .producer-record-numbers strong span {
    font-size: 14px;
    margin-left: 5px;
  }
  .producer-record-numbers small {
    grid-column: 1/-1;
    margin-top: 0;
  }
  .kinpro-tools {
    grid-template-columns: repeat(2,minmax(0,1fr));
    margin-top: 34px;
  }
  .kinpro-screen-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    margin-top: 43px;
  }
  .kinpro-screens {
    gap: 28px 22px;
  }
  .producer-contact h2 {
    font-size: 28px;
  }
}
@media(max-width:480px) {
  .service-grid.services-five {
    grid-template-columns: 1fr;
  }
  .services-five>.service:last-child {
    grid-column: span 1;
  }
  .inner-hero.illustrated-hero.producer-hero .inner-hero-copy>h1 {
    font-size: 30px;
  }
  .producer-section h2 {
    font-size: 25px;
  }
  .producer-overview-copy .producer-lead {
    font-size: 19px;
  }
  .producer-record-numbers {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .producer-record-numbers strong {
    font-size: 64px;
  }
  .producer-record-numbers strong span {
    font-size: 16px;
    margin-left: 8px;
  }
  .producer-record-numbers small {
    margin-top: 15px;
  }
  .kinpro-app-intro h3 {
    font-size: 21px;
  }
  .kinpro-tools {
    grid-template-columns: 1fr;
  }
  .kinpro-tools article {
    padding: 21px;
    gap: 17px;
  }
  .kinpro-screens {
    grid-template-columns: 1fr;
    gap: 29px;
  }
  .producer-contact h2 {
    font-size: 25px;
  }
  .producer-contact .contact-button {
    font-size: 14px;
  }
}
/* KinプロAPP: official workflow, feature examples, videos and course access. */
.kinpro-video {
  margin: 0;
  min-width: 0;
}
.kinpro-video>figcaption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 0 0 15px;
}
.kinpro-video>figcaption h3,.kinpro-video>figcaption h4 {
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}
.kinpro-video>figcaption>span {
  flex: none;
  font: 500 12px/1.5 var(--font-sans);
  color: #667181;
}
.kinpro-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #071d42;
  border: 1px solid var(--border);
}
.kinpro-video-frame iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.kinpro-intro-video {
  max-width: 860px;
  margin: 52px auto 0;
}
.kinpro-workflow {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 48px;
  margin-top: 76px;
  padding-top: 64px;
  border-top: 1px solid var(--border);
}
.kinpro-workflow>div,.kinpro-guide>div {
  min-width: 0;
}
.kinpro-workflow h3,.kinpro-guide h3,.kinpro-pricing h3 {
  font-size: 25px;
  line-height: 1.8;
  letter-spacing: .015em;
  margin: 15px 0 18px;
}
.kinpro-workflow>div>p:not(.eyebrow),.kinpro-guide>div>p:not(.eyebrow),.kinpro-pricing>.producer-section-heading>p:not(.eyebrow) {
  font-size: 15px;
  line-height: 2;
  color: #4d596b;
}
.kinpro-workflow figure {
  margin: 0;
  min-width: 0;
}
.kinpro-workflow figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
}
.kinpro-workflow figcaption {
  font-size: 11px;
  line-height: 1.8;
  color: #667181;
  margin-top: 10px;
}
.kinpro-notification {
  margin-top: 24px;
  padding: 17px 20px;
  background: var(--surface-blue);
  border-left: 2px solid var(--blue);
}
.kinpro-notification strong {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
  color: var(--blue);
}
.kinpro-notification p {
  font-size: 13px;
  line-height: 1.9;
  color: #4d596b;
  margin-top: 7px;
}
.kinpro-feature-heading {
  margin-top: 70px;
}
.kinpro-feature-heading h3 {
  font-size: 25px;
  line-height: 1.8;
  margin-bottom: 13px;
}
.kinpro-feature-heading p {
  font-size: 15px;
  line-height: 2;
  color: #4d596b;
}
.kinpro-feature-heading+.kinpro-tools {
  margin-top: 26px;
}
.kinpro-update-note {
  margin-top: 26px;
  padding: 29px 32px 31px;
  background: var(--surface-blue);
  border-left: 3px solid var(--brand-red);
}
.kinpro-update-note h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.85;
  margin: 12px 0 10px;
}
.kinpro-update-note>p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.95;
  color: #4d596b;
}
.kinpro-guide {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 46px;
  margin-top: 68px;
  padding-top: 58px;
  border-top: 1px solid var(--border);
}
.kinpro-pricing {
  margin-top: 72px;
  padding-top: 58px;
  border-top: 1px solid var(--border);
}
.kinpro-pricing h3 {
  margin-bottom: 12px;
}
.kinpro-price-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.kinpro-standard-price {
  min-width: 0;
  padding: 31px 32px;
  background: #fff;
  border: 1px solid var(--border);
}
.kinpro-standard-price h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--border);
}
.kinpro-standard-price dl {
  margin: 0;
  padding: 0;
  border: 0;
}
.kinpro-standard-price dl>div {
  display: grid;
  grid-template-columns: auto minmax(0,1fr);
  align-items: baseline;
  gap: 12px;
  margin: 0;
  padding: 23px 0;
  border: 0;
  border-bottom: 1px solid var(--border);
}
.kinpro-standard-price dl>div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.kinpro-standard-price dt {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  color: #4d596b;
  white-space: nowrap;
}
.kinpro-standard-price dd {
  margin: 0;
  padding: 0;
  text-align: right;
  font-size: 15px;
  line-height: 1.5;
  white-space: nowrap;
  color: var(--ink);
}
.kinpro-standard-price dd strong {
  font: 400 clamp(32px,3.1vw,42px)/1.2 Georgia,'Times New Roman',serif;
  letter-spacing: -.025em;
  margin-right: 6px;
}
.kinpro-course-price {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 27px 30px 30px;
  background: var(--blue);
  color: #fff;
  text-align: center;
}
.kinpro-course-price:before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  width: 44px;
  height: 3px;
  background: var(--brand-red);
}
.kinpro-benefit-label {
  font-size: 12px;
  line-height: 1.85;
  letter-spacing: .025em;
  color: #fff;
}
.kinpro-course-price h4 {
  font-size: 18px;
  line-height: 1.8;
  margin-top: 20px;
  font-weight: 500;
  color: #fff;
}
.kinpro-zero {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 9px;
  margin: 0 0 13px;
  color: #fff;
}
.kinpro-zero strong {
  font: 400 90px/1.05 Georgia,'Times New Roman',serif;
  letter-spacing: -.035em;
}
.kinpro-zero span {
  font-size: 23px;
  font-weight: 500;
}
.kinpro-course-price>p:last-child {
  font-size: 12px;
  line-height: 1.85;
  max-width: 310px;
  color: #fff;
}
@media(max-width:1000px) {
  .kinpro-workflow {
    gap: 30px;
  }
  .kinpro-guide {
    gap: 30px;
  }
  .kinpro-workflow h3,.kinpro-guide h3,.kinpro-pricing h3 {
    font-size: 23px;
  }
  .kinpro-price-options {
    gap: 20px;
  }
  .kinpro-standard-price {
    padding: 26px 24px;
  }
  .kinpro-course-price {
    padding: 26px 24px;
  }
  .kinpro-standard-price dd strong {
    font-size: 34px;
  }
}
@media(max-width:800px) {
  .kinpro-intro-video {
    margin-top: 36px;
  }
  .kinpro-workflow,.kinpro-guide {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 48px;
    padding-top: 40px;
  }
  .kinpro-workflow figure {
    max-width: 620px;
  }
  .kinpro-feature-heading {
    margin-top: 46px;
  }
  .kinpro-feature-heading h3 {
    font-size: 23px;
  }
  .kinpro-update-note {
    padding: 24px 26px;
  }
  .kinpro-update-note h3 {
    font-size: 19px;
  }
  .kinpro-pricing {
    margin-top: 48px;
    padding-top: 40px;
  }
  .kinpro-price-options {
    grid-template-columns: 1fr;
  }
  .kinpro-standard-price dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .kinpro-standard-price dl>div {
    grid-template-columns: 1fr;
    gap: 9px;
    border-bottom: 0;
    padding: 22px 0 0;
  }
  .kinpro-standard-price dd {
    text-align: left;
  }
  .kinpro-standard-price dd strong {
    font-size: 38px;
  }
  .kinpro-course-price {
    padding: 30px 24px 32px;
  }
  .kinpro-zero strong {
    font-size: 86px;
  }
}
@media(max-width:480px) {
  .kinpro-video>figcaption h3,.kinpro-video>figcaption h4 {
    font-size: 15px;
  }
  .kinpro-video>figcaption {
    padding-bottom: 12px;
  }
  .kinpro-workflow h3,.kinpro-guide h3,.kinpro-pricing h3 {
    font-size: 22px;
  }
  .kinpro-notification {
    padding: 16px 18px;
  }
  .kinpro-feature-heading h3 {
    font-size: 22px;
  }
  .kinpro-feature-heading p br {
    display: none;
  }
  .kinpro-update-note {
    padding: 23px 20px;
  }
  .kinpro-update-note h3 {
    font-size: 18px;
  }
  .kinpro-standard-price {
    padding: 24px 20px;
  }
  .kinpro-standard-price h4 {
    padding-bottom: 18px;
  }
  .kinpro-standard-price dl {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .kinpro-standard-price dl>div {
    grid-template-columns: auto minmax(0,1fr);
    gap: 10px;
    padding: 21px 0;
    border-bottom: 1px solid var(--border);
  }
  .kinpro-standard-price dd {
    text-align: right;
  }
  .kinpro-standard-price dd strong {
    font-size: 32px;
  }
  .kinpro-standard-price dt {
    font-size: 13px;
  }
  .kinpro-course-price:before {
    left: 20px;
  }
  .kinpro-course-price h4 {
    margin-top: 18px;
  }
  .kinpro-zero strong {
    font-size: 80px;
  }
}
/* Publishing news follows the business introduction. */
.news-section {
  padding-top: 0;
  padding-bottom: 80px;
}
.news-layout {
  display: grid;
  grid-template-columns: 230px minmax(0,1fr);
  gap: 48px;
  padding: 44px;
  background: var(--surface-blue);
}
.news-heading>.eyebrow,.news-archive-hero>.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 11px;
  letter-spacing: .12em;
}
.news-heading>.eyebrow:before,.news-archive-hero>.eyebrow:before {
  content: '';
  width: 20px;
  height: 2px;
  flex: none;
  background: var(--brand-red);
}
.news-heading h2 {
  font-size: 29px;
  margin-top: 15px;
  color: var(--ink);
}
.news-lead {
  font-size: 14px;
  line-height: 1.95;
  color: #4d596b;
  margin-top: 15px;
}
.news-heading>.text-link {
  margin-top: 25px;
}
.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
}
.news-list>li {
  border-bottom: 1px solid var(--border);
}
.news-item {
  display: grid;
  grid-template-columns: 146px minmax(0,1fr) 24px;
  gap: 17px;
  align-items: center;
  padding: 27px 0;
  transition: color .2s;
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.news-meta time {
  font: 500 13px/1.7 Arial,sans-serif;
  letter-spacing: .035em;
  color: #5a6980;
  white-space: nowrap;
}
.news-category {
  display: inline-block;
  min-width: 45px;
  text-align: center;
  padding: 3px 9px;
  border: 1px solid #c3d2ea;
  background: #fff;
  color: var(--blue);
  font-size: 11px;
  line-height: 1.65;
  white-space: nowrap;
}
.news-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  overflow-wrap: anywhere;
}
.news-arrow {
  display: flex;
  align-items: center;
  color: var(--brand-red-text);
  transition: transform .2s;
}
.news-item:hover .news-title {
  color: var(--blue);
}
.news-item:hover .news-arrow {
  transform: translateX(4px);
}
.news-section+.company-section {
  padding-top: 0;
}
.news-archive-hero {
  max-width: 1400px;
  margin: 0 auto;
  background: var(--surface-blue);
  padding: 64px 5.5% 57px;
}
.news-archive-hero h1 {
  font-family: 'Hiragino Mincho ProN','Yu Mincho',serif;
  font-size: 40px;
  line-height: 1.65;
  letter-spacing: .045em;
  margin-top: 20px;
  color: var(--ink);
}
.news-archive-hero>p:last-child {
  font-size: 15px;
  line-height: 1.9;
  color: #4d596b;
  margin-top: 17px;
}
.news-archive {
  max-width: 1100px;
  padding-top: 55px;
  padding-bottom: 80px;
  min-height: 340px;
}
.news-archive .news-item {
  padding: 32px 0;
  grid-template-columns: 170px minmax(0,1fr) 24px;
  gap: 24px;
}
.news-detail {
  max-width: 1080px;
  margin: 0 auto;
  padding: 25px 5.5% 70px;
}
.news-detail>header {
  padding: 0 0 32px;
  border-bottom: 1px solid var(--border);
}
.news-detail>header>.news-meta {
  margin-top: 25px;
}
.news-detail h1 {
  font-family: 'Hiragino Mincho ProN','Yu Mincho',serif;
  font-size: clamp(27px,3vw,38px);
  line-height: 1.8;
  letter-spacing: .035em;
  margin-top: 21px;
  color: var(--ink);
  overflow-wrap: anywhere;
}
.news-detail-body {
  padding-top: 34px;
  max-width: 800px;
}
.news-detail-body p {
  font-size: 17px;
  line-height: 2.1;
  margin-bottom: 20px;
}
.news-detail-media {
  margin: 34px 0 18px;
}
.news-detail-media img {
  width: 100%;
  height: auto;
}
.news-detail-media figcaption {
  font-size: 12px;
  line-height: 1.9;
  color: #667181;
  margin-top: 11px;
}
.news-media-cover {
  max-width: 210px;
  margin: 32px auto;
  text-align: center;
}
.news-media-cover img {
  box-shadow: 0 12px 24px #152b5018;
}
.news-detail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 20px 27px;
  margin-top: 16px;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.news-detail-link:hover {
  background: var(--brand-blue-deep);
}
.news-detail-back {
  margin-top: 55px;
  padding-top: 27px;
  border-top: 1px solid var(--border);
}
@media(max-width:1100px) {
  .news-layout {
    grid-template-columns: 205px minmax(0,1fr);
    gap: 32px;
    padding: 34px;
  }
  .news-item {
    grid-template-columns: 1fr 24px;
    gap: 10px 20px;
  }
  .news-item>.news-meta {
    grid-column: 1;
    grid-row: 1;
  }
  .news-item>.news-title {
    grid-column: 1;
    grid-row: 2;
  }
  .news-item>.news-arrow {
    grid-column: 2;
    grid-row: 1/3;
  }
  .news-archive .news-item {
    grid-template-columns: 1fr 24px;
  }
}
@media(max-width:800px) {
  .news-section {
    padding-bottom: 55px;
  }
  .news-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px;
  }
  .news-heading {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 0 20px;
  }
  .news-heading>.eyebrow {
    grid-column: 1/-1;
  }
  .news-heading h2 {
    grid-column: 1;
    grid-row: 2;
    font-size: 27px;
  }
  .news-heading>.news-lead {
    grid-column: 1;
    grid-row: 3;
    margin-top: 8px;
  }
  .news-heading .news-lead br {
    display: none;
  }
  .news-heading>.text-link {
    grid-column: 2;
    grid-row: 2/4;
    align-self: end;
    margin: 0;
  }
  .news-item {
    padding: 23px 0;
  }
  .news-archive-hero {
    padding: 44px 6%;
  }
  .news-archive-hero h1 {
    font-size: 33px;
  }
  .news-archive {
    padding: 35px 6% 60px;
  }
  .news-archive .news-item {
    padding: 26px 0;
    gap: 11px 18px;
  }
  .news-detail {
    padding: 15px 6% 55px;
  }
  .news-detail h1 {
    font-size: 29px;
  }
  .news-detail-body p {
    font-size: 16px;
  }
  .news-detail-back {
    margin-top: 42px;
  }
}
@media(max-width:480px) {
  .news-layout {
    padding: 28px 23px;
  }
  .news-heading {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .news-heading h2 {
    font-size: 26px;
  }
  .news-heading>.news-lead {
    grid-column: 1;
    grid-row: 3;
  }
  .news-heading>.text-link {
    grid-column: 1;
    grid-row: 4;
    justify-self: start;
    margin-top: 16px;
  }
  .news-title {
    font-size: 15px;
  }
  .news-meta time {
    font-size: 12px;
  }
  .news-archive-hero h1 {
    font-size: 31px;
  }
  .news-detail h1 {
    font-size: 26px;
  }
  .news-detail>header {
    padding-bottom: 26px;
  }
  .news-detail-body {
    padding-top: 27px;
  }
  .news-detail-link {
    display: flex;
    padding: 19px 22px;
    font-size: 14px;
    gap: 14px;
  }
  .news-detail-link svg {
    flex: none;
  }
  .news-detail>header>.news-meta {
    margin-top: 22px;
  }
}
@media(prefers-reduced-motion:reduce) {
  .news-item,.news-arrow {
    transition: none;
  }
  .news-item:hover .news-arrow {
    transform: none;
  }
}
/* Keep the original illustration and copy in one mobile hero. */
@media(max-width:800px) {
  .hero.hero-future {
    display: block;
    position: relative;
    min-height: 560px;
  }
  .hero-future .hero-art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: 66% center;
  }
  .hero-future:after {
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(3,35,110,.88),rgba(3,35,110,.54) 63%,rgba(3,35,110,.16));
    z-index: 0;
  }
  .hero-future .hero-copy {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 58px 6% 84px;
  }
  .hero-future .hero-foot {
    position: absolute;
    z-index: 1;
    left: 6%;
    right: 6%;
    bottom: 22px;
    width: auto;
    padding: 0;
  }
}
/* Scroll-led typewriter reveals are reserved for copy that benefits from a paced read. */
.huge-words .huge-word {
  color: var(--blue);
}
.huge-words .huge-words-period {
  color: var(--brand-red);
}
.typewriter-effect {
  position: relative;
}
.js-scroll-effects .typewriter-effect:not(.is-ready) {
  visibility: hidden;
}
.typewriter-effect .typewriter-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(.2em);
}
.typewriter-effect.is-visible .typewriter-char {
  animation: typewriter-character .09s ease-out forwards;
  animation-delay: calc(var(--char-index) * .09s);
}
.typewriter-caret {
  display: none;
  width: 2px;
  height: 1em;
  margin: 0 4px 0 2px;
  background: var(--brand-red);
  vertical-align: -.12em;
  animation: typewriter-caret .8s steps(1,end) infinite;
}
.typewriter-effect.is-visible .typewriter-caret {
  display: inline-block;
}
@keyframes typewriter-character {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes typewriter-caret {
  0%,48% {
    opacity: 1;
  }
  49%,100% {
    opacity: 0;
  }
}
@media(max-width:480px) {
  .typewriter-caret {
    margin-right: 3px;
  }
}
@media(prefers-reduced-motion:reduce) {
  .typewriter-caret {
    display: none;
  }
  .typewriter-effect .typewriter-char {
    opacity: 1;
    transform: none;
  }
  .js-scroll-effects .typewriter-effect:not(.is-ready) {
    visibility: visible;
  }
  .typewriter-effect.is-visible .typewriter-char {
    animation: none;
  }
}
