:root {
  --blue: #036ab2;
  --blue-dark: #0a3d78;
  --yellow: #ffe600;
  --brown: #534741;
  --bg-top-bottom: #acd5e7;
  --bg-bottom-color: #d0eaf9;
  --font-heading: "sichandic", sans-serif;
  --font-body: "zen-kaku-gothic-new", sans-serif;
  --header-h: 88px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  position: relative;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--brown);
  line-height: 1.8;
  background-color: #ffffff;
  background-image: url(../img/bg_top.jpg);
  background-repeat: no-repeat;
  background-position: center 1096px;
  background-size: auto;
  overflow-x: hidden;
}

.topics-inner a{
    width:30%;
    display:block;
}

.topics-inner img{
    width:100%;
    display:block;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 8px 14px;
  background: #fff;
  color: var(--blue-dark);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.bg-bottom-layer {
  position: absolute;
  top: 4227px;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../img/bg_bottom_repeat.jpg);
  background-repeat: repeat-y;
  background-position: top center;
  background-size: auto;
  z-index: -1;
  pointer-events: none;
}

img { max-width: 100%; display: block; }

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

.inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / Nav ---------- */

.nav{
	margin-top: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  height: var(--header-h);
}

.header-inner {
  width: 100%;
  max-width: none;
  margin: 0 auto;
	margin-top: 10px;
  height: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
}

.header-logo {
  position: absolute;
  top: 42px;
  left: 62px;
	width: 150px;
}

.header-logo img {
  width: 139px;
}

.header-35logo {
  position: absolute;
  top: 31px;
  right: 62px;
  width: 177px;
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 45px;
}

.nav a {
  display: block;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--blue-dark);
  white-space: nowrap;
}

.nav-combo span {
  display: block;
  font-family: var(--font-heading);
  letter-spacing: 0.03em;
}

.hamburger {
  display: none;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--blue-dark);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Scroll marquee ---------- */

.scroll-text-wrap {
  width: 100vw;
  height: 36px;
  overflow: hidden;
  background-image: url(../img/header_scroll_text_bg.jpg);
  background-repeat: repeat-x;
  background-size: auto;
  background-position: top left;
  display: flex;
  align-items: center;
  line-height: 0;
}

.scroll-text-track {
  display: flex;
  width: max-content;
  gap: 0;
  margin: 0;
  padding: 0;
  animation: marquee 62s linear infinite;
}

.scroll-text-track img {
  height: 18px;
  width: auto;
  flex-shrink: 0;
  max-width: none;
  display: block;
  margin: 0;
  padding: 0;
}

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ---------- Hero ---------- */

.hero {
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 38px 24px 72px;
  text-align: center;
  overflow: hidden;
}

.hero-copy {
  width: 100%;
  max-width: 568px;
  margin: 0 auto -25px;
}

.hero-carousel-wrap {
  position: relative;
  max-width: none;
  margin: 0 auto;
  --carousel-gap: 40px;
  --carousel-item-w: 700px;
}

.hero-illust {
  position: absolute;
  top: 180px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1435px;
  height: 673px;
  max-width: none;
  z-index: 2;
  pointer-events: none;
}

.carousel-viewport {
  position: relative;
  left: calc(50% + 30px);
  z-index: 1;
  width: 2180px;
  max-width: none;
  margin: 0;
  transform: translateX(-50%);
  overflow: hidden;
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: var(--carousel-gap);
  will-change: transform;
}

.carousel-item {
  flex: 0 0 var(--carousel-item-w);
  margin-right: 0;
  opacity: 0.65;
  filter: saturate(0.78);
  transform: scale(0.92);
  transform-origin: center center;
  transition:
    opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, filter, transform;
}

.carousel-item.is-active {
  opacity: 1;
  filter: saturate(1);
  transform: scale(1);
}

.carousel-item img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-title {
  width: 100%;
  max-width: 912px;
  margin: -88px auto 0;
  position: relative;
  z-index: 3;
  mix-blend-mode: multiply;
}

/* ---------- Topics ---------- */

.topics {
  width: 100%;
  margin: 0 auto;
  padding: 6px 24px 62px;
}

.topics-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
}



/* ---------- Intro / Concept ---------- */

.intro {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.intro-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 38px 0 0;
  text-align: center;
}

.intro-copy {
  font-size: 18px;
  font-weight: 500;
  line-height: 2.05;
  margin: 0 0 12px;
  transform: translateY(-110px);
}

