@view-transition {
  navigation: none;
}
html {
  background: #111;
  scroll-behavior: smooth;
}
::view-transition {
  background: #111;
}
* {
  box-sizing: border-box;
}
:root {
  --title-font: "Lora", serif;
  --text-font: "Manrope", sans-serif;
  --title-size: 46px;
  --text-size: 22px;
  --site-header-height: 117px;
  --desktop-min-width: 1140px;
}
body {
  background: #f7f7f7;
  color: #111;
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  margin: 0;
  min-width: var(--desktop-min-width);
  min-height: 100vh;
  position: relative;
}
body.is-dark {
  background: #111;
  color: #dfdbd3;
}
body.page-start.is-dark::before {
  background-image: var(--page-background-image);
  background-position: center;
  background-size: cover;
  clip-path: inset(0);
  content: "";
  filter: blur(18px);
  height: 100vh;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transition: opacity 2400ms ease, filter 2800ms ease;
  width: 100%;
  z-index: 0;
}
body.page-start.is-dark.background-ready::before {
  filter: blur(0);
  opacity: 0.2;
}
body.page-start.is-dark.background-instant::before {
  transition: none;
}
body.page-start > :not(.site-footer) {
  position: relative;
  z-index: 1;
}
a {
  color: inherit;
}
.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 64px;
  padding: 40px;
  padding-top: 5px;
  position: relative;
  z-index: 5;
}
.brand {
  align-items: center;
  color: #de130c;
  display: inline-flex;
  font-weight: 700;
  gap: 10px;
  margin: -22px 0 -22px -22px;
  padding: 22px 0 22px 22px;
  position: relative;
  text-decoration: none;
  z-index: 10001;
}
body.is-dark .brand {
  color: #dfdbd3;
}
.brand-logo {
  background: #dfdbd3;
  display: block;
  height: 32px;
  left: -4px;
  mask: url("/logo_symbol_text.svg") center / contain no-repeat;
  position: relative;
  -webkit-mask: url("/logo_symbol_text.svg") center / contain no-repeat;
  width: 160px;
}
.site-nav {
  align-items: center;
  display: flex;
  gap: 30px;
}
.site-nav a {
  font-family: var(--text-font);
  font-size: 20px;
  padding: 22px 0 20px;
  text-decoration: none;
}
.site-nav .language-toggle {
  align-items: center;
  color: inherit;
  display: flex;
  font-family: var(--text-font);
  font-size: 20px;
  gap: 10px;
  padding: 18px 0;
}
.language-toggle::before {
  background: rgb(255 255 255 / 20%);
  content: "";
  flex: 0 0 1px;
  height: 26px;
  margin-right: 20px;
  width: 1px;
}
.language-toggle-content {
  display: grid;
  height: 32px;
  min-width: 112px;
  overflow: hidden;
}
.language-toggle-label {
  align-items: center;
  display: flex;
  gap: 10px;
  grid-area: 1 / 1;
  transition: opacity 260ms ease, transform 260ms ease;
}
.language-toggle-current {
  opacity: 1;
  transform: translateY(0);
}
.language-toggle-next {
  opacity: 0;
  transform: translateY(10px);
}
.language-toggle:not(.suppress-hover):hover .language-toggle-current,
.language-toggle:focus-visible .language-toggle-current {
  opacity: 0;
  transform: translateY(-10px);
}
.language-toggle:not(.suppress-hover):hover .language-toggle-next,
.language-toggle:focus-visible .language-toggle-next {
  opacity: 1;
  transform: translateY(0);
}
.mobile-language-links {
  align-items: center;
  display: none;
  gap: 56px;
  margin-top: 8px;
}
.mobile-language-link {
  align-items: center;
  display: flex;
  font-family: var(--text-font);
  font-size: 20px;
  gap: 12px;
  opacity: 0.45;
  padding: 12px 0;
  text-decoration: none;
  transition: opacity 160ms ease;
}
.mobile-language-link.is-current,
.mobile-language-link:hover,
.mobile-language-link:focus-visible,
.mobile-language-link:active {
  opacity: 1;
}
.language-flag {
  border-radius: 2px;
  display: block;
  flex: 0 0 auto;
  height: 20px;
  overflow: hidden;
  width: 32px;
}
.language-flag svg {
  display: block;
  height: 100%;
  width: 100%;
}
.mobile-nav-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: none;
  height: 44px;
  justify-content: center;
  padding: 0;
  position: relative;
  right: -6px;
  width: 44px;
  z-index: 10001;
}
.mobile-nav-button span {
  background: currentColor;
  display: block;
  height: 2px;
  position: absolute;
  transition: opacity 180ms ease, transform 180ms ease;
  width: 28px;
}
.mobile-nav-button span:nth-child(1) {
  transform: translateY(-8px);
}
.mobile-nav-button span:nth-child(3) {
  transform: translateY(8px);
}
.mobile-nav-button[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}
.mobile-nav-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.mobile-nav-button[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}
.mobile-nav {
  align-items: center;
  animation: mobile-nav-fade-in 180ms ease-out both;
  background: #111;
  color: #dfdbd3;
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  padding: 96px 40px 40px;
  position: fixed;
  z-index: 10000;
}
@keyframes mobile-nav-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.mobile-nav[hidden] {
  display: none;
}
.mobile-nav-links {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mobile-nav-links a {
  font-family: var(--text-font);
  font-size: 32px;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}
.mobile-nav-credit {
  align-items: center;
  display: flex;
  font-family: var(--text-font);
  font-size: 18px;
  gap: 4px;
  justify-content: center;
  line-height: 1.2;
  margin: auto 0 0;
  max-width: none;
  text-align: center;
  width: 100%;
}
.mobile-nav-credit a {
  align-items: center;
  color: inherit;
  display: inline-flex;
  gap: 4px;
  text-decoration: none;
}
.mobile-nav-credit svg {
  flex: 0 0 auto;
  height: 20px;
  width: 20px;
}
.mobile-nav-quote {
  border-top: 1px solid currentColor;
  bottom: 40px;
  font-family: var(--text-font);
  font-size: 18px;
  font-style: italic;
  line-height: 1.5;
  margin: 0;
  max-width: 320px;
  opacity: 0.72;
  padding-top: 18px;
  position: absolute;
  text-align: center;
}
body:not(.is-dark) .mobile-nav {
  background: #f7f7f7;
  color: #111;
}
body.mobile-nav-open {
  overflow: hidden;
}
main {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: flex-end;
  padding: 40px;
  padding: 50px;
  width: 100%;
}
main.center-page {
  align-items: center;
  inset: 0;
  justify-content: center;
  padding: 40px;
  position: fixed;
  text-align: center;
  z-index: 1;
}
.affarside-page {
  justify-content: flex-start;
  padding: 0;
}
.affarside-hero {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - var(--site-header-height));
  padding: 40px;
  padding-bottom: 110px;
  text-align: center;
  width: 100%;
}
.affarside-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin: 0 auto;
  max-width: 1140px;
  padding: 104px 40px 136px;
  width: 100%;
}
.affarside-section {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  text-align: left;
  width: 100%;
}
.affarside-scroll-button {
  align-items: center;
  aspect-ratio: 1;
  background-color: #dfdbd3;
  border-radius: 50%;
  color: #111;
  display: flex;
  height: 64px;
  justify-content: center;
  margin-top: 32px;
  text-decoration: none;
  width: 64px;
}
.affarside-scroll-button svg {
  flex: 0 0 auto;
}
.affarside-section h2 {
  font-family: var(--title-font);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 24px;
}
.affarside-content {
  max-width: 1060px;
  text-align: left;
  width: 100%;
}
.affarside-content > p {
  max-width: 960px;
}
.affarside-content h2 {
  font-size: 46px;
}
.summary-promise {
}
.summary-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 32px;
  width: 100%;
}
.summary-item {
  background: rgb(223 219 211 / 8%);
  border-radius: 16px;
  grid-column: span 2;
  min-height: 168px;
  padding: 24px;
}
.summary-item:nth-child(4),
.summary-item:nth-child(5) {
  grid-column: span 3;
}
.summary-item h3 {
  font-family: var(--text-font);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 12px;
}
.summary-item p {
  font-size: 18px;
  line-height: 1.45;
  margin: 0;
  max-width: 360px;
}
.solution-flow {
  margin-top: 34px;
  width: 100%;
}
.solution-columns {
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}
.solution-label {
  font-size: 22px;
  margin: 0 0 18px;
  max-width: none;
}
.solution-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.solution-item,
.solution-result {
  align-items: center;
  display: flex;
  gap: 18px;
}
.solution-item,
.solution-result {
  background: rgb(223 219 211 / 8%);
  border: 0;
  border-radius: 16px;
  padding: 24px;
}
.solution-result > span[aria-hidden="true"] {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 16px;
  display: flex;
  flex: 0 0 auto;
  font-family: var(--text-font);
  font-size: 24px;
  font-weight: 600;
  height: 44px;
  justify-content: center;
  width: 44px;
}
.solution-result svg {
  height: 32px;
  width: 32px;
}
.solution-item {
  font-family: var(--text-font);
  font-size: 24px;
  line-height: 1.2;
}
.solution-item-plain {
  display: flex;
  background: transparent;
  padding: 0;
  font-size: 22px;
  margin-top: 8px;
}
.solution-result strong {
  font-family: var(--text-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}
.solution-result p {
  font-size: 24px;
  line-height: 1.35;
  margin: 0;
  max-width: none;
}
.affarside-founded p {
  max-width: 860px;
}
.affarside-back-top {
  align-items: center;
  text-align: center;
}
.affarside-back-top p {
  font-family: var(--text-font);
  font-size: 22px;
  line-height: 1.35;
  margin: 0;
}
.affarside-top-button svg {
  transform: rotate(180deg);
}
.affarside-market {
  align-items: flex-start;
  text-align: left;
}
.market-content {
  max-width: 1060px;
  width: 100%;
}
.market-content h2 {
  font-family: var(--title-font);
  font-size: 46px;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 24px;
}
.market-content > p {
  max-width: 980px;
}
.market-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 32px;
  width: 100%;
}
.market-card {
  background: rgb(223 219 211 / 8%);
  border-radius: 16px;
  grid-column: span 2;
  min-height: 168px;
  padding: 24px;
}
.market-card-wide {
  grid-column: span 3;
}
.summary-icon,
.market-icon {
  align-items: center;
  background-color: #dfdbd3;
  border-radius: 50%;
  color: #111;
  display: flex;
  height: 44px;
  justify-content: center;
  margin-bottom: 24px;
  width: 44px;
}
.summary-icon svg,
.market-icon svg {
  height: 24px;
  width: 24px;
}
.market-card h3 {
  font-family: var(--text-font);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 10px;
}
.market-card p {
  font-size: 17px;
  line-height: 1.45;
  margin: 0;
  max-width: 360px;
}
h1 {
  font-family: var(--title-font);
  font-size: var(--title-size);
  font-weight: 500;
  line-height: 1;
  margin: 0 0 28px;
  overflow-wrap: anywhere;
}
p {
  font-family: var(--text-font);
  font-size: var(--text-size);
  line-height: 1.6;
  margin: 0 0 16px;
  max-width: 640px;
}
main.home-page {
  gap: 20px;
  justify-content: flex-end;
}
main.home-page h1 {
  font-size: calc(var(--title-size) + 6px);
}
.home-copy {
  max-width: 940px;
}
.home-copy p {
  max-width: 860px;
}
.home-title {
  font-family: "Manrope", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 16px;
  max-width: 860px;
  overflow-wrap: anywhere;
}
.home-button {
  background-color: #dfdbd3;
  border-radius: 999px;
  color: #111;
  align-items: center;
  display: flex;
  font-family: var(--text-font);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  gap: 0px;
  padding: 15px 26px;
  text-decoration: none;
}
.ir-board-button,
.ir-affarside-button {
  align-self: flex-start;
  display: inline-flex;
  margin-top: 12px;
  width: fit-content;
}
button svg,
.home-button svg {
  left: -6px;
  position: relative;
}
.ir-page {
  gap: 100px;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 1140px;
  padding: 100px 40px 120px;
  width: 100%;
}
.ir-intro p {
  max-width: 860px;
}
.ir-logo-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, calc((100% - 80px) / 3));
  margin: 0;
  width: 100%;
}
.ir-logo-card {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 92px;
  padding: 12px 16px;
  text-decoration: none;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 16px;
  padding: 60px 30px;
}
.ir-logo-card img {
  display: block;
  height: auto;
  max-height: 52px;
  max-width: 160px;
  width: auto;
}
.ir-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 100px;
  width: 100%;
}
.ir-section {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  text-align: left;
  width: 100%;
}
.ir-case-grid {
  display: grid;
  gap: 42px 40px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 40px;
  width: 100%;
}
.ir-case-card {
  grid-column: span 2;
}
.ir-case-card:nth-child(n+4) {
  grid-column: span 3;
}
.ir-case-number {
  font-family: var(--title-font);
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 16px;
  max-width: none;
}
.ir-case-card h3 {
  font-family: var(--text-font);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 12px;
}
.ir-case-card p:not(.ir-case-number) {
  margin: 0;
  max-width: 420px;
}
.ir-section.affarside-back-top {
  align-items: center;
  text-align: center;
}
.ir-operator-benefits .market-grid {
  margin-top: 16px;
}
.ir-timeline {
  align-items: stretch;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  grid-template-rows: auto 32px auto 32px auto;
  margin: 34px auto 8px;
  max-width: 960px;
  width: 100%;
}
.ir-timeline-line {
  background: rgb(223 219 211 / 22%);
  grid-column: 2;
  grid-row: 1 / 6;
  width: 1px;
}
.ir-timeline-card {
  background: rgb(223 219 211 / 8%);
  border-radius: 16px;
  padding: 24px 28px;
  position: relative;
  z-index: 1;
}
.ir-timeline-left {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  grid-column: 1;
  text-align: right;
}
.ir-timeline-right {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  grid-column: 3;
  text-align: left;
}
.ir-timeline-first {
  grid-row: 1;
}
.ir-timeline-second {
  grid-row: 3;
}
.ir-timeline-third {
  grid-row: 5;
}
.ir-timeline-card .title {
  font-family: var(--text-font);
  font-size: 22px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 8px;
}
.ir-timeline-number {
  font-family: var(--title-font);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 16px;
  max-width: none;
}
.ir-timeline-card p:not(.ir-timeline-number) {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  max-width: none;
}
.ir-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1040px;
  width: 100%;
}
.ir-panel {
  border-top: 1px solid currentColor;
  padding-top: 18px;
}
.ir-panel h2 {
  font-family: var(--title-font);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 18px;
}
.ir-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ir-list li {
  font-family: var(--text-font);
  font-size: 18px;
  line-height: 1.45;
  max-width: 480px;
}
.ir-list strong {
  display: block;
  font-weight: 600;
  margin-bottom: 3px;
}
.board-grid {
  display: grid;
  gap: 80px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 48px;
  max-width: 1280px;
  width: 100%;
}
.board-member {
  display: flex;
  flex-direction: column;
  min-height: 168px;
}
.board-member::before {
  background: rgb(255 255 255 / 12%);
  border-radius: 1px;
  content: "";
  display: block;
  height: 4px;
  margin: 0 0 32px;
  width: 40px;
}
.board-member h2 {
  font-family: var(--title-font);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 10px;
}
.board-member p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 0;
}
.board-member .board-title {
  align-items: center;
  display: flex;
  font-family: var(--text-font);
  font-size: 18px;
  font-weight: 400;
  gap: 8px;
  margin-bottom: 12px;
  opacity: 0.7;
}
.board-member .board-title svg {
  flex: 0 0 auto;
  height: 16px;
  width: 16px;
}
.board-read-more,
.board-profile-back {
  align-items: center;
  color: inherit;
  display: inline-flex;
  font-family: var(--text-font);
  font-size: 18px;
  font-weight: 600;
  gap: 8px;
  margin-top: 18px;
  text-decoration: none;
}
.board-read-more {
  font-size: 20px;
  font-weight: 400;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  line-height: 1;
}
.board-read-more span {
  align-items: center;
  background: #dfdbd3;
  border-radius: 50%;
  color: #111;
  display: inline-flex;
  flex: 0 0 auto;
  height: 28px;
  justify-content: center;
  width: 28px;
}
.board-read-more svg {
  height: 20px;
  width: 20px;
}
.board-profile-page {
  text-align: center;
}
.board-profile-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  max-width: 760px;
}
.board-profile-content .board-title {
  align-items: center;
  display: flex;
  font-family: var(--text-font);
  font-size: 18px;
  font-weight: 600;
  gap: 8px;
  justify-content: center;
  margin: 0 0 18px;
}
.board-profile-content .board-title svg {
  height: 16px;
  width: 16px;
}
.board-profile-content p {
  max-width: 760px;
}
.site-footer {
  display: flex;
  justify-content: flex-end;
  padding: 0;
  position: fixed;
  right: min(35px, calc(100vw - var(--desktop-min-width) + 35px));
  bottom: 40px;
  width: auto;
  z-index: 5;
}
.footer-credit {
  font-family: var(--text-font);
  font-size: 18px;
  margin: 0;
}
.footer-credit a,
.ir-owner-note a {
  align-items: center;
  color: inherit;
  display: inline-flex;
  gap: 4px;
  text-decoration: none;
}
.footer-credit svg,
.ir-owner-note svg {
  flex: 0 0 auto;
  height: 20px;
  width: 20px;
}
.theme-button,
.config-button {
  align-items: center;
  background: #111;
  border: 0;
  border-radius: 50%;
  bottom: 24px;
  color: #fff;
  cursor: pointer;
  display: flex;
  font: 700 18px/1 Arial, sans-serif;
  height: 56px;
  justify-content: center;
  position: fixed;
  right: 24px;
  z-index: 10;
  width: 56px;
}
.theme-button,
.config-button {
  display: none;
}
body.is-dark .theme-button,
body.is-dark .config-button {
  background: #dfdbd3;
  color: #111;
}
.theme-button {
  right: 92px;
}
.config-panel {
  background: #fff;
  border: 1px solid #ddd;
  bottom: 92px;
  box-shadow: 0 12px 40px rgb(0 0 0 / 14%);
  display: grid;
  gap: 14px;
  padding: 18px;
  position: fixed;
  right: 24px;
  width: min(320px, calc(100vw - 48px));
  z-index: 10;
}
.config-panel[hidden] {
  display: none;
}
.config-panel label {
  display: grid;
  font-size: 0.875rem;
  gap: 6px;
}
.config-panel select {
  background: #fff;
  border: 1px solid #bbb;
  font: inherit;
  min-height: 40px;
  padding: 8px;
}
.checkbox-label {
  align-items: center;
  display: flex !important;
  gap: 8px;
}
@media (max-width: 680px) {
  @view-transition {
    navigation: none;
  }
  :root {
    --title-size: 36px;
    --text-size: 18px;
    --site-header-height: 92px;
  }
  body {
    min-width: 0;
  }
  body.page-start {
    --title-size: 36px;
    --text-size: 18px;
  }
  body.page-start.is-dark::before {
    top: -10vh;
  }
  body.page-start > .site-header {
    z-index: 10002;
  }
  .site-header {
    align-items: center;
    flex-direction: row;
    padding: 24px 20px;
    padding-top: 16px;
    z-index: 10002;
  }
  .brand {
    margin: -20px 0 -20px -20px;
    padding: 20px 0 20px 20px;
  }
  .brand-logo {
    height: 28px;
    width: 140px;
  }
  .site-nav {
    display: none;
  }
  .mobile-language-links {
    display: flex;
    margin-top: auto;
  }
  .mobile-nav-credit {
    margin: 48px 0 0;
  }
  .mobile-nav-button {
    display: flex;
  }
  .mobile-nav {
    height: 100dvh;
    justify-content: flex-start;
    overflow-y: auto;
    padding: 132px 28px 34px;
  }
  .mobile-nav-links {
    gap: 32px;
  }
  .mobile-nav-links a {
    font-size: 30px;
  }
  .mobile-nav-quote {
    bottom: auto;
    margin-top: auto;
    max-width: calc(100% - 48px);
    padding-top: 18px;
    position: static;
  }
  main {
    padding: 44px 20px 32px;
  }
  main.home-page {
    justify-content: flex-end;
    min-height: calc(100dvh - var(--site-header-height));
    gap: 16px;
  }
  main.home-page h1 {
    font-size: 36px;
    max-width: 340px;
  }
  .home-title {
    font-size: 24px;
    line-height: 1.32;
    max-width: 340px;
    overflow-wrap: normal;
  }
  .home-copy p {
    max-width: 340px;
  }
  .home-copy p:last-child {
    display: none;
  }
  .home-button {
    font-size: 20px;
    padding: 13px 22px;
  }
  .affarside-page {
    padding: 0;
  }
  .affarside-hero {
    min-height: calc(100dvh - var(--site-header-height));
    padding: 40px 20px 94px;
  }
  .affarside-content-wrapper {
    gap: 60px;
    padding: 72px 20px 104px;
  }
  .affarside-content h2 {
    font-size: 46px;
  }
  .affarside-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .market-content h2 {
    font-size: var(--title-size);
    margin-bottom: 24px;
  }
  .summary-grid {
    gap: 18px;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }
  .summary-item,
  .summary-item:nth-child(4),
  .summary-item:nth-child(5) {
    grid-column: 1;
  }
  .summary-item,
  .market-card {
    min-height: auto;
    padding: 22px;
  }
  .summary-item h3 {
    font-size: 22px;
  }
  .market-card h3 {
    font-size: 21px;
  }
  .summary-item p {
    font-size: 18px;
  }
  .market-card p {
    font-size: 17px;
  }
  .solution-columns {
    gap: 32px;
    grid-template-columns: 1fr;
  }
  .solution-result {
    align-items: flex-start;
  }
  .solution-item,
  .solution-result strong,
  .solution-result p {
    font-size: 24px;
  }
  .solution-label {
    font-size: 22px;
  }
  .solution-item,
  .solution-result {
    padding: 22px;
  }
  .market-grid {
    gap: 18px;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }
  .market-card,
  .market-card-wide {
    grid-column: 1;
  }
  .site-footer {
    display: none;
  }
  h1 {
    max-width: 100%;
    overflow-wrap: normal;
  }
  .board-grid {
    gap: 56px;
    grid-template-columns: 1fr;
    margin-top: 42px;
  }
  .board-member {
    min-height: auto;
  }
  /* .board-member::before {
    margin-bottom: 24px;
  } */
  .ir-page {
    gap: 72px;
    padding: 64px 20px 104px;
  }
  .ir-content-wrapper {
    gap: 72px;
  }
  .ir-logo-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ir-logo-card {
    min-height: 80px;
    padding: 50px 20px;
  }
  .ir-logo-card img {
    max-width: 160px;
    max-height: 80px;
  }
  .ir-case-grid {
    gap: 36px;
    grid-template-columns: 1fr;
    margin-top: 32px;
  }
  .ir-case-card,
  .ir-case-card:nth-child(n+4) {
    grid-column: 1;
  }
  .ir-case-number {
    font-size: 48px;
  }
  .ir-case-card h3 {
    font-size: 24px;
  }
  .ir-timeline {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0;
  }
  .ir-timeline-line {
    display: none;
  }
  .ir-timeline-left,
  .ir-timeline-right {
    border-radius: 16px;
    text-align: left;
  }
  .ir-timeline-card {
    padding: 22px;
  }
  .ir-grid {
    gap: 34px;
    grid-template-columns: 1fr;
  }
  .ir-panel h2 {
    font-size: 28px;
  }
  .center-page {
    padding: 92px 20px 48px;
  }
}
@media (max-width: 380px) {
  :root {
    --title-size: 36px;
    --text-size: 18px;
  }
  body.page-start {
    --title-size: 36px;
    --text-size: 18px;
  }
  .site-header {
    padding-left: 20px;
    padding-right: 20px;
  }
  .brand-logo {
    width: 132px;
  }
  .mobile-nav-links a {
    font-size: 28px;
  }
  main {
    padding-left: 20px;
    padding-right: 20px;
  }
  main.home-page h1 {
    font-size: 36px;
  }
  .home-title {
    font-size: 24px;
  }
}
