@charset "UTF-8";

:root {
  --tof-main: #003B8E;
  --tof-blue: #0068D9;
  --tof-deep: #001E4D;
  --tof-light: #EAF4FF;
  --tof-bg: #F6FAFF;
  --tof-text: #0B1F3A;
  --tof-sub: #51627A;
  --tof-line: #DCE7F5;
  --tof-white: #FFFFFF;
  --tof-shadow: 0 10px 28px rgba(0, 43, 104, 0.10);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 190px;
}

html :where([id]) {
  scroll-margin-top: 190px;
}

body.tof-site :target {
  scroll-margin-top: 190px !important;
}

body.admin-bar :where([id]) {
  scroll-margin-top: 222px;
}

body.admin-bar :target {
  scroll-margin-top: 222px !important;
}

body.tof-site {
  margin: 0;
  color: var(--tof-text);
  background: var(--tof-white);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
}

body.tof-site a {
  color: inherit;
  text-decoration: none;
}

body.tof-site a:hover,
body.tof-site button:hover,
body.tof-site input:hover {
  opacity: 1;
}

body.tof-site img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

.tof-container,
.tof-topbar__inner,
.tof-header__inner,
.tof-footer__inner,
.tof-footer__bottom {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.tof-wrapper {
  min-height: 100vh;
  background: var(--tof-white);
}

#header.tof-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  background: var(--tof-white);
  box-shadow: 0 2px 16px rgba(0, 30, 77, 0.08);
}

.tof-topbar {
  position: relative;
  z-index: 2;
  display: block;
  height: 32px;
  background: var(--tof-deep);
  color: var(--tof-white);
  font-size: 12px;
  line-height: 1;
}

.tof-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  height: 32px;
  overflow-x: auto;
  white-space: nowrap;
}

.tof-topbar a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 4px;
  color: #E9F4FF;
  font-weight: 700;
}

.tof-topbar a::before {
  content: "›";
  color: #6EC5FF;
  font-size: 16px;
  line-height: 1;
}

.tof-header__main {
  background: rgba(255, 255, 255, 0.98);
}

.tof-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}

.tof-logo {
  display: flex;
  align-items: center;
  flex: 0 0 228px;
  width: 228px;
}

.tof-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.tof-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 30px);
  flex: 1 1 auto;
  min-width: 0;
  color: var(--tof-text);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.tof-nav a {
  position: relative;
  padding: 29px 0;
}

.tof-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  background: var(--tof-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.tof-nav a:hover {
  color: var(--tof-blue);
}

.tof-nav a:hover::after {
  transform: scaleX(1);
}

.tof-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.tof-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid var(--tof-blue);
  border-radius: 6px;
  background: var(--tof-blue);
  color: var(--tof-white);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  box-shadow: 0 10px 22px rgba(0, 104, 217, 0.20);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.tof-btn:hover {
  transform: translateY(-1px);
  background: #0058C3;
  box-shadow: 0 14px 28px rgba(0, 104, 217, 0.25);
}

.tof-btn::after {
  content: "›";
  margin-left: 12px;
  font-size: 17px;
  line-height: 1;
}

.tof-btn--ghost {
  background: var(--tof-white);
  color: var(--tof-main);
  border-color: #B9CFED;
  box-shadow: none;
}

.tof-btn--ghost:hover {
  background: var(--tof-light);
  box-shadow: none;
}

.tof-menu-toggle {
  position: relative;
  display: none;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--tof-line);
  border-radius: 6px;
  background: var(--tof-white);
}

.tof-menu-toggle span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  background: var(--tof-main);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.tof-menu-toggle span:nth-child(1) { top: 14px; }
.tof-menu-toggle span:nth-child(2) { top: 21px; }
.tof-menu-toggle span:nth-child(3) { top: 28px; }
.tof-menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tof-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.tof-menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.tof-mobile-menu {
  position: relative;
  z-index: 1;
  display: none;
  background: var(--tof-deep);
  color: var(--tof-white);
}

.tof-mobile-menu.is-open {
  display: block;
}

.tof-mobile-menu nav {
  display: grid;
  gap: 2px;
  width: min(520px, calc(100% - 40px));
  max-height: calc(100vh - 110px);
  margin: 0 auto;
  padding: 18px 0 28px;
  overflow-y: auto;
}

.tof-mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--tof-white);
  font-weight: 800;
}

.tof-mobile-menu .tof-btn {
  width: 100%;
  margin-top: 8px;
  border-bottom: 0;
}

.tof-mobile-menu .tof-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--tof-white);
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: none;
}

.tof-mobile-menu .tof-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.tof-main {
  padding-top: 110px;
  background: var(--tof-white);
}

.tof-hero {
  display: grid;
  grid-template-columns: minmax(420px, 45%) minmax(0, 55%);
  min-height: 610px;
  background: var(--tof-white);
  overflow: hidden;
}

.tof-hero__copy {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 72px 0 72px 24px;
  background: linear-gradient(90deg, var(--tof-white) 0%, var(--tof-white) 82%, rgba(255,255,255,0.85) 100%);
  z-index: 1;
}

.tof-hero__copy-inner {
  width: min(470px, calc(100vw - 48px));
  margin-right: 42px;
}

.tof-hero h1 {
  margin: 0;
  color: var(--tof-main);
  font-size: clamp(38px, 3.65vw, 52px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
}

.tof-hero p {
  width: min(100%, 510px);
  margin: 26px 0 0;
  color: #294362;
  font-size: 15px;
  font-weight: 600;
  line-height: 2;
}

.tof-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.tof-hero__media {
  position: relative;
  min-height: 610px;
  clip-path: polygon(7% 0, 100% 0, 100% 100%, 0 100%);
  background: var(--tof-light);
}

.tof-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255,255,255,0.58) 0%, rgba(255,255,255,0.08) 35%, rgba(0,59,142,0.05) 100%);
  pointer-events: none;
}

.tof-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.18) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.35;
  pointer-events: none;
}

.tof-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  object-position: center;
}

.tof-front-section {
  padding: 76px 0;
}