.intro-credit {
  font-size: 14px;
  margin: 0 0 40px;
	transform: translateY(-110px);
}

.intro-copy-wrap {
  position: relative;
  max-width: 700px;
  min-height: 620px;
  margin: 0 auto;
  padding: 126px 0 112px;
}

.cp {
  position: absolute;
  max-width: none;
}

.cp-lt {
  top: 18px;
  left: -240px;
  width: 305px;
}

.cp-rt {
top: 14px;
    right: -100px;
  width: 197px;
}

.cp-lb {
bottom: 76px;
    left: -102px;
  width: 332px;
}

.cp-rb {
right: -75px;
    bottom: 40px;
  width: 520px;
}

.concept {
  padding: 28px 0 0;
  position: relative;
  z-index: 1;
}

.concept-sub {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 22px;
  color: var(--blue);
  margin: 0 0 12px;
}

.concept-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 44px;
  color: var(--blue);
  line-height: 1.4;
  margin: 0 0 50px;
}

/* ---------- Values band + grid ---------- */

.values-band {
  width: 100%;
  margin: 0 auto;
  position: relative;
  min-height: 185px;
  padding: 38px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url(../img/concspt_bg.png);
  background-repeat: repeat-x;
  background-position: center top;
  background-size: auto 185px;
}

.values-band-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.values-title {
  width: 1000px;
  max-width: none;
  margin: 0 auto;
}

.values-grid {
  width: 820px;
  max-width: 820px;
  margin: 0 auto;
  padding: 66px 24px 92px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
}

.values-grid img:nth-child(1) { order: 1; } /* Slow */
.values-grid img:nth-child(2) { order: 4; } /* Small */
.values-grid img:nth-child(3) { order: 2; } /* Simple */
.values-grid img:nth-child(4) { order: 5; } /* Sustainable */
.values-grid img:nth-child(5) { order: 3; } /* Smile */

.values-grid img {
  width: 235px;
}

/* ---------- Book ---------- */

.book {
  width: 1000px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 40px 24px 112px;
  text-align: center;
}

.book-heading-wrap {
  position: relative;
  width: 760px;
  margin: 0 auto 0px;
}

.book-person {
  position: absolute;
  left: -72px;
  bottom: -26px;
  width: 180px;
}

.book-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 43px;
  color: var(--blue);
  line-height: 1.4;
  margin: 0;
}

.book-body {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 40px;

  width: 1000px;
  max-width: calc(100% - 80px);
  margin-right: auto;
  margin-left: auto;
	margin-top: 20px;
}

.book-text p:first-child{
	line-height: 2.2;
}

.bookinfo{
	font-size: 14px;
	line-height: 1.8;
}

.book-day{
	display: block;
}

.book-cover {
 display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0;
  justify-self: end;
  transform: none;
	margin: 0 auto;
}

.book-text {
  width: 460px;
  max-width: 460px;
  padding-top: 28px;
  font-size: 15px;
  line-height: 1.9;
	min-width: 0;
	text-align: left;
}

.book-catch {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-dark);
  margin: 24px 0 8px;
}

.book-date {
  font-size: 16px;
	text-align: center;
}

/* ---------- Year start section ---------- */

.year-start {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.year-start-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0px 24px 104px;
  text-align: left;
}

.year-start-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 66px;
  margin-bottom: 72px;
}

.year-start-logo {
  width: 310px;
  flex-shrink: 0;
  margin: 0;
}

.year-start-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 44px;
  text-align: center;
  color: var(--blue-dark);
  line-height: 1.4;
  margin: 0 0 44px;
}

.year-start-body {
  max-width: 470px;
  font-size: 15px;
  line-height: 1.95;
  margin: 0;
  flex: 1;
}

.vol-list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 52px;
  flex-wrap: wrap;
}

.vol-list img {
  width: 230px;
}

.vol-list a {
  transition: transform 0.2s ease;
}

.vol-list a:hover,
.vol-list a:focus-visible {
  transform: translateY(-6px);
}

.vol-coming {
  display: block;
}

/* ---------- Footer ---------- */

.site-footer {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 50px 24px;
  background-image: url("../img/foot_bg.jpg");
    background-repeat: repeat-y;
    background-position: center top;
  color: #fff;
	    background-size: cover;
}

