@charset "UTF-8";
:root {
  --base-gutter: 20px;
  --break-sm: 576px;
  --break-md: 768px;
  --break-lg: 1006px;
  --box-shadow: 0 2px 3px rgba(0, 0, 0, .2);
  --contents-width: 1080px;
  --color-font: #333333;
  --color-emphasis: #2e7d4a;
  --color-accent: #F8D1E2;
  --color-cta-link: #00a3d9;
  --color-bg-page: #ffffff;
  --color-bg-roadmap: #f2ede2;
  --color-bg-voice: #eee8eb;
  --color-bg-message: #e6ebee;
  --color-roadmap-base: #dddbc6;
  --color-roadmap-line: #b8a67a;
  --color-roadmap-year: #d3533d;
  --color-message-text: #ffffff;
  --color-signature: #333333;
  --font-serif: "Noto Serif JP", serif;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-zen: "Zen Maru Gothic", sans-serif;
}

/* Document
 * ========================================================================== */
/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  background-repeat: no-repeat; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */
:where(:root) {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  overflow-wrap: break-word; /* 3 */
  -moz-tab-size: 4; /* 4 */
  tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%; /* 6 */
  text-size-adjust: 100%; /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
:where(body) {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */
:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */
:where(hr) {
  color: inherit; /* 1 */
  height: 0; /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */
:where(nav li)::before {
  content: "​";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Safari.
 */
:where(abbr[title]) {
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
:where(b, strong) {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
:where(small) {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
:where(iframe) {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
:where(svg:not([fill])) {
  fill: currentColor;
}

/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color in Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
:where(table) {
  border-collapse: collapse; /* 1 */
  border-color: currentColor; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
:where(button, input, select) {
  margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
:where(button, [type=button i], [type=reset i], [type=submit i]) {
  -webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(fieldset) {
  border: 1px solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
:where(progress) {
  vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */
:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
:where([type=search i]) {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct styles in Safari.
 */
:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

/*
 * Add the correct display in Safari.
 */
:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
:where([aria-busy=true i]) {
  cursor: progress;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
:where([aria-disabled=true i], [disabled]) {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
:where([aria-hidden=false i][hidden]) {
  display: initial;
}

:where([aria-hidden=false i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

.emphasis {
  color: #DB0A17;
}

.inline-block {
  display: inline-block;
}

.hidden {
  display: none;
}

@media screen and (min-width: 576px) {
  .hidden--sm {
    display: none;
  }
}

@media screen and (min-width: 576px) {
  .visible--sm {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .visible--md {
    display: block;
  }
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: var(--base-gutter);
}

body {
  padding-bottom: 30px;
  font-family: YakuHanJP_Narrow, "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  line-height: 1.8;
  color: var(--color-font);
  background-color: var(--color-bg-page);
}

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

main {
  padding-top: var(--base-gutter);
  padding-bottom: var(--base-gutter);
}

strong {
  font-weight: 600;
  background-image: linear-gradient(transparent 60%, var(--color-accent) 60%, var(--color-accent) 90%, transparent 90%);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0% 100%;
}

ul, ol {
  list-style: none;
  padding-left: 0;
}

p {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.5;
  font-weight: 600;
}

figure {
  margin: 0;
}

.container {
  max-width: calc(var(--contents-width) + var(--base-gutter) * 2);
  padding-inline: var(--base-gutter);
  margin-left: auto;
  margin-right: auto;
}
.container.is-border {
  position: relative;
}
.container.is-border::before {
  position: absolute;
  top: 0;
  left: var(--base-gutter);
  content: "";
  display: block;
  width: calc(100% - var(--base-gutter) * 2);
  height: 1px;
  background-color: var(--color-emphasis);
}

.c-fluid-container {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.section__inner {
  max-width: calc(var(--contents-width) + var(--base-gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--base-gutter);
}

.header {
  padding-bottom: 3rem;
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.3;
}

.header__figure {
  margin: 0;
}

.header__image {
  width: 100%;
}

.header__inner {
  max-width: calc(var(--contents-width) + var(--base-gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--base-gutter);
}

.header__eyebrow {
  display: inline-block;
  margin-top: 2rem;
  font-size: clamp(1rem, 4.5vw, 2.3rem);
  letter-spacing: 0.05em;
}

.header__title {
  font-size: clamp(1.5rem, 6vw, 3.3rem);
  letter-spacing: 0.08em;
  font-weight: 700;
  line-height: 1.4;
}

.header__subTitle {
  margin-top: 0.5rem;
  font-size: clamp(1.3rem, 5vw, 2.7rem);
  letter-spacing: 0.08em;
}

.header__lead {
  margin-top: 1.8rem;
  text-align: left;
  font-size: clamp(0.95rem, 2.5vw, 1.3rem);
  line-height: 1.8;
  margin-inline: auto;
  text-align: center;
  letter-spacing: 0.125em;
}

.roadmap {
  --beside-height: 180px;
  padding-bottom: 3rem;
  width: 100%;
  max-width: 1280px;
  font-family: var(--font-zen);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  font-size: 1.5rem;
  margin-inline: auto;
}

.roadmap__title {
  display: none;
  text-align: left;
  padding-left: 90px;
}
@media (min-width: 1280px) {
  .roadmap__title {
    display: block;
  }
}

@media (max-width: 1279.98px) {
  .roadmap__scroll {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    height: 100svh;
  }
}

.roadmap__scrollHint {
  display: none;
}
@media (max-width: 1279.98px) {
  .roadmap__scrollHint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
    color: var(--color-roadmap-year);
    font-family: var(--font-zen);
    font-weight: 700;
    letter-spacing: 0.25em;
    font-size: 0.85rem;
    line-height: 1;
    animation: scrollHintFlickering 3s ease-in-out infinite;
  }
}

@keyframes scrollHintFlickering {
  0% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.8;
  }
}
.roadmap__scrollHintText {
  line-height: 1;
  writing-mode: vertical-rl;
  font-size: 2rem;
}

.roadmap__scrollHintLine {
  position: relative;
  display: block;
  width: 2px;
  height: 140px;
  background-color: rgba(184, 166, 122, 0.35);
  overflow: hidden;
}
.roadmap__scrollHintLine::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background-color: var(--color-roadmap-year);
  animation: roadmapScrollLine 1.6s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes roadmapScrollLine {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(250%);
  }
}
.roadmap__list {
  width: 1280px;
  display: grid;
  gap: 0.4rem;
  grid-template: ".   c1  c1  c1  c1  c1  .   .   .   .   .   c4  c4  c4 " ".   c1  c1  c1  c1  c1  c2  c2  c2  c3  c3  c4  c4  c4 " ".   c1  c1  c1  c1  c1  .   .   .   .   .   c4  c4  c4 " ".   .   .   .   .   .   .   .   .   .   .   .   c5  .  " "c8  c8  c8  c8  c8  c7  c7  c6  c6  c6  c6  c6  c5  .  " "c8  c8  c8  c8  c8  .   .   .   .   .   .   .   .   .  " ".   .   c9  c9  .   .   .   .   .   .   .   .   .   .  " 40px ".   .   c9  c9  c10 c10 c10 c10 .   .   .   .   .   .  " 80px ".   .   c9  c9  c10 c10 c10 c10 c11 c11 c12 c12 c12 .  " ".   .   c9  c9  c10 c10 c10 c10 c11 c11 c12 c12 c12 .  " ".   .   .   .   c10 c10 c10 c10 .   .   .   c13 c13 c13" ".   .   .   .   .   .   .   .   .   .   .   c13 c13 c13" ".   .   c15 c15 c15 c15 c15 c15 c14 c14 c14 c14 c14 .  " "c16 c16 c16 c16 c16 .   .   .   .   .   .   .   .   .  "/0.1575fr 0.09fr 0.44789fr 0.05232fr 0.23876fr 0.16357fr 0.34026fr 0.20178fr 0.17351fr 0.5fr 0.24995fr 0.25305fr 0.49949fr 0.23998fr;
}
@media screen and not (min-width: 1280px) {
  .roadmap__list::before {
    content: "";
    width: 145px;
    height: 64px;
    background: url(../images/start.png) no-repeat center center/contain;
    position: absolute;
    top: -80px;
    left: 100px;
  }
}
.roadmap__list > :nth-child(1) {
  grid-area: c1;
}
.roadmap__list > :nth-child(2) {
  grid-area: c2;
}
.roadmap__list > :nth-child(2)::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  width: 100px;
  background-color: inherit;
}
.roadmap__list > :nth-child(2) .roadmap__itemImage--fukidashi {
  bottom: 100%;
  right: 4%;
}
.roadmap__list > :nth-child(2) .roadmap__itemImage--decoration {
  top: calc(100% + 20px);
  right: -25%;
  width: 50%;
}
.roadmap__list > :nth-child(3) {
  grid-area: c3;
  align-self: center;
}
.roadmap__list > :nth-child(3)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  height: 100%;
  width: 100px;
  background-color: inherit;
}
.roadmap__list > :nth-child(3)::after {
  left: -3px;
  top: 50%;
  transform: translate(-50%, -50%);
}
.roadmap__list > :nth-child(3) .roadmap__itemImage--decoration {
  bottom: 100%;
  left: -8%;
}
.roadmap__list > :nth-child(4) {
  grid-area: c4;
}
.roadmap__list > :nth-child(5) {
  grid-area: c5;
  border-radius: 0 0 76px 0;
}
.roadmap__list > :nth-child(5)::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 100%;
  height: 100px;
  width: 100%;
  background-color: inherit;
}
.roadmap__list > :nth-child(5) .roadmap__itemImage--fukidashi {
  right: calc(100% + 10px);
  width: 170%;
  top: -60px;
}
.roadmap__list > :nth-child(6) {
  grid-area: c6;
  display: flex;
  padding: 0 !important;
}
.roadmap__list > :nth-child(6)::after {
  right: -3px;
  bottom: 50%;
  rotate: 180deg;
  translate: 50% 50%;
}
.roadmap__list > :nth-child(6) .roadmap__itemImage {
  margin: 0;
}
.roadmap__list > :nth-child(6) .roadmap__itemTitle {
  flex-shrink: 0;
  align-self: center;
  padding: 1rem 2rem;
}
.roadmap__list > :nth-child(7) {
  grid-area: c7;
  padding-bottom: 2rem !important;
  margin-left: -40px;
}
.roadmap__list > :nth-child(7)::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  width: 100px;
  background-color: inherit;
}
.roadmap__list > :nth-child(7)::after {
  right: -3px;
  bottom: 50%;
  rotate: 180deg;
  translate: 50% 50%;
}
.roadmap__list > :nth-child(7) .roadmap__itemImage--fukidashi {
  bottom: 100%;
  right: -20%;
  width: 180%;
}
.roadmap__list > :nth-child(7) .roadmap__itemImage--decoration {
  bottom: calc(100% - 20px);
  right: calc(100% + 120px);
  width: 70%;
}
.roadmap__list > :nth-child(8) {
  grid-area: c8;
}
.roadmap__list > :nth-child(9) {
  grid-area: c9;
  margin-top: -20px;
  padding-top: 30px;
  border-radius: 0 0 0 76px;
}
.roadmap__list > :nth-child(9)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 0.4rem;
  background-color: white;
  transform-origin: left bottom;
  rotate: 45deg;
}
.roadmap__list > :nth-child(9)::after {
  rotate: 45deg;
  left: 50%;
  bottom: calc(var(--beside-height) / 2);
  translate: -25% 45%;
}
.roadmap__list > :nth-child(9) .roadmap__itemImage--fukidashi {
  top: -110px;
  left: calc(100% + 60px);
  width: 120%;
}
.roadmap__list > :nth-child(9) .roadmap__itemImage--decoration {
  top: calc(100% - 10px);
  right: calc(100% - 50px);
  width: 70%;
}
.roadmap__list > :nth-child(10) {
  grid-area: c10;
  margin-left: -20px;
}
.roadmap__list > :nth-child(10) .roadmap__itemImage {
  width: 50%;
}
.roadmap__list > :nth-child(11) {
  grid-area: c11;
  align-self: self-end;
}
.roadmap__list > :nth-child(11)::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  width: 100px;
  background-color: inherit;
}
.roadmap__list > :nth-child(11)::after {
  right: -3px;
  top: 50%;
  transform: translate(50%, -50%);
}
.roadmap__list > :nth-child(11) .roadmap__itemImage--fukidashi {
  top: 100%;
  left: 0;
  width: 120%;
}
.roadmap__list > :nth-child(11) .roadmap__itemImage--decoration {
  bottom: 100%;
  left: 0;
  width: 80%;
}
.roadmap__list > :nth-child(12) {
  grid-area: c12;
  align-self: self-end;
  padding-right: 110px;
  border-radius: 0 80px 0 0;
}
.roadmap__list > :nth-child(12)::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 0.4rem;
  background-color: #fff;
  transform-origin: right top;
  rotate: -45deg;
}
.roadmap__list > :nth-child(12)::after {
  rotate: 45deg;
  right: 65px;
  top: 50%;
  translate: 0 -50%;
}
.roadmap__list > :nth-child(12) .roadmap__itemImage--fukidashi {
  bottom: 100%;
  left: -10%;
  width: 120%;
}
.roadmap__list > :nth-child(12) .roadmap__itemImage--decoration {
  left: -3px;
  top: 50%;
  translate: -50% -50%;
}
.roadmap__list > :nth-child(13) {
  grid-area: c13;
  margin-top: -40px;
  margin-bottom: -14px;
}
.roadmap__list > :nth-child(14) {
  grid-area: c14;
  display: flex;
  border-radius: 0 0 76px 0;
  padding: 0 !important;
}
.roadmap__list > :nth-child(14) .roadmap__itemImage {
  height: 100%;
  width: auto;
}
.roadmap__list > :nth-child(14) .roadmap__itemTitle {
  flex-grow: 1;
  align-self: center;
}
.roadmap__list > :nth-child(14) .roadmap__itemImage--fukidashi {
  top: 100%;
  left: 10%;
  width: 70%;
}
.roadmap__list > :nth-child(14) .roadmap__itemImage--decoration {
  top: calc(100% + 30px);
  right: -50px;
  width: 25%;
}
.roadmap__list > :nth-child(15) {
  grid-area: c15;
  display: flex;
  border-radius: 90px 0 0 0;
  padding: 0 !important;
}
.roadmap__list > :nth-child(15)::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  height: 100px;
  width: 160px;
  background-color: inherit;
}
.roadmap__list > :nth-child(15)::after {
  right: -3px;
  top: 50%;
  translate: 50% -50%;
  rotate: 180deg;
}
.roadmap__list > :nth-child(15) .roadmap__itemImage {
  height: 100%;
  object-fit: contain;
  width: auto;
}
.roadmap__list > :nth-child(15) .roadmap__itemTitle {
  flex-grow: 1;
  align-self: center;
}
.roadmap__list > :nth-child(15) .roadmap__itemImage--fukidashi {
  bottom: 100%;
  left: 7%;
  width: 95%;
}
.roadmap__list > :nth-child(16) {
  grid-area: c16;
  overflow: visible !important;
  margin-top: 40px;
  padding-top: 4rem;
}
.roadmap__list > :nth-child(16) .roadmap__itemImage--last {
  position: absolute;
  top: 0;
}

.roadmap__item {
  position: relative;
  padding-top: 1rem;
  background-color: var(--color-roadmap-base);
}
.roadmap__item.has-arrow::after {
  z-index: 1;
  content: "";
  position: absolute;
  width: 44px;
  height: auto;
  aspect-ratio: 1;
  background: url(../images/arrow-right.png) no-repeat center center/contain;
}
.roadmap__item.--circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 50%;
  aspect-ratio: 1;
  background-color: #fff;
  box-shadow: 0 0 0 14px var(--color-roadmap-base);
  overflow: clip;
  z-index: 2;
}
.roadmap__item.--beside {
  height: var(--beside-height);
  padding-bottom: 1rem;
  align-content: center;
}
.roadmap__item.--vertical .roadmap__itemImage {
  margin-top: 1rem;
}
.roadmap__item.font-large {
  font-size: 1.7rem;
}

.roadmap__itemYear {
  padding: 0 2rem 0.2rem;
  color: #fff;
  border-radius: 100vw;
  background-color: var(--color-roadmap-year);
  letter-spacing: 0.11em;
  display: inline-block;
  line-height: 1.5;
}

.roadmap__itemImage {
  width: 100%;
  margin-top: auto;
}
.roadmap__itemImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.roadmap__itemText {
  line-height: 1.3;
  margin-top: 0.5rem;
}

.roadmap__itemTitle {
  display: block;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.roadmap__itemTitle--small {
  display: block;
  font-size: 85%;
}

.roadmap__itemDesc {
  display: block;
  font-size: 0.8em;
  margin-top: 0.2rem;
}

.roadmap__itemImage--fukidashi {
  position: absolute;
}

.roadmap__itemImage--decoration {
  position: absolute;
}

.voice__list {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  max-width: calc(var(--contents-width) + var(--base-gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--base-gutter);
}

.voice__item {
  display: grid;
  gap: 2rem;
  align-items: start;
  padding: clamp(1.25rem, 3vw, 2rem);
  background-color: var(--color-bg-voice);
  border-radius: 24px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.15), 8px 6px 6px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 768px) {
  .voice__item {
    grid-template-columns: auto 1fr;
  }
}

.voice__image {
  display: block;
  margin-inline: auto;
  width: clamp(200px, 20vw, 240px);
}

.voice__body {
  display: grid;
  gap: 0.9rem;
  min-width: 0;
}

.voice__title {
  font-size: clamp(1.2rem, 2.6vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.voice__text {
  margin: 0;
  line-height: 1.95;
  text-align: justify;
  letter-spacing: 0.05em;
}

.voice__signature {
  margin: 0;
  text-align: right;
  line-height: 1.7;
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  font-weight: 600;
}
.voice__signature span {
  display: block;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  font-weight: 400;
}

.message {
  margin-top: clamp(1.25rem, 2.5vw, 2rem);
}

.message__list {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  max-width: calc(var(--contents-width) + var(--base-gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--base-gutter);
}

.message__item {
  display: grid;
  gap: 2rem;
  align-items: stretch;
  padding: clamp(1.25rem, 3vw, 2rem);
  background-color: var(--color-bg-message);
  color: var(--color-font);
  border-radius: 24px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.15), 8px 6px 6px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 768px) {
  .message__item {
    grid-template-columns: 1fr auto;
  }
}

.message__body {
  display: grid;
  gap: 0.9rem;
  align-content: start;
  min-width: 0;
}

.message__title {
  font-size: clamp(1.05rem, 2.6vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.message__figure {
  align-self: center;
}

.message__image {
  display: block;
  margin-inline: auto;
  opacity: 0.6;
  width: clamp(200px, 20vw, 260px);
}

.message__text {
  margin: 0;
  font-size: clamp(0.85rem, 2.2vw, 0.95rem);
  line-height: 1.95;
  text-align: justify;
}

.message__signature {
  margin: 0;
  text-align: right;
  line-height: 1.7;
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  font-weight: 600;
}
.message__signature span {
  display: block;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  font-weight: 400;
}

.footer {
  max-width: calc(var(--contents-width) + var(--base-gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--base-gutter);
  padding-bottom: 10rem;
}

.footer__tags {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: clamp(0.9rem, 2.8vw, 1rem);
  color: #666;
}
.footer__tags a {
  color: var(--color-cta-link);
  text-decoration: none;
}

.cta {
  display: inline-block;
  padding: 0.4rem 1.5rem 0.6rem;
  background-color: var(--color-font);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 500;
  font-size: clamp(1rem, 3.2vw, 1.1rem);
  transition: opacity 0.2s;
}
@media screen and (min-width: 1006px) {
  .cta:hover {
    opacity: 0.8;
  }
}

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