.tof-front-section--service {
  padding-top: 42px;
  background: linear-gradient(180deg, var(--tof-white), #FBFDFF);
}

.tof-front-section--pickup,
.tof-front-section--information,
.tof-contact-cta {
  background: var(--tof-white);
}

.tof-front-section--strength,
.tof-front-section--column {
  background: var(--tof-bg);
}

.tof-front-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.tof-front-heading--center {
  margin-inline: auto;
  text-align: center;
}

.tof-front-heading span {
  display: block;
  margin-bottom: 4px;
  color: var(--tof-blue);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.tof-front-heading h2,
.tof-business-copy h2,
.tof-panel-head h2 {
  margin: 0;
  color: var(--tof-text);
  font-size: clamp(25px, 2.7vw, 34px);
  font-weight: 900;
  line-height: 1.45;
}

.tof-front-heading p,
.tof-business-copy p {
  margin: 14px 0 0;
  color: var(--tof-sub);
  font-size: 15px;
  line-height: 1.9;
}

.tof-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.tof-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 222px;
  padding: 28px 22px 24px;
  border: 1px solid var(--tof-line);
  border-radius: 8px;
  background: var(--tof-white);
  box-shadow: var(--tof-shadow);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tof-service-card:hover,
.tof-pickup-card:hover,
.tof-case-card:hover,
.tof-column-card:hover {
  transform: translateY(-3px);
  border-color: #B8D3F2;
  box-shadow: 0 16px 34px rgba(0, 43, 104, 0.14);
}

.tof-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 16px;
  color: var(--tof-blue);
  overflow: hidden;
}

.tof-card-icon svg,
.tof-pickup-card__icon svg,
.tof-strength-card svg,
.tof-partner-cta svg,
.tof-contact-cta svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tof-card-icon svg:not(.tof-product-icon) circle,
.tof-card-icon svg:not(.tof-product-icon) rect,
.tof-pickup-card__icon svg:not(.tof-product-icon) circle,
.tof-pickup-card__icon svg:not(.tof-product-icon) rect {
  fill: currentColor;
  stroke: currentColor;
}

.tof-card-icon .tof-product-icon,
.tof-pickup-card__icon .tof-product-icon {
  fill: none;
  stroke: none;
  stroke-width: initial;
}

.tof-card-icon .tof-custom-icon,
.tof-pickup-card__icon .tof-custom-icon,
.tof-strength-card > span .tof-custom-icon,
.tof-partner-cta article > span .tof-custom-icon,
.tof-contact-cta article > span .tof-custom-icon {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.tof-service-card h3,
.tof-pickup-card h3,
.tof-strength-card h3,
.tof-case-card h3,
.tof-column-card h3 {
  margin: 0;
  color: var(--tof-text);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.55;
}

.tof-service-card p,
.tof-pickup-card p,
.tof-strength-card p {
  margin: 10px 0 0;
  color: var(--tof-sub);
  font-size: 13px;
  line-height: 1.8;
}

.tof-card-more {
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: var(--tof-blue);
  font-size: 18px;
  font-weight: 900;
}

.tof-business-section {
  background: linear-gradient(180deg, #FBFDFF, var(--tof-white));
}

.tof-business-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.tof-business-copy h2 {
  position: relative;
  padding-bottom: 18px;
}

.tof-business-copy h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 3px;
  background: var(--tof-blue);
}

.tof-accordion {
  display: grid;
  gap: 9px;
}

.tof-accordion__item {
  border: 1px solid var(--tof-line);
  border-radius: 8px;
  background: var(--tof-white);
  overflow: hidden;
}

.tof-accordion__item.is-open {
  border-color: #B8D3F2;
  box-shadow: 0 8px 24px rgba(0, 43, 104, 0.08);
}

.tof-accordion__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 55px;
  padding: 15px 22px;
  border: 0;
  background: var(--tof-white);
  color: var(--tof-text);
  font: inherit;
  font-size: 17px;
  font-weight: 900;
  text-align: left;
}

.tof-accordion__item.is-open .tof-accordion__button {
  color: var(--tof-blue);
}

.tof-accordion__button i {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.tof-accordion__button i::before,
.tof-accordion__button i::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease;
}

.tof-accordion__button i::after {
  transform: rotate(90deg);
}

.tof-accordion__item.is-open .tof-accordion__button i::after {
  transform: rotate(0deg);
}

.tof-accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.tof-accordion__panel-inner {
  padding: 0 22px 20px;
}

.tof-accordion__panel p {
  margin: 0;
  color: var(--tof-sub);
  font-size: 13px;
  line-height: 1.8;
}

.tof-check-list {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
  padding: 0;
}

.tof-check-list li {
  position: relative;
  list-style: none;
  padding-left: 22px;
  color: #27415F;
  font-size: 13px;
  line-height: 1.55;
}

.tof-check-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.68em;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--tof-blue);
  border-bottom: 2px solid var(--tof-blue);
  transform: rotate(-45deg);
}

.tof-pickup-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.tof-pickup-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 230px;
  padding: 30px 24px 24px;
  border: 1px solid var(--tof-line);
  border-radius: 8px;
  background: var(--tof-white);
  box-shadow: 0 8px 22px rgba(0, 43, 104, 0.08);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tof-pickup-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  aspect-ratio: 1 / 1;
  margin-bottom: 16px;
  color: var(--tof-blue);
  overflow: hidden;
}