.site-footer img {
  width: 120px;
  margin: 0 auto 16px;
  background: #fff;
  border-radius: 50%;
}

.site-footer p {
  font-size: 12px;
  margin: 0;
  opacity: 0.8;
}

@media (max-width: 1150px) {

.header-35logo {
    right: 30px;
	width: 130px;
}
	
.header-logo {

    left: 30px;
}
	
	.nav ul {
    gap: 30px;
}
  }



/* ---------- Smartphone ---------- */


@media (max-width: 767px) {
	
	.carousel-viewport{
		margin-top: -20px;
	}
	
	
	/* 一番上だけ重ねない */
  .values-grid img:first-child {
    margin-top: 0;
  }

  /* 1・3・5番目を左へ */
  .values-grid img:nth-child(odd) {
    transform: translateX(60px);
  }

  /* 2・4番目を右へ */
  .values-grid img:nth-child(even) {
    transform: translateX(-60px);
  }
	
	.topics-inner img {
      width: calc((100% - 20px) / 3);
    height: auto;
}

	
	
	.bg-bottom-layer {
display: none;
}
	
	.haikei2nd{
		  background-image: url(../img/bg_bottom_repeat.jpg);
  background-repeat: repeat-y;
  background-position: top center;
  background-size: auto;
	}
	
	
	  .hamburger {
    display: flex;
    position: fixed;
    top: 40px;
    right: 12px;
    transform: none;
    z-index: 300;
  }
	
  :root {
    --header-h: 64px;
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  body {
    font-size: 15px;
    background-position: center 400px;
    background-size: auto 1500px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .bg-bottom-layer {
    top: 3300px;
    background-size: auto 760px;
  }

  .scroll-text-wrap {
    width: 100%;
    height: 28px;
  }

  .scroll-text-track img {
    height: 14px;
  }

  .site-header {
    height: var(--header-h);
  }

  .header-inner {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    justify-content: space-between;
  }

  .header-logo {
    position: static;
    display: block;
  }

  .header-logo img {
    width: 112px;
    height: auto;
  }

  .header-35logo {
    display: none;
  }

  .hamburger {
    display: flex;
    right: 12px;
  }

  .hamburger:focus-visible {
    outline: 2px solid var(--blue-dark);
    outline-offset: 2px;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 150;
    padding: 28px 24px;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.98);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s;
  }

  .nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav ul {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav li {
    border-bottom: 1px solid rgba(10, 61, 120, 0.16);
  }

  .nav a {
    padding: 18px 8px;
    font-size: 15px;
    white-space: normal;
  }

  .hero,
  .topics,
  .intro,
  .values-band,
  .year-start,
  .site-footer {
    width: 100%;
    max-width: 100%;
  }

  .hero {
    padding: 40px 0px 30px;
  }

  .hero-copy {
    width: min(100%, 360px);
    margin-bottom: 0px;
  }

  .hero-carousel-wrap {
    --carousel-gap: 40px;
    --carousel-item-w: calc(100vw);
    width: 100%;
  }

  .carousel-viewport {
    left: 0;
    width: 100%;
    transform: none;
  }

  .carousel-item {
    margin-right: 0;
    transform: scale(0.96);
  }

  .carousel-item.is-active {
    transform: scale(1);
  }

  .hero-illust {
    width: 850px;
    height:auto;
    max-width: none;

  }
	
	.hero-illust {
    top: 110px;
}
	
	

  .hero-title {
    width: 92%;
    max-width: none;
    margin: 0 auto;
	  margin-top: -35px;
  }

  .topics {
    padding: 0 0px 25px;
  }

  .topics-inner {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: row; /* columnから変更 */
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .topics-inner img {
    width: 100%;
    max-width: 260px;
  }
	
	.cp-lt,.cp-rt{
		display: none;
	}

  .intro-inner {
    width: 100%;
    max-width: 100%;
    padding: 0px 20px 0;
  }

  .intro-copy-wrap {
    width: 100%;
    max-width: 520px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: center;
  }

  .intro-copy,
  .intro-credit {
    grid-column: 1 / -1;
  }

  .intro-copy {
    margin: 0;
    font-size: 16px;
    line-height: 2;
  }

  .intro-copy br {
    display: none;
  }

  .intro-credit {
  margin: 15px 0 30px;
  }

  .cp {
    position: static;
    width: 100%;
    max-width: 100%;
  }

  .cp-lt,
  .cp-rt,
  .cp-lb,
  .cp-rb {
    width: 100%;
  }

  .concept {
    padding: 48px 0 25px;
  }

  .concept-sub {
    font-size: 17px;
  }

  .concept-title,
  .book-heading,
  .year-start-heading {
    font-size: clamp(25px, 6vw, 32px);
  }

  .concept-title {
    margin-bottom: 0;
  }

  .values-band {
    min-height: 108px;
    padding: 28px 16px;
  }

  .values-band-inner,
  .values-title {
    width: 100%;
    max-width: 560px;
  }

  .values-grid {
    width: 100%;
    max-width: 360px;
    padding: 48px 24px 64px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .values-grid img,
  .values-grid img:nth-child(n) {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
    order: initial;
	  margin-top: -80px;
  }

  .book {
    width: 100%;
    max-width: 100%;
    padding: 10px 24px 72px;
  }

  .book-heading-wrap {
    width: 100%;
    max-width: 420px;
    margin-bottom: 34px;
    padding-top: 116px;
  }

  .book-person {
    position:absolute;
    top:0;
    left:0;
    right:0;
    margin:0 auto;
    width:160px;
  }

  .book-heading {
    margin-bottom: 0;
  }

  .book-body {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .book-cover {
    width: min(74vw, 280px);
  }

  .book-text {
    width: 100%;
    max-width: 520px;
    font-size: 15px;
    line-height: 1.9;
  }

  .year-start-inner {
    width: 100%;
    max-width: 100%;
    padding: 56px 24px;
    text-align: center;
	  padding-top: 0px;
  }

  .year-start-row {
    flex-direction: column;
    gap: 28px;
    margin-bottom: 44px;
  }

  .year-start-logo {
    width: min(54vw, 210px);
    margin: 0 auto;
  }

  .year-start-body {
    width: 100%;
    max-width: 520px;
    text-align: left;
    line-height: 1.9;
  }

  .vol-list {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }

  .vol-list a,
  .vol-coming {
    width: 100%;
  }

  .vol-list img {
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
  }

  .site-footer {
    padding: 42px 20px;
  }
	
.intro-copy-wrap {
    min-height: auto;
}
	
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scroll-text-track { animation: none; }
  .nav { transition: none; }
  .vol-list a { transition: none; }
}

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: clip;
  scrollbar-gutter: auto;
}

body {
  min-width: 0;
}

.site-wrapper,
.page-wrapper,
main,
.hero {
  width: 100%;
  max-width: none;
}

#main-content{
	margin-top: 30px;
}

.section-before,
.section-after {
  margin: 0;
  border: 0;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  display: flow-root;
}

.next-section {
  position: relative;
  margin-top: -2px;
  z-index: 1;
}

#book {
  scroll-margin-top: 110px;
}

/* ---------- Smartphone ---------- */

@media (max-width: 767px) {
	
	  .book-body {
    grid-template-columns: 1fr;
		  max-width: calc(100%);
		  flex-direction: column;
		          gap: 10px;
  }
	.book-text{
		padding-top: 0;
	}
	
	
  .book-cover {
    order: 1;
  }

  .book-text {
    order: 2;
  }
	
	.book-heading-wrap{
		margin-bottom: 0px;
	}
	
	    .book-heading {
        margin-bottom: 0;
        margin-top: 90px;
    }
	
	    .book-person {

    }
	
	.book-cover {
    justify-self: center;
}
	
	#main-content {
    margin-top: -10px;
}
	
	.carousel-item img {
    width: 88%;
        margin-left: 6%;
}
	
  .header-logos {
    position: absolute;
    top: 5px;
    left: 16px;

    display: flex;
    align-items: center;
    gap: 12px;
  }

  .header-logo,
  .header-35logo {
    position: static;
    inset: auto;
    display: block;
    height: auto;
  }

  .header-35logo {
    order: 1;
    width: 80px;
  }

  .header-logo {
    order: 2;
    width: 105px;
  }
	
	.splogonone{
		display: none;
	}
	
}

.sp_only{
		display: none;
}

@media (max-width: 767px) {
	
	.spirit_copy{
		width: 100%;
		height: auto;
		width: 100%;
        max-width: 100%;
	}
	
	.pc_only{
		display: none;
	}
	.sp_only{
		display: block;
	}
	
	.values-band{
		display: none;
	}
	
	.intro-copy, .intro-credit {
    transform: translateY(0px);
}
	
	.intro-copy{
		text-align:justify;
	}
	
.cp-rt {
        width: 70%;
	margin-left: 15%;
    }
	
	
  :root {
    --mobile-header-height: 130px;
  }

  .site-header {
    position: relative;
    z-index: 200;
  }

  .header-inner {
    position: relative;
    width: 100%;
    height: var(--mobile-header-height);
  }

  .hamburger {
    position: fixed;
    top: 36px;
    right: 24px;
    z-index: 220;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;

    width: 40px;
    height: 40px;
    padding: 7px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #003b7a;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
  }

  .hamburger.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 210;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;

    width: 100%;
    height: 100dvh;
    margin: 0;
    padding: 0px 24px 40px;
    box-sizing: border-box;
    overflow-y: auto;

    background: rgb(255 255 255 / 98%);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-15px);
    pointer-events: none;

    transition:
      opacity 0.3s ease,
      transform 0.3s ease,
      visibility 0.3s;
  }

  .nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav a {
    display: block;
    color: #003b7a;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    text-decoration: none;
  }
	