.tof-pickup-card:nth-child(1) .tof-pickup-card__icon { color: #B047C9; }
.tof-pickup-card:nth-child(2) .tof-pickup-card__icon { color: #E0A500; }
.tof-pickup-card:nth-child(3) .tof-pickup-card__icon { color: #0068D9; }
.tof-pickup-card:nth-child(4) .tof-pickup-card__icon { color: #23A4E8; }
.tof-pickup-card:nth-child(5) .tof-pickup-card__icon { color: #003B8E; }
.tof-pickup-card:nth-child(6) .tof-pickup-card__icon { color: #C35ACD; }

.tof-pickup-card h3 {
  font-size: 18px;
  line-height: 1.55;
}

.tof-pickup-card p {
  max-width: 270px;
  font-size: 14px;
}

.tof-pickup-card > span:last-child {
  margin-top: auto;
  padding-top: 14px;
  color: var(--tof-blue);
  font-size: 12px;
  font-weight: 900;
}

.tof-pickup-card > span:last-child::after {
  content: "›";
  margin-left: 8px;
}

.tof-strength-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.tof-strength-card {
  min-height: 220px;
  padding: 26px 22px;
  border: 1px solid var(--tof-line);
  border-radius: 8px;
  background: var(--tof-white);
  box-shadow: 0 8px 22px rgba(0, 43, 104, 0.06);
}

.tof-strength-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  aspect-ratio: 1 / 1;
  margin-bottom: 14px;
  color: var(--tof-blue);
  overflow: hidden;
}

.tof-blue-band {
  background: linear-gradient(90deg, #0071E4 0%, var(--tof-main) 52%, #005BD8 100%);
  color: var(--tof-white);
}

.tof-blue-band__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.tof-blue-band__inner div {
  min-height: 118px;
  padding: 25px 24px;
  border-left: 1px solid rgba(255,255,255,0.26);
  text-align: center;
}

.tof-blue-band__inner div:first-child {
  border-left: 0;
}

.tof-blue-band span {
  display: block;
  margin-bottom: 8px;
  color: #D8EDFF;
  font-size: 14px;
  font-weight: 900;
}

.tof-blue-band strong {
  display: block;
  color: var(--tof-white);
  font-size: 18px;
  line-height: 1.55;
}

.tof-information-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.78fr);
  gap: 34px 46px;
  align-items: start;
}

.tof-information-grid--no-seminar .tof-info-panel--case {
  grid-row: auto;
}

.tof-information-grid--no-seminar .tof-info-panel--news {
  align-self: stretch;
}

.tof-information-grid--no-seminar .tof-news-list a {
  min-height: 116px;
}

.tof-info-panel {
  min-width: 0;
}

.tof-info-panel--case {
  grid-row: span 2;
}

.tof-panel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.tof-panel-head h2 {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 25px;
}

.tof-panel-head h2 span {
  color: var(--tof-blue);
  font-size: 13px;
  font-weight: 900;
}

.tof-panel-head a {
  flex: 0 0 auto;
  color: var(--tof-blue);
  font-size: 13px;
  font-weight: 900;
}

.tof-panel-head a::after {
  content: "›";
  margin-left: 8px;
}

.tof-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tof-case-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--tof-line);
  border-radius: 8px;
  background: var(--tof-white);
  box-shadow: 0 7px 18px rgba(0, 43, 104, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tof-case-card img,
.tof-column-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--tof-light);
}

.tof-case-card p {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 12px 12px 0;
}

.tof-case-card p span,
.tof-news-list span,
.tof-seminar-list span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--tof-light);
  color: var(--tof-blue);
  font-size: 11px;
  font-weight: 900;
}

.tof-case-card h3 {
  margin: 10px 12px 12px;
  font-size: 13px;
  line-height: 1.65;
}

.tof-case-card em {
  display: block;
  margin: 0 12px 14px;
  color: var(--tof-blue);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.tof-case-card em::after {
  content: "›";
  margin-left: 7px;
}

.tof-news-list,
.tof-seminar-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
}

.tof-news-list li,
.tof-seminar-list li {
  list-style: none;
  border-bottom: 1px solid var(--tof-line);
}

.tof-news-list a,
.tof-seminar-list a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px 14px;
  padding: 20px 0;
  align-items: center;
  color: var(--tof-text);
}

.tof-news-list time,
.tof-seminar-list time {
  color: var(--tof-sub);
  font-size: 12px;
  font-weight: 800;
}

.tof-news-list strong,
.tof-seminar-list strong {
  grid-column: 1 / -1;
  color: var(--tof-text);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.65;
}

.tof-empty--compact {
  list-style: none;
  padding: 18px;
  color: var(--tof-sub);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.tof-seminar-list a {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.tof-seminar-list strong {
  grid-column: 1 / -1;
}

.tof-column-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.tof-column-card {
  overflow: hidden;
  border: 1px solid var(--tof-line);
  border-radius: 8px;
  background: var(--tof-white);
  box-shadow: 0 7px 18px rgba(0, 43, 104, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tof-column-card p {
  margin: 16px 18px 0;
  color: var(--tof-blue);
  font-size: 12px;
  font-weight: 900;
}

.tof-column-card h3 {
  margin: 9px 18px 20px;
  font-size: 16px;
  line-height: 1.65;
}

.tof-section-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.tof-partner-cta {
  padding: 52px 0;
  background: var(--tof-white);
}

.tof-partner-cta__grid,
.tof-contact-cta__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid #BFD5F1;
  border-radius: 8px;
  background: var(--tof-white);
  box-shadow: 0 8px 22px rgba(0, 43, 104, 0.07);
  overflow: hidden;
}

.tof-partner-cta article,
.tof-contact-cta article {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 140px;
  padding: 28px 34px;
  border-left: 1px solid var(--tof-line);
}

.tof-partner-cta article:first-child,
.tof-contact-cta article:first-child {
  border-left: 0;
}

.tof-partner-cta article > span,
.tof-contact-cta article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--tof-light);
  color: var(--tof-blue);
  overflow: hidden;
}

.tof-partner-cta h2,
.tof-contact-cta h2 {
  margin: 0;
  color: var(--tof-main);
  font-size: 24px;
  line-height: 1.45;
}

.tof-partner-cta p,
.tof-contact-cta p {
  margin: 7px 0 14px;
  color: var(--tof-sub);
  font-size: 14px;
}

.tof-contact-cta {
  padding: 58px 0;
  background:
    linear-gradient(135deg, rgba(234,244,255,0.92), rgba(255,255,255,0.96)),
    var(--tof-bg);
}

.tof-contact-cta__grid {
  border-color: var(--tof-line);
  box-shadow: none;
}

#footer.tof-footer {
  background: var(--tof-deep);
  color: var(--tof-white);
}

.tof-footer__inner {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 62px;
  padding: 48px 0 34px;
}

.tof-footer__logo {
  display: block;
  width: 210px;
  margin-bottom: 18px;
}

.tof-footer__brand p {
  margin: 0;
  color: #C9D8EC;
  font-size: 13px;
  line-height: 1.8;
}

.tof-footer__outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 18px;
  padding: 7px 16px;
  border: 1px solid rgba(255,255,255,0.36);
  border-radius: 6px;
  color: var(--tof-white);
  font-size: 13px;
  font-weight: 800;
}

.tof-footer__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.tof-footer__nav p {
  margin: 0 0 12px;
  color: var(--tof-white);
  font-size: 14px;
  font-weight: 900;
}