.is-open li span {
    display: block;
    color: #003b7a;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    text-decoration: none;
		  padding: 18px 8px;
  }
	

	

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

@media (max-width: 767px) {
  .header-inner {
    position: relative;
  }

  .header-logos {
    position: static;
    display: contents;
  }

  .header-logo {
    position: absolute;
    top: 40px;
    left: 50%;
    width: 125px;
    height: auto;
    margin: 0;
    transform: translate(-50%, -50%);
  }

  .header-35logo {
    position: absolute;
    top: 40px;
    left: 16px;
    right: auto;
    width: 80px;
    height: auto;
    transform: translateY(-50%);
  }
}

.line-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
	letter-spacing: 0.1em;

  min-width: 240px;
  margin-top: 24px;
  padding: 14px 28px;
  border-radius: 999px;

  background: #06c755;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;

  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.line-button:hover {
  background: #05b94e;
  transform: translateY(-2px);
}

.line-button:focus-visible {
  outline: 3px solid rgb(6 199 85 / 35%);
  outline-offset: 3px;
}


.line-button--blue {
  background: #006fb0;
}

.line-button--blue:hover {
  background: #005f98;
}

.line-button--blue:focus-visible {
  outline-color: rgb(0 111 176 / 35%);
}


/* ---------- History page timeline ---------- */