.tof-footer__nav a {
  display: block;
  margin-top: 8px;
  color: #C9D8EC;
  font-size: 13px;
}

.tof-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 16px 0 22px;
  border-top: 1px solid rgba(255,255,255,0.18);
  color: #C9D8EC;
  font-size: 12px;
}

.tof-footer__bottom span {
  margin-left: auto;
}

.tof-page-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 50px;
  height: 50px;
  border: 1px solid var(--tof-line);
  border-radius: 50%;
  background: var(--tof-white);
  color: var(--tof-blue);
  font-size: 12px;
  font-weight: 900;
  box-shadow: var(--tof-shadow);
}

.grecaptcha-badge {
  right: auto !important;
  left: 16px !important;
  bottom: 16px !important;
  width: 70px !important;
  height: 60px !important;
  overflow: hidden !important;
  border-radius: 8px !important;
  opacity: 0.72;
  z-index: 880 !important;
  box-shadow: 0 8px 18px rgba(0, 30, 77, 0.18) !important;
  transition: width 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease !important;
}

.grecaptcha-badge:hover,
.grecaptcha-badge:focus-within {
  width: 256px !important;
  opacity: 1;
  box-shadow: 0 12px 28px rgba(0, 30, 77, 0.24) !important;
}

.tof-anchor-offset {
  position: relative;
  display: block;
  width: 1px;
  height: 1px;
  margin-top: -1px;
  pointer-events: none;
}

.tof-lower {
  background: var(--tof-white);
}

.tof-page-hero,
.tof-article-header {
  position: relative;
  overflow: hidden;
  padding: 78px 0 70px;
  border-bottom: 1px solid var(--tof-line);
  background:
    linear-gradient(135deg, rgba(234, 244, 255, 0.96), rgba(255, 255, 255, 0.98) 54%, rgba(246, 250, 255, 0.92)),
    var(--tof-bg);
}

.tof-page-hero::before,
.tof-article-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 104, 217, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 104, 217, 0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.42;
  pointer-events: none;
}

.tof-page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 42px;
  align-items: center;
}

.tof-page-hero:not(.tof-page-hero--visual) .tof-page-hero__inner,
.tof-article-header .tof-container {
  display: block;
}

.tof-page-hero h1,
.tof-article-header h1 {
  margin: 8px 0 0;
  color: var(--tof-main);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
}

.tof-page-hero p:not(.tof-eyebrow),
.tof-article-header p:not(.tof-eyebrow) {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--tof-sub);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.95;
}

.tof-page-hero__image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(185, 207, 237, 0.8);
  border-radius: 8px;
  box-shadow: var(--tof-shadow);
}

.tof-page-hero__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.tof-thanks-page {
  background: var(--tof-white);
}

.tof-thanks-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 78px;
  background:
    linear-gradient(135deg, rgba(234, 244, 255, 0.96), rgba(255, 255, 255, 0.98) 56%, rgba(246, 250, 255, 0.92)),
    var(--tof-bg);
}

.tof-thanks-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 104, 217, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 104, 217, 0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.42;
  pointer-events: none;
}

.tof-thanks-card {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  max-width: 840px;
  margin-inline: auto;
  padding: 54px 48px;
  border: 1px solid rgba(188, 215, 242, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  text-align: center;
  box-shadow: 0 24px 56px rgba(0, 43, 104, 0.12);
}

.tof-thanks-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0068D9, #2AA8FF);
  color: var(--tof-white);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 18px 34px rgba(0, 104, 217, 0.24);
}

.tof-thanks-card h1 {
  margin: 10px 0 0;
  color: var(--tof-main);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.42;
}

.tof-thanks-card__lead {
  margin: 20px 0 0;
  color: var(--tof-text);
  font-size: clamp(17px, 2.2vw, 21px);
  font-weight: 800;
  line-height: 1.95;
}

.tof-thanks-card__note {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--tof-sub);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.9;
}

.tof-thanks-card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.tof-thanks-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tof-thanks-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 18px 20px;
  border: 1px solid var(--tof-line);
  border-radius: 8px;
  background: var(--tof-white);
  color: var(--tof-text);
  font-weight: 900;
  line-height: 1.6;
  box-shadow: 0 10px 24px rgba(0, 43, 104, 0.07);
}

.tof-thanks-links a::after {
  content: "›";
  margin-left: 12px;
  color: var(--tof-blue);
  font-size: 20px;
  line-height: 1;
}

.tof-section {
  padding: 76px 0;
  background: var(--tof-white);
}

.tof-section--tight {
  padding: 48px 0;
}

.tof-section--pale {
  background: var(--tof-bg);
}

.tof-section--cta {
  background: linear-gradient(135deg, rgba(234, 244, 255, 0.9), rgba(255, 255, 255, 0.96));
}

.tof-section-head {
  margin-bottom: 28px;
}

.tof-section-head--center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.tof-section-head span,
.tof-eyebrow {
  display: block;
  color: var(--tof-blue);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.tof-section-head h2 {
  margin: 7px 0 0;
  color: var(--tof-text);
  font-size: clamp(25px, 2.8vw, 36px);
  font-weight: 900;
  line-height: 1.45;
}

.tof-section-head p {
  margin: 14px 0 0;
  color: var(--tof-sub);
  font-size: 15px;
  line-height: 1.9;
}

.tof-card-grid {
  display: grid;
  gap: 22px;
}

.tof-card-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tof-card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.tof-card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.tof-card-grid--6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

.tof-detail-grid,
.tof-message-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 50px;
  align-items: start;
}

.tof-archive-layout,
.tof-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 42px;
  align-items: start;
}

.tof-archive-main,
.tof-article,
.tof-sidebar {
  min-width: 0;
}

@media (min-width: 1025px) {
  .tof-column-sidebar,
  .tof-article-layout .tof-sidebar {
    position: sticky;
    top: 132px;
  }
}

.tof-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 32px;
}

.tof-category-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 15px;
  border: 1px solid #BFD7F2;
  border-radius: 999px;
  background: var(--tof-white);
  color: var(--tof-main);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.tof-category-nav a:hover,
.tof-category-nav a.is-current {
  border-color: var(--tof-blue);
  background: var(--tof-blue);
  color: var(--tof-white);
}

.tof-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.tof-feature-list article,
.tof-plain-card,
.tof-post-card,
.tof-sidebar-card,
.tof-form-shell,
.tof-message-card,
.tof-note-box,
.tof-map-box,
.tof-empty,
.tof-policy-sign {
  border: 1px solid var(--tof-line);
  border-radius: 8px;
  background: var(--tof-white);
  box-shadow: 0 8px 22px rgba(0, 43, 104, 0.07);
}

.tof-empty {
  grid-column: 1 / -1;
}

.tof-feature-list article,
.tof-plain-card,
.tof-sidebar-card,
.tof-note-box,
.tof-map-box,
.tof-empty,
.tof-policy-sign {
  padding: 24px;
}

.tof-plain-card--center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 108px;
  text-align: center;
}

.tof-feature-list h3,
.tof-plain-card h2,
.tof-plain-card h3 {
  margin: 0;
  color: var(--tof-text);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.55;
}

.tof-feature-list p,
.tof-plain-card p,
.tof-note-box p,
.tof-empty p {
  margin: 10px 0 0;
  color: var(--tof-sub);
  font-size: 14px;
  line-height: 1.8;
}

.tof-check-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--tof-line);
  border-radius: 8px;
  background: var(--tof-white);
  box-shadow: 0 8px 22px rgba(0, 43, 104, 0.07);
}

.tof-check-panel li {
  position: relative;
  list-style: none;
  padding-left: 24px;
  color: var(--tof-text);
  font-weight: 800;
  line-height: 1.7;
}

.tof-check-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--tof-blue);
}

.tof-process-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
}

.tof-process-list li {
  min-height: 118px;
  padding: 20px;
  border: 1px solid var(--tof-line);
  border-radius: 8px;
  background: var(--tof-white);
  color: var(--tof-text);
  font-weight: 900;
  line-height: 1.55;
  list-style: none;
}

.tof-process-list span {
  display: block;
  margin-bottom: 12px;
  color: var(--tof-blue);
  font-size: 13px;
}

.tof-note-box {
  margin-top: 22px;
  background: var(--tof-white);
}

.tof-related-grid {
  display: grid;
  gap: 50px;
}

.tof-related-block {
  margin-top: 44px;
}

.tof-tech-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tof-tech-group {
  padding: 22px;
  border: 1px solid var(--tof-line);
  border-radius: 8px;
  background: var(--tof-white);
  box-shadow: 0 8px 22px rgba(0, 43, 104, 0.07);
}

.tof-tech-group h3 {
  margin: 0 0 14px;
  color: var(--tof-main);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
}

.tof-tech-group ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.tof-tech-group li {
  list-style: none;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--tof-bg);
  color: var(--tof-text);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.tof-faq-list {
  display: grid;
  gap: 12px;
}

.tof-faq-list details {
  border: 1px solid var(--tof-line);
  border-radius: 8px;
  background: var(--tof-white);
  overflow: hidden;
}

.tof-faq-list summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--tof-text);
  font-weight: 900;
}

.tof-faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--tof-sub);
  font-size: 14px;
}

.tof-cta-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 32px;
  border: 1px solid #B8CEF0;
  border-radius: 8px;
  background: var(--tof-white);
  box-shadow: var(--tof-shadow);
}

.tof-cta-inline span {
  color: var(--tof-blue);
  font-size: 13px;
  font-weight: 900;
}

.tof-cta-inline h2 {
  margin: 6px 0 0;
  color: var(--tof-main);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 900;
  line-height: 1.45;
}

.tof-cta-inline p {
  margin: 10px 0 0;
  color: var(--tof-sub);
}

.tof-cta-inline__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.tof-profile-list {
  display: grid;
  margin: 0;
  border: 1px solid var(--tof-line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--tof-white);
}

.tof-profile-list div {
  display: grid;
  grid-template-columns: 190px 1fr;
  border-top: 1px solid var(--tof-line);
}

.tof-profile-list div:first-child {
  border-top: 0;
}

.tof-profile-list dt,
.tof-profile-list dd {
  margin: 0;
  padding: 18px 20px;
}

.tof-profile-list dt {
  background: var(--tof-bg);
  color: var(--tof-main);
  font-weight: 900;
}

.tof-message-card {
  overflow: hidden;
}

.tof-message-card img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.tof-message-card .tof-wp-content {
  padding: 28px;
}

.tof-map-box {
  min-height: 280px;
  display: grid;
  place-items: center;
  color: var(--tof-sub);
}

.tof-map-box iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
}

.tof-form-shell {
  max-width: 900px;
  padding: 34px;
}

.tof-form {
  display: grid;
  gap: 18px;
}

.tof-form label,
.tof-cf7 label {
  display: grid;
  gap: 8px;
  color: var(--tof-text);
  font-weight: 800;
}

.tof-form input,
.tof-form select,
.tof-form textarea,
.tof-cf7 input,
.tof-cf7 select,
.tof-cf7 textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--tof-line);
  border-radius: 6px;
  background: var(--tof-white);
  color: var(--tof-text);
  font: inherit;
}

.tof-form textarea,
.tof-cf7 textarea {
  min-height: 150px;
}

.tof-form__check {
  grid-template-columns: auto 1fr;
  align-items: center;
  font-weight: 500;
}

.tof-form__check input {
  width: 18px;
  min-height: 18px;
}

.tof-form-note {
  margin-top: 20px;
  padding: 18px;
  border-radius: 8px;
  background: var(--tof-bg);
  color: var(--tof-sub);
}

.tof-cta-inline__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.tof-skill-sheet {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 50px;
  align-items: start;
}

.tof-skill-sheet__card,
.tof-rate-tool {
  border: 1px solid var(--tof-line);
  border-radius: 8px;
  background: var(--tof-white);
  box-shadow: 0 8px 22px rgba(0, 43, 104, 0.07);
}

.tof-skill-sheet__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
}

.tof-skill-sheet__card h3 {
  margin: 0;
  color: var(--tof-text);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.55;
}

.tof-skill-sheet__card p {
  margin: 10px 0 0;
  color: var(--tof-sub);
  font-size: 14px;
  line-height: 1.85;
}

.tof-skill-sheet__pending {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px dashed #9CB7D8;
  border-radius: 6px;
  background: var(--tof-bg);
  color: var(--tof-main);
  font-weight: 900;
}

.tof-rate-tool {
  padding: 30px;
}

.tof-rate-form {
  display: grid;
  gap: 24px;
}