.history-page {
  background: #f1eee8;
  background-image: none;
  overflow-x: hidden;
}

.history-page .bg-bottom-layer {
  display: none;
}

.history-page .site-footer {
  width: 100%;
  max-width: 100%;
}

.history-page #history {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 90px 24px 110px;
  background: #f1eee8;
  color: var(--brown);
}

.history-page #history .kicker {
  margin-bottom: 14px;
  color: var(--blue);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-align: center;
}

.history-page #history > h2 {
  margin: 0 0 50px;
  color: var(--blue);
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}

.history-page #history .sp_only {
  display: none;
}

.history-page #history .tl2 {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 0 20px;
}

.history-page #history .tl2::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 10px;
  margin-left: -5px;
  border-radius: 6px;
  background: linear-gradient(
    180deg,
    #4fd1a5,
    #63b3ed,
    #b794f4,
    #f6a8c9,
    #f6ad55,
    #f6e05e,
    #4fd1a5
  );
}

.history-page #history .tl2-row {
  position: relative;
  display: flex;
  width: 100%;
  margin-bottom: 0;
}

.history-page #history .tl2-row.left {
  justify-content: flex-start;
}

.history-page #history .tl2-row.right {
  justify-content: flex-end;
}

.history-page #history .tl2-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 18px;
  height: 18px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #7ecce1;
  box-shadow: 0 0 0 2px #253692;
  transform: translate(-50%, -50%);
}

.history-page #history .tl2-connector {
  position: absolute;
  top: 50%;
  z-index: 1;
  height: 3px;
  background: #253692;
  transform: translateY(-50%);
}

.history-page #history .tl2-row.left .tl2-connector {
  left: 44%;
  width: 6%;
}

.history-page #history .tl2-row.right .tl2-connector {
  left: 50%;
  width: 6%;
}

.history-page #history .tl2-card {
  width: 44%;
  min-width: 0;
  padding: 20px 22px 24px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 14px rgb(0 0 0 / 10%);
  font-family: var(--font-body);
}