.tof-rate-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.tof-rate-field,
.tof-rate-fieldset {
  min-width: 0;
}

.tof-rate-field {
  display: grid;
  gap: 8px;
  color: var(--tof-text);
  font-weight: 900;
}

.tof-rate-field select {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid var(--tof-line);
  border-radius: 6px;
  background: var(--tof-white);
  color: var(--tof-text);
  font: inherit;
}

.tof-rate-fieldset {
  margin: 0;
  padding: 22px;
  border: 1px solid var(--tof-line);
  border-radius: 8px;
  background: #FBFDFF;
}

.tof-rate-fieldset legend {
  padding: 0 8px;
  color: var(--tof-main);
  font-weight: 900;
}

.tof-option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.tof-option-grid--dense {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tof-check-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid var(--tof-line);
  border-radius: 6px;
  background: var(--tof-white);
  color: var(--tof-text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.tof-check-option input {
  width: 16px;
  height: 16px;
  accent-color: var(--tof-blue);
}

.tof-rate-submit {
  width: min(100%, 320px);
  min-height: 56px;
  justify-self: center;
  font-size: 16px;
}

.tof-rate-error,
.tof-rate-noscript {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid #F4B7B7;
  border-radius: 8px;
  background: #FFF5F5;
  color: #9B1C1C;
  font-weight: 800;
}

.tof-rate-error[hidden],
.tof-rate-error.is-hidden,
.tof-rate-result[hidden],
.tof-rate-result.is-hidden {
  display: none;
}

.tof-rate-result {
  margin-top: 28px;
  scroll-margin-top: 132px;
  overflow: hidden;
  border: 1px solid #A9CCF2;
  border-radius: 8px;
  background: linear-gradient(135deg, #F8FCFF, #EAF4FF);
  box-shadow: 0 14px 34px rgba(0, 59, 142, 0.12);
}

.tof-rate-result__head {
  padding: 26px 28px;
  background: linear-gradient(90deg, var(--tof-main), var(--tof-blue));
  color: var(--tof-white);
}

.tof-rate-result__head span {
  display: block;
  color: #CDE7FF;
  font-size: 13px;
  font-weight: 900;
}

.tof-rate-result__head h3 {
  margin: 6px 0 0;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.2;
}

.tof-rate-result__head p {
  margin: 8px 0 0;
  font-size: 20px;
  font-weight: 900;
}

.tof-rate-result__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 26px 28px 0;
}

.tof-rate-result__body h4 {
  margin: 0 0 12px;
  color: var(--tof-main);
  font-size: 17px;
  font-weight: 900;
}

.tof-rate-result__body ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.2em;
  color: var(--tof-text);
  line-height: 1.75;
}

.tof-rate-result__note {
  margin: 22px 28px 0;
  padding: 16px;
  border-radius: 8px;
  background: var(--tof-white);
  color: var(--tof-sub);
  font-size: 14px;
  line-height: 1.8;
}

.tof-rate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 28px 28px;
}

.tof-post-card {
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.tof-post-card:hover {
  transform: translateY(-3px);
  border-color: #B8D3F2;
  box-shadow: 0 16px 34px rgba(0, 43, 104, 0.14);
}

.tof-post-card a {
  display: grid;
  height: 100%;
}

.tof-post-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--tof-light);
}

.tof-post-card .tof-meta,
.tof-post-card h2,
.tof-post-card h3,
.tof-post-card p,
.tof-post-card .tof-link-arrow {
  margin-inline: 20px;
}

.tof-post-card .tof-meta {
  margin-top: 18px;
  color: var(--tof-blue);
  font-size: 12px;
  font-weight: 900;
}

.tof-post-card h2,
.tof-post-card h3 {
  margin-top: 8px;
  color: var(--tof-text);
  font-size: 18px;
  line-height: 1.6;
}

.tof-post-card p {
  color: var(--tof-sub);
  font-size: 14px;
  line-height: 1.75;
}

.tof-post-card .tof-link-arrow {
  margin-top: auto;
  margin-bottom: 20px;
}

.tof-column-index .tof-page-hero {
  background:
    linear-gradient(135deg, rgba(234, 244, 255, 0.96), rgba(255, 255, 255, 0.98)),
    var(--tof-bg);
}

.tof-post-card--column .tof-meta,
.tof-post-card--related .tof-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.tof-post-card--column .tof-meta span,
.tof-post-card--related .tof-meta span,
.tof-article-header .tof-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--tof-light);
  color: var(--tof-blue);
  font-size: 12px;
  font-weight: 900;
}

.tof-post-card--column .tof-meta time,
.tof-post-card--related .tof-meta time,
.tof-article-header .tof-meta time {
  color: var(--tof-sub);
  font-size: 12px;
  font-weight: 800;
}

.tof-post-card--column .tof-link-arrow,
.tof-post-card--related .tof-link-arrow {
  color: var(--tof-blue);
  font-size: 13px;
  font-weight: 900;
}

.tof-sidebar {
  display: grid;
  gap: 18px;
}

.tof-sidebar-card h2 {
  margin: 0 0 14px;
  color: var(--tof-main);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
}

.tof-sidebar-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
}

.tof-sidebar-list li {
  list-style: none;
  border-top: 1px solid var(--tof-line);
}

.tof-sidebar-list li:first-child {
  border-top: 0;
}

.tof-sidebar-list a {
  display: block;
  padding: 12px 0;
  color: var(--tof-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.65;
}

.tof-sidebar-list a:hover {
  color: var(--tof-blue);
}

.tof-search-form {
  display: grid;
  gap: 10px;
}

.tof-search-form input[type="search"] {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid var(--tof-line);
  border-radius: 6px;
  background: var(--tof-white);
  color: var(--tof-text);
  font: inherit;
}

.tof-search-form button {
  justify-self: start;
  min-width: 112px;
  min-height: 40px;
  padding: 9px 16px;
  border: 1px solid var(--tof-blue);
  border-radius: 6px;
  background: var(--tof-blue);
  color: var(--tof-white);
  font-weight: 900;
}

.tof-sidebar-card--blue {
  border-color: transparent;
  background: linear-gradient(135deg, var(--tof-main), var(--tof-blue));
  color: var(--tof-white);
}

.tof-sidebar-card--blue h2,
.tof-sidebar-card--blue p {
  color: var(--tof-white);
}

.tof-sidebar-card--blue p {
  margin: 0 0 18px;
  color: #D9ECFF;
  line-height: 1.75;
}

.tof-sidebar-card--blue .tof-btn {
  width: 100%;
  border-color: rgba(255, 255, 255, 0.48);
  background: var(--tof-white);
  color: var(--tof-main);
  box-shadow: none;
}

.tof-article-header .tof-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  margin: 0 0 14px;
}

.tof-article__hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 28px;
  border: 1px solid var(--tof-line);
  border-radius: 8px;
  object-fit: cover;
  background: var(--tof-light);
  box-shadow: 0 12px 28px rgba(0, 43, 104, 0.08);
}

.tof-wp-content {
  color: var(--tof-text);
  font-size: 16px;
  line-height: 1.95;
}

.tof-wp-content > *:first-child {
  margin-top: 0;
}

.tof-wp-content h2 {
  margin: 46px 0 18px;
  padding: 14px 18px;
  border-left: 5px solid var(--tof-blue);
  border-radius: 0 8px 8px 0;
  background: var(--tof-bg);
  color: var(--tof-main);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 900;
  line-height: 1.45;
}

.tof-wp-content h3 {
  margin: 34px 0 14px;
  padding-left: 14px;
  border-left: 4px solid #7EBBFF;
  color: var(--tof-text);
  font-size: clamp(19px, 1.8vw, 23px);
  font-weight: 900;
  line-height: 1.55;
}

.tof-wp-content p,
.tof-wp-content ul,
.tof-wp-content ol,
.tof-wp-content blockquote,
.tof-wp-content table,
.tof-wp-content pre {
  margin: 18px 0 0;
}

.tof-wp-content ul,
.tof-wp-content ol {
  padding-left: 1.35em;
}

.tof-wp-content li + li {
  margin-top: 6px;
}

.tof-wp-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.tof-wp-content table {
  width: 100%;
  border-collapse: collapse;
  overflow-wrap: normal;
}

.tof-wp-content th,
.tof-wp-content td {
  padding: 12px 14px;
  border: 1px solid var(--tof-line);
  vertical-align: top;
}

.tof-wp-content th {
  background: var(--tof-bg);
  color: var(--tof-main);
  font-weight: 900;
}

.tof-wp-content pre {
  max-width: 100%;
  overflow-x: auto;
  padding: 18px;
  border-radius: 8px;
  background: #071E3D;
  color: #EAF4FF;
}

.tof-wp-content code {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.tof-toc {
  margin: 0 0 28px;
  padding: 22px;
  border: 1px solid #C8DEF5;
  border-radius: 8px;
  background: #F8FCFF;
}

.tof-toc__title {
  margin: 0 0 12px;
  color: var(--tof-main);
  font-weight: 900;
}

.tof-toc ol {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 1.2em;
}

.tof-toc a {
  color: var(--tof-text);
  font-weight: 800;
}

.tof-toc a:hover {
  color: var(--tof-blue);
}

.tof-toc__item--h3 {
  margin-left: 1em;
  color: var(--tof-sub);
}

.tof-author-box,
.tof-share,
.tof-related-column {
  margin-top: 42px;
}

.tof-author-box {
  padding: 24px;
  border: 1px solid var(--tof-line);
  border-radius: 8px;
  background: var(--tof-bg);
}

.tof-author-box h2 {
  margin: 0 0 10px;
  color: var(--tof-main);
  font-size: 19px;
}

.tof-author-box p {
  margin: 8px 0 0;
  color: var(--tof-sub);
}

.tof-related-column .tof-section-head {
  margin-bottom: 18px;
}

.tof-related-column .tof-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tof-share {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--tof-line);
}

.tof-share span {
  color: var(--tof-sub);
  font-size: 13px;
  font-weight: 900;
}

.tof-share a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid #BFD7F2;
  border-radius: 999px;
  color: var(--tof-main);
  font-size: 13px;
  font-weight: 900;
}

.tof-empty--archive {
  padding: 34px;
  text-align: center;
}

.tof-empty--archive p {
  margin: 0;
}

.tof-policy-layout {
  display: grid;
  gap: 30px;
}

.tof-policy-list {
  display: grid;
  gap: 16px;
}

.tof-policy-list section {
  padding: 24px;
  border: 1px solid var(--tof-line);
  border-radius: 8px;
  background: var(--tof-white);
}

.tof-policy-list h2 {
  margin: 0;
  color: var(--tof-main);
  font-size: 20px;
}

.tof-policy-list p {
  margin: 10px 0 0;
  color: var(--tof-sub);
}

.tof-sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.tof-sitemap-grid ul,
.tof-plain-card ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 1.2em;
}