.history-page #history .tl2-year {
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 400;
}

.history-page #history .tl2-photo {
  height: auto;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 8px;
}

.history-page #history .tl2-photo img {
  width: 100%;
  height: auto;
}

.history-page #history .placeholder-img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 6px;
  background: repeating-linear-gradient(
    45deg,
    #f6f4f0,
    #f6f4f0 10px,
    #eee9e1 10px,
    #eee9e1 20px
  );
  color: #8a7d75;
  font-family: var(--font-body);
  font-size: 13px;
  text-align: center;
}

.history-page #history .tl2-title {
  margin-bottom: 6px;
  color: var(--blue-dark);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.6;
}

.history-page #history .tl2-desc {
  color: #444;
  font-size: 12px;
  line-height: 1.85;
}

.history-page #history .tl2-desc a {
  color: #253692;
  text-decoration: underline;
}

.history-page #history .tl2-row:not(.left, .right) {
  justify-content: center;
  margin-top: 60px;
}

.history-page #history .tl2-feature {
  width: 64%;
  margin: 0 auto;
  padding: 24px;
  border: 3px solid #253692;
  border-radius: 14px;
  background: #f1eee8;
  font-family: var(--font-body);
  text-align: center;
}

.history-page #history .tl2-feature .tl2-title {
  color: #253692;
  font-size: 16px;
}

.history-page #history .tl2-feature .tl2-photo {
  height: auto;
}

@media (max-width: 767px) {
  .history-page #history {
    padding: 56px 16px 72px;
  }

  .history-page #history .kicker {
    font-size: 15px;
  }

  .history-page #history > h2 {
    margin-bottom: 36px;
    font-size: clamp(25px, 7.2vw, 32px);
  }

  .history-page #history .sp_only {
    display: block;
  }

  .history-page #history .tl2 {
    padding: 8px 0 16px;
  }

  .history-page #history .tl2::before {
    left: 16px;
    width: 6px;
    margin-left: -3px;
  }

  .history-page #history .tl2-row.left,
  .history-page #history .tl2-row.right {
    justify-content: flex-start;
  }

  .history-page #history .tl2-dot {
    left: 16px;
  }

  .history-page #history .tl2-row.left .tl2-connector,
  .history-page #history .tl2-row.right .tl2-connector {
    left: 16px;
    width: 32px;
  }

  .history-page #history .tl2-card {
    width: calc(100% - 48px);
    margin-left: 48px;
    padding: 18px 16px 20px;
  }

  .history-page #history .tl2-row:not(.left, .right) {
    justify-content: flex-start;
    margin-top: 32px;
  }

  .history-page #history .tl2-feature {
    width: calc(100% - 48px);
    margin: 0 0 0 48px;
    padding: 18px 16px;
  }
}

/* ---------- Flagship products and awards page ---------- */

.flagship-page {
  background: #fff;
  background-image: none;
  overflow-x: hidden;
}

.flagship-page .bg-bottom-layer {
  display: none;
}

.flagship-page .site-footer {
  width: 100%;
  max-width: 100%;
}

.flagship-page #flagship-products,
.flagship-page #flagship-awards {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 90px max(24px, calc((100% - 1120px) / 2)) 110px;
  color: var(--brown);
}

.flagship-page #flagship-products {
  background: #fff;
}

.flagship-page #flagship-awards {
  background: #f1eee8;
}

.flagship-page #flagship-products .kicker,
.flagship-page #flagship-awards .kicker {
  margin-bottom: 14px;
  color: var(--blue);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-align: center;
}

.flagship-page #flagship-products > h2,
.flagship-page #flagship-awards > h2 {
  margin: 0 0 50px;
  color: var(--blue);
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}

.flagship-page #flagship-products .cards,
.flagship-page #flagship-awards .awards-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1120px;
  margin: 36px auto 0;
}

.flagship-page #flagship-products .card {
  min-width: 0;
  padding: 22px;
  border: 1px solid #ded7cd;
  border-radius: 10px;
  background: #fff;
}

.flagship-page #flagship-products .card > img {
  width: 100%;
  height: auto;
  margin-bottom: 18px;
}

.flagship-page #flagship-products .card h3 {
  margin: 0 0 4px;
  color: var(--blue-dark);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
}

.flagship-page #flagship-products .card .yr {
  margin-bottom: 12px;
  color: var(--blue);
  font-family: var(--font-body);
  font-size: 12px;
}