.tof-sitemap-grid a,
.tof-plain-card a,
.tof-note-box a {
  color: var(--tof-main);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tof-section-image {
  width: 100%;
  margin-top: 22px;
  border-radius: 8px;
  border: 1px solid var(--tof-line);
}

@media (max-width: 1180px) {
  .tof-logo {
    flex-basis: 200px;
    width: 200px;
  }

  .tof-nav {
    gap: 16px;
    font-size: 13px;
  }

  .tof-header__actions .tof-btn {
    min-width: 120px;
    padding-inline: 16px;
  }

  .tof-pickup-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tof-card-grid--6,
  .tof-process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .tof-nav,
  .tof-header__actions {
    display: none;
  }

  .tof-menu-toggle {
    display: block;
  }

  .tof-hero {
    grid-template-columns: 1fr;
  }

  .tof-hero__copy {
    justify-content: center;
    padding: 56px 24px 30px;
  }

  .tof-hero__copy-inner {
    width: min(720px, 100%);
    margin-right: 0;
  }

  .tof-hero__media {
    min-height: 360px;
    clip-path: none;
  }

  .tof-hero__media img {
    min-height: 360px;
  }

  .tof-service-grid,
  .tof-strength-grid,
  .tof-column-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tof-business-layout,
  .tof-information-grid,
  .tof-skill-sheet,
  .tof-footer__inner,
  .tof-page-hero__inner,
  .tof-detail-grid,
  .tof-archive-layout,
  .tof-article-layout,
  .tof-message-grid {
    grid-template-columns: 1fr;
  }

  .tof-business-copy {
    max-width: 520px;
  }

  .tof-info-panel--case {
    grid-row: auto;
  }

  .tof-card-grid--3,
  .tof-card-grid--4,
  .tof-card-grid--6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tof-related-column .tof-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tof-tech-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tof-process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tof-option-grid--dense {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 124px;
  }

  html :where([id]),
  body.admin-bar :where([id]) {
    scroll-margin-top: 124px;
  }

  body.tof-site :target,
  body.admin-bar :target {
    scroll-margin-top: 124px !important;
  }

  .tof-container,
  .tof-topbar__inner,
  .tof-header__inner,
  .tof-footer__inner,
  .tof-footer__bottom,
  .tof-blue-band__inner {
    width: min(100% - 32px, 560px);
  }

  .tof-topbar {
    display: block;
    height: 34px;
  }

  .tof-topbar__inner {
    justify-content: center;
    gap: 18px;
    height: 34px;
    font-size: 11px;
  }

  .tof-topbar a {
    min-height: 34px;
  }

  .tof-header__inner {
    height: 68px;
  }

  .tof-logo {
    flex-basis: 170px;
    width: 170px;
  }

  .tof-main {
    padding-top: 102px;
  }

  .tof-page-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }

  .grecaptcha-badge {
    left: 12px !important;
    bottom: 12px !important;
    width: 58px !important;
    opacity: 0.68;
    transform: scale(0.84);
    transform-origin: left bottom;
  }

  .grecaptcha-badge:hover,
  .grecaptcha-badge:focus-within {
    width: 256px !important;
    opacity: 1;
  }

  .tof-hero {
    min-height: auto;
  }

  .tof-hero__copy {
    padding: 42px 16px 24px;
  }

  .tof-hero h1 {
    font-size: 34px;
  }

  .tof-hero p {
    font-size: 14px;
  }

  .tof-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .tof-btn {
    width: 100%;
  }

  .tof-hero__media,
  .tof-hero__media img {
    min-height: 260px;
  }

  .tof-front-section {
    padding: 54px 0;
  }

  .tof-page-hero,
  .tof-article-header {
    padding: 54px 0 48px;
  }

  .tof-thanks-hero {
    padding: 58px 0 54px;
  }

  .tof-thanks-card {
    padding: 34px 22px;
  }

  .tof-thanks-card__icon {
    width: 68px;
    height: 68px;
    font-size: 34px;
  }

  .tof-thanks-card h1 {
    font-size: 30px;
  }

  .tof-thanks-card__actions,
  .tof-thanks-card__actions .tof-btn {
    width: 100%;
  }

  .tof-page-hero h1,
  .tof-article-header h1 {
    font-size: 32px;
  }

  .tof-section {
    padding: 56px 0;
  }

  .tof-category-nav--column {
    flex-wrap: nowrap;
    margin-right: -16px;
    margin-left: -16px;
    padding: 0 16px 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .tof-category-nav--column a {
    flex: 0 0 auto;
  }

  .tof-service-grid,
  .tof-pickup-grid,
  .tof-strength-grid,
  .tof-column-grid,
  .tof-case-grid,
  .tof-partner-cta__grid,
  .tof-contact-cta__grid,
  .tof-blue-band__inner,
  .tof-card-grid--2,
  .tof-card-grid--3,
  .tof-card-grid--4,
  .tof-card-grid--6,
  .tof-feature-list,
  .tof-check-panel,
  .tof-process-list,
  .tof-sitemap-grid,
  .tof-tech-groups {
    grid-template-columns: 1fr;
  }

  .tof-skill-sheet__card,
  .tof-rate-form__grid,
  .tof-rate-result__body,
  .tof-thanks-links {
    grid-template-columns: 1fr;
  }

  .tof-skill-sheet__card,
  .tof-rate-tool {
    padding: 22px;
  }

  .tof-rate-result__head,
  .tof-rate-result__body,
  .tof-rate-actions {
    padding-right: 22px;
    padding-left: 22px;
  }

  .tof-rate-result__note {
    margin-right: 22px;
    margin-left: 22px;
  }

  .tof-option-grid,
  .tof-option-grid--dense {
    grid-template-columns: 1fr;
  }

  .tof-rate-actions,
  .tof-cta-inline__actions {
    display: grid;
  }

  .tof-related-column .tof-related-grid {
    grid-template-columns: 1fr;
  }

  .tof-wp-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .tof-service-card {
    min-height: 190px;
  }

  .tof-business-layout {
    gap: 24px;
  }

  .tof-blue-band__inner div {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.22);
  }

  .tof-blue-band__inner div:first-child {
    border-top: 0;
  }

  .tof-news-list a,
  .tof-seminar-list a {
    grid-template-columns: auto 1fr;
  }

  .tof-news-list strong,
  .tof-seminar-list strong {
    grid-column: 1 / -1;
  }

  .tof-partner-cta__grid,
  .tof-contact-cta__grid {
    gap: 0;
  }

  .tof-partner-cta article,
  .tof-contact-cta article {
    grid-template-columns: 1fr;
    border-left: 0;
    border-top: 1px solid var(--tof-line);
    padding: 26px;
  }

  .tof-partner-cta article:first-child,
  .tof-contact-cta article:first-child {
    border-top: 0;
  }

  .tof-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tof-cta-inline {
    display: grid;
    padding: 26px;
  }

  .tof-cta-inline__actions {
    justify-content: stretch;
  }

  .tof-profile-list div {
    grid-template-columns: 1fr;
  }

  .tof-profile-list dd {
    border-top: 1px solid var(--tof-line);
  }

  .tof-form-shell {
    padding: 24px;
  }

  .tof-footer__bottom span {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .tof-topbar__inner {
    justify-content: flex-start;
  }

  .tof-logo {
    flex-basis: 150px;
    width: 150px;
  }

  .tof-hero h1 {
    font-size: 30px;
  }

  .tof-pickup-grid {
    grid-template-columns: 1fr;
  }

  .tof-footer__nav {
    grid-template-columns: 1fr;
  }

  .tof-page-hero h1,
  .tof-article-header h1 {
    font-size: 26px;
  }

  .tof-section-head h2 {
    font-size: 24px;
  }

  .tof-feature-list article,
  .tof-plain-card,
  .tof-sidebar-card,
  .tof-note-box,
  .tof-map-box,
  .tof-empty,
  .tof-policy-sign {
    padding: 20px;
  }
}