.flagship-page #flagship-products .card dl {
  margin: 0;
  font-family: var(--font-body);
  font-size: 12.5px;
}

.flagship-page #flagship-products .card dt {
  margin-top: 10px;
  color: #556;
  font-weight: 700;
}

.flagship-page #flagship-products .card dd {
  margin: 4px 0 0;
  color: #444;
}

.flagship-page #flagship-products .card a {
  color: #253692;
  font-size: 11px;
}

.flagship-page #flagship-awards .awards-list {
  gap: 18px;
  margin-top: 20px;
}

.flagship-page #flagship-awards .award-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #ded7cd;
  border-radius: 8px;
  background: #fff;
}

.flagship-page #flagship-awards .placeholder-img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.flagship-page #flagship-awards .award-image {
  height: auto;
  padding: 3%;
  border: 0;
  border-radius: 0;
  background: none;
}

.flagship-page #flagship-awards .award-image img {
  width: 100%;
  height: auto;
}

.flagship-page #flagship-awards .award-card-body {
  padding: 18px 20px;
}

.flagship-page #flagship-awards .award-year {
  margin-bottom: 6px;
  color: var(--blue);
  font-family: var(--font-body);
  font-size: 12px;
}

.flagship-page #flagship-awards .award-title {
  color: var(--blue-dark);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.flagship-page #flagship-awards .award-desc {
  margin-top: 8px;
  color: var(--brown);
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.85;
  opacity: 0.85;
}

.flagship-page #flagship-awards .awards-note {
  width: 100%;
  max-width: 1120px;
  margin: 10px auto 0;
  color: #8a7d75;
  font-family: var(--font-body);
  font-size: 11px;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .flagship-page #flagship-products .cards,
  .flagship-page #flagship-awards .awards-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .flagship-page #flagship-products,
  .flagship-page #flagship-awards {
    padding: 56px 20px 72px;
  }

  .flagship-page #flagship-products > h2,
  .flagship-page #flagship-awards > h2 {
    margin-bottom: 36px;
    font-size: clamp(25px, 7.2vw, 32px);
  }

  .flagship-page #flagship-products .kicker,
  .flagship-page #flagship-awards .kicker {
    font-size: 15px;
  }

  .flagship-page #flagship-products .cards,
  .flagship-page #flagship-awards .awards-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .flagship-page #flagship-products .card {
    padding: 18px;
  }
}





    

.nav-coming-soon {
  display: block;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
color: var(--blue-dark);
  white-space: nowrap;
}

.nav-coming-soon {
	  position: relative;
  display: block;
  padding-bottom: 0;
  cursor: default;

}

.nav-coming-soon::after {
  content: "COMING SOON";
  position: absolute;
    bottom: -5px;
    left: 8px;
  transform: translateX(-50%);
  padding: 2px 7px;
  border: 1px solid #DB5153;
  border-radius: 20px;
  font-family: sans-serif;
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
	color: #DB5153;
	

  transform: rotate(-18deg);
}

.booltitle{
	margin-top: -30px;
	display: block;
	font-family: var(--font-heading);
    font-weight: 400;
    font-size: 22px;
	line-height: 1.5;
	margin-bottom: 10px;
}


@media (max-width: 767px) {
.is-open li .nav-coming-soon::after {

        bottom: 15px;
        left: 45%;
}
	
	.sp_only img.header-35logoh{
		width: 40%;
		margin: 0 auto;
		margin-bottom: 18px;
	}
	
	
	  .book-cover {
    margin-left: auto;
    margin-right: auto;
  }
	

	
.intro-copy-wrap {
    display: grid;
    grid-template-columns: repeat(20, minmax(0, 1fr));
    gap: 0;
    align-items: end;
  }

  .cp-lt {
    grid-column: 1 / 11;
  }

  .cp-rt {
    grid-column: 11 / 21;
  }

  .intro-copy,
  .intro-credit {
    grid-column: 1 / 21;
  }

  .cp-lb {
    grid-column: 1 / 8;    /* 35% */
  }

  .cp-rb {
    grid-column: 8 / 21;   /* 65% */
  }

  .cp {
    width: 100%;
    max-width: none;
    height: auto;
  }
	

}




.js-fade {
  opacity: 0;
  transform: translateY(45px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.js-fade.is-show {
  opacity: 1;
  transform: translateY(0);
}