:root {
  --ink: #12324a;
  --muted: #5d7890;
  --cyan-950: #06364d;
  --cyan-850: #075f83;
  --cyan-700: #008fc0;
  --cyan-600: #00a8d8;
  --cyan-100: #dff7ff;
  --cyan-050: #f2fbff;
  --teal: #16b7b5;
  --orange: #d66a00;
  --orange-dark: #a85000;
  --white: #ffffff;
  --line: #cbeaf4;
  --shadow: 0 18px 42px rgba(0, 143, 192, 0.14);
  --max: 1120px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfeff;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p,
li,
a,
button,
dt,
dd,
label {
  overflow-wrap: anywhere;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--cyan-950);
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  outline: 3px solid rgba(0, 168, 216, 0.34);
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px 5vw;
  border-bottom: 1px solid rgba(203, 234, 244, 0.86);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--cyan-950);
}

.brand img,
.footer-brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.brand span {
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  min-height: 44px;
  padding: 9px 16px;
  border-radius: 8px;
  color: var(--cyan-950);
  font-weight: 800;
  font-size: 0.94rem;
}

.site-nav a.is-current {
  color: var(--cyan-850);
  background: var(--cyan-100);
}

.site-nav a:last-child {
  color: var(--white);
  background: var(--cyan-700);
  box-shadow: 0 10px 22px rgba(0, 143, 192, 0.22);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  outline: none;
  background: var(--cyan-100);
}

.site-nav a:last-child:hover,
.site-nav a:last-child:focus-visible {
  background: var(--cyan-850);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--cyan-950);
}

.breadcrumb {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: calc(100% - 32px);
  max-width: var(--max);
  padding: 12px 0;
  margin: 0 auto;
  list-style: none;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb li + li::before {
  content: "/";
  color: #8aaabc;
}

.breadcrumb a {
  color: var(--cyan-850);
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  outline: none;
  text-decoration: underline;
}

.hero {
  position: relative;
  min-height: 740px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #e8fbff;
  color: var(--ink);
}

.hero-background,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-background {
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  background: rgba(255, 255, 255, 0.2);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: calc(var(--max) + 32px);
  margin: 0 auto;
  padding: 88px 16px 72px;
}

.hero-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 7px 12px 7px 8px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(0, 143, 192, 0.12);
  color: var(--cyan-850);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-mark img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 6px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-top: 34px;
  color: var(--cyan-700);
}

.hero h1 {
  max-width: 780px;
  margin: 0 0 22px;
  color: var(--cyan-950);
  font-size: 4.8rem;
  line-height: 1.08;
  font-weight: 800;
}

.hero-lead {
  max-width: 720px;
  margin: 0;
  color: #274860;
  font-size: 1.18rem;
  line-height: 1.9;
  font-weight: 700;
}

.hero-lead span {
  display: inline;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--cyan-700);
  box-shadow: 0 12px 28px rgba(0, 143, 192, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--cyan-850);
}

.button-secondary {
  color: var(--cyan-850);
  border-color: rgba(0, 143, 192, 0.34);
  background: rgba(255, 255, 255, 0.8);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--cyan-700);
  background: var(--white);
}

.button-accent {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 26px rgba(214, 106, 0, 0.2);
}

.button-accent:hover,
.button-accent:focus-visible {
  background: var(--orange-dark);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 900px;
  padding: 0;
  margin: 38px 0 0;
  list-style: none;
}

.hero-points li {
  max-width: 100%;
  min-height: 38px;
  padding: 7px 13px;
  border: 1px solid rgba(0, 143, 192, 0.22);
  border-radius: 8px;
  color: var(--cyan-850);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 20px rgba(0, 143, 192, 0.08);
  font-size: 0.92rem;
  font-weight: 800;
}

.section {
  padding: 92px 0;
}

.section-inner {
  width: calc(100% - 32px);
  max-width: var(--max);
  margin: 0 auto;
}

.trust-band {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid var(--line);
  background: var(--cyan-050);
}

.trust-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: center;
}

.trust-grid h2,
.section-heading h2,
.split-section h2,
.cta-inner h2,
.contact-copy h2 {
  margin: 0;
  color: var(--cyan-950);
  font-size: 2.1rem;
  line-height: 1.38;
}

.trust-grid p:last-child {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 42px;
}

.section-heading p:last-child,
.contact-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.news-section {
  background: var(--white);
}

.news-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 48px;
  align-items: start;
}

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

.news-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.news-list {
  display: grid;
}

.news-item {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.news-item:last-child {
  border-bottom: 0;
}

.news-meta {
  display: grid;
  align-content: start;
  gap: 8px;
}

.news-date {
  color: var(--cyan-850);
  font-size: 0.92rem;
  font-weight: 800;
}

.news-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  padding: 4px 10px;
  border: 1px solid rgba(0, 143, 192, 0.22);
  border-radius: 8px;
  color: var(--cyan-700);
  background: var(--cyan-050);
  font-size: 0.78rem;
  font-weight: 800;
}

.news-body h3 {
  margin: 0 0 8px;
  color: var(--cyan-950);
  font-size: 1.08rem;
  line-height: 1.5;
}

.news-body p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.news-toggle-button {
  display: none;
  width: calc(100% - 48px);
  min-height: 48px;
  margin: 0 24px 24px;
  border: 1px solid rgba(0, 143, 192, 0.34);
  border-radius: 8px;
  color: var(--cyan-850);
  background: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.news-toggle-button.is-visible {
  display: block;
}

.news-toggle-button:hover,
.news-toggle-button:focus-visible {
  outline: none;
  border-color: var(--cyan-700);
  background: var(--cyan-050);
}

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

.insight-card,
.service-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.insight-card {
  padding: 28px;
}

.insight-index,
.service-number,
.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal);
  font-size: 0.84rem;
  font-weight: 800;
}

.insight-card h3,
.service-card h3,
.process-list h3 {
  margin: 18px 0 10px;
  color: var(--cyan-950);
  font-size: 1.2rem;
  line-height: 1.45;
}

.insight-card p,
.service-card p,
.process-list p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.section-soft {
  background: var(--cyan-050);
}

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

.service-card {
  padding: 30px;
}

.service-card:nth-child(even) .service-number {
  background: var(--cyan-700);
}

.service-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.service-head h3 {
  margin: 0;
}

.service-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  margin-top: 24px;
  padding: 9px 14px;
  border: 1px solid rgba(0, 143, 192, 0.28);
  border-radius: 8px;
  color: var(--cyan-850);
  background: var(--cyan-050);
  font-size: 0.9rem;
  font-weight: 800;
}

.service-link:hover,
.service-link:focus-visible {
  outline: none;
  border-color: var(--cyan-700);
  background: var(--cyan-100);
}

.hero-focus h1 {
  max-width: 900px;
}

.hero-title-wide,
.hero-focus h1 > span:last-child {
  display: block;
}

.hero-title-narrow {
  display: none;
}

.service-card-primary {
  border-color: rgba(0, 143, 192, 0.34);
  background: #f7fdff;
}

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

.support-scope-card,
.package-card,
.case-card {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.support-scope-card span,
.package-card span,
.case-card span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border: 1px solid rgba(0, 143, 192, 0.2);
  border-radius: 8px;
  color: var(--cyan-700);
  background: var(--cyan-050);
  font-size: 0.78rem;
  font-weight: 800;
}

.support-scope-card h3,
.package-card h3,
.case-card h3 {
  margin: 16px 0 10px;
  color: var(--cyan-950);
  font-size: 1.18rem;
  line-height: 1.45;
}

.support-scope-card p,
.package-card p,
.case-card p,
.area-panel p,
.faq-list p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.package-grid {
  margin-bottom: 22px;
}

.package-card {
  border-color: rgba(0, 143, 192, 0.26);
  background: var(--cyan-050);
}

.package-card h3 {
  color: var(--cyan-700);
  font-size: 1.55rem;
}

.case-card span {
  border-color: rgba(214, 106, 0, 0.22);
  color: var(--orange);
  background: #fffaf2;
}

.area-panel {
  display: grid;
  gap: 22px;
}

.area-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 12px;
  border: 1px solid rgba(0, 143, 192, 0.24);
  border-radius: 8px;
  color: var(--cyan-850);
  background: var(--cyan-050);
  font-size: 0.9rem;
  font-weight: 800;
}

.trust-profile {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 44px;
  align-items: start;
}

.profile-logo {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.profile-logo img {
  width: 100%;
  border-radius: 8px;
}

.profile-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
}

.profile-list div {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cyan-050);
}

.profile-list dt {
  color: var(--cyan-850);
  font-weight: 800;
}

.profile-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

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

.faq-list details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 143, 192, 0.08);
}

.faq-list summary {
  color: var(--cyan-950);
  font-weight: 800;
  cursor: pointer;
}

.faq-list p {
  margin-top: 12px;
}

.portfolio-hero {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #e8fbff;
}

.portfolio-hero-background,
.portfolio-hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.portfolio-hero-background {
  object-fit: cover;
  object-position: center;
}

.portfolio-hero-scrim {
  background: rgba(255, 255, 255, 0.36);
}

.portfolio-hero-inner {
  position: relative;
  z-index: 2;
  padding: 96px 0 84px;
}

.portfolio-hero h1 {
  max-width: 880px;
  margin: 0;
  color: var(--cyan-950);
  font-size: 3.8rem;
  line-height: 1.15;
  font-weight: 800;
}

.portfolio-hero h1 span {
  display: inline-block;
}

.portfolio-hero p:not(.section-kicker) {
  max-width: 780px;
  margin: 22px 0 0;
  color: #274860;
  font-size: 1.08rem;
  font-weight: 700;
}

.portfolio-intro {
  background: var(--white);
}

.portfolio-lead-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.portfolio-lead-grid > *,
.portfolio-grid > *,
.showcase-card > * {
  min-width: 0;
}

.portfolio-lead-grid h2 {
  margin: 0;
  color: var(--cyan-950);
  font-size: 2.1rem;
  line-height: 1.38;
}

.portfolio-lead-grid p:last-child {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.portfolio-nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.portfolio-nav-pills a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid rgba(0, 143, 192, 0.28);
  border-radius: 8px;
  color: var(--cyan-850);
  background: var(--cyan-050);
  font-weight: 800;
}

.portfolio-nav-pills a:hover,
.portfolio-nav-pills a:focus-visible {
  outline: none;
  border-color: var(--cyan-700);
  background: var(--cyan-100);
}

.portfolio-section {
  scroll-margin-top: 92px;
}

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

.portfolio-work-card,
.showcase-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.portfolio-work-card {
  padding: 30px;
}

.work-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.work-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border: 1px solid rgba(0, 143, 192, 0.2);
  border-radius: 8px;
  color: var(--cyan-700);
  background: var(--cyan-050);
  font-size: 0.78rem;
  font-weight: 800;
}

.work-card-meta span:first-child {
  border-color: rgba(214, 106, 0, 0.22);
  color: var(--orange);
  background: #fffaf2;
}

.portfolio-work-card h3,
.showcase-copy h3 {
  margin: 0 0 12px;
  color: var(--cyan-950);
  font-size: 1.25rem;
  line-height: 1.45;
}

.portfolio-work-card p,
.showcase-copy p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.work-card-points {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}

.work-card-points div {
  padding: 14px 16px;
  border: 1px solid rgba(0, 143, 192, 0.16);
  border-radius: 8px;
  background: var(--cyan-050);
}

.work-card-points dt {
  margin-bottom: 4px;
  color: var(--cyan-850);
  font-size: 0.84rem;
  font-weight: 800;
}

.work-card-points dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.showcase-grid {
  display: grid;
  gap: 28px;
}

.showcase-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: center;
  padding: 24px;
}

.mock-browser {
  overflow: hidden;
  border: 1px solid rgba(0, 143, 192, 0.18);
  border-radius: 8px;
  background: var(--white);
}

.mock-browser-bar {
  display: flex;
  gap: 7px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(0, 143, 192, 0.12);
  background: #f7fbfd;
}

.mock-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8bd9ef;
}

.mock-browser-bar span:nth-child(2) {
  background: #f2c06b;
}

.mock-browser-bar span:nth-child(3) {
  background: #76c7a2;
}

.mock-page {
  min-height: 312px;
  padding: 20px;
}

.mock-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  font-size: 0.84rem;
  font-weight: 800;
}

.mock-nav span {
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.cafe-page {
  color: #3f3327;
  background: #fffaf5;
}

.mock-cafe-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 176px;
  overflow: hidden;
  padding: 20px;
  border-radius: 8px;
  background: #f0dfc9;
}

.mock-cafe-hero::before,
.mock-cafe-hero::after {
  content: "";
  position: absolute;
  right: 20px;
  border-radius: 8px;
  background: #c99261;
}

.mock-cafe-hero::before {
  top: 22px;
  width: 118px;
  height: 86px;
}

.mock-cafe-hero::after {
  bottom: 20px;
  width: 152px;
  height: 42px;
  background: #e7c9a2;
}

.mock-cafe-hero div {
  position: relative;
  max-width: 270px;
  z-index: 1;
}

.mock-cafe-hero span,
.mock-it-hero span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
}

.mock-cafe-hero h4,
.mock-it-hero h4,
.supplement-page h4 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.42;
}

.mock-menu-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.mock-menu-row span {
  min-height: 38px;
  padding: 7px;
  border-radius: 8px;
  text-align: center;
  background: var(--white);
  color: #6d4f34;
  font-size: 0.78rem;
  font-weight: 800;
}

.it-page {
  color: var(--cyan-950);
  background: #eefaff;
}

.mock-it-hero {
  min-height: 172px;
  padding: 26px;
  border-left: 6px solid var(--cyan-700);
  border-radius: 8px;
  background: var(--white);
}

.mock-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.mock-panel-grid span {
  min-height: 54px;
  padding: 16px 8px;
  border-radius: 8px;
  text-align: center;
  color: var(--cyan-850);
  background: var(--cyan-100);
  font-size: 0.8rem;
  font-weight: 800;
}

.supplement-page {
  display: grid;
  align-content: center;
  gap: 18px;
  color: #4a2f1d;
  background: #fff8f2;
}

.mock-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(214, 106, 0, 0.26);
  border-radius: 8px;
  background: var(--white);
}

.mock-offer span {
  color: var(--orange);
  font-weight: 800;
}

.mock-offer strong {
  color: var(--orange);
  font-size: 2.2rem;
  line-height: 1;
}

.mock-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.mock-benefits span {
  padding: 10px 8px;
  border-radius: 8px;
  text-align: center;
  color: var(--orange-dark);
  background: #fff1df;
  font-size: 0.8rem;
  font-weight: 800;
}

.mock-cta {
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 8px;
  text-align: center;
  color: var(--white);
  background: var(--orange);
  font-weight: 800;
}

.showcase-copy {
  min-width: 0;
}

.showcase-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.showcase-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-weight: 700;
}

.showcase-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.showcase-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: 24px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--cyan-700);
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(0, 143, 192, 0.18);
}

.showcase-open:hover,
.showcase-open:focus-visible {
  outline: none;
  background: var(--cyan-850);
}

.sample-site {
  background: #fbfeff;
}

.sample-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px 5vw;
  border-bottom: 1px solid rgba(203, 234, 244, 0.78);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.sample-brand {
  color: var(--cyan-950);
  font-size: 1.06rem;
  font-weight: 800;
}

.sample-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.sample-nav a {
  min-height: 42px;
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--cyan-950);
  font-size: 0.9rem;
  font-weight: 800;
}

.sample-nav a:hover,
.sample-nav a:focus-visible {
  outline: none;
  background: var(--cyan-100);
}

.sample-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.sample-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sample-hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.sample-hero-copy {
  position: relative;
  z-index: 1;
  width: calc(100% - 32px);
  max-width: 720px;
  margin-left: max(5vw, calc((100vw - var(--max)) / 2));
  padding: 64px 0;
}

.sample-kicker {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.sample-hero h1,
.sample-section-heading h2,
.sample-split h2,
.sample-access-panel h2,
.lp-conversion-panel h2 {
  margin: 0;
  color: var(--cyan-950);
  font-size: 3.25rem;
  line-height: 1.18;
}

.sample-hero p:not(.sample-kicker),
.sample-section-heading p:last-child,
.sample-text-block p,
.sample-access-panel p,
.lp-conversion-panel p {
  color: var(--muted);
  font-weight: 700;
}

.sample-hero p:not(.sample-kicker) {
  max-width: 620px;
  margin: 20px 0 0;
  font-size: 1.04rem;
}

.sample-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.sample-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
}

.sample-button:hover,
.sample-button:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

.sample-button-light {
  border-color: rgba(0, 143, 192, 0.28);
  color: var(--cyan-850);
  background: rgba(255, 255, 255, 0.82);
}

.sample-section {
  padding: 86px 0;
}

.sample-section-inner {
  width: calc(100% - 32px);
  max-width: var(--max);
  margin: 0 auto;
}

.sample-section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.sample-section-heading h2,
.sample-split h2,
.sample-access-panel h2,
.lp-conversion-panel h2 {
  font-size: 2.1rem;
  line-height: 1.38;
}

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

.sample-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.sample-card span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 16px;
  padding: 4px 10px;
  border-radius: 8px;
  color: var(--cyan-700);
  background: var(--cyan-050);
  font-size: 0.78rem;
  font-weight: 800;
}

.sample-card h3 {
  margin: 0 0 10px;
  color: var(--cyan-950);
  font-size: 1.2rem;
  line-height: 1.45;
}

.sample-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.sample-card strong {
  display: block;
  margin-top: 18px;
  color: var(--orange);
  font-size: 1.15rem;
}

.sample-split,
.sample-access-panel,
.lp-conversion-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.sample-text-block {
  min-width: 0;
}

.sample-text-block p {
  margin: 0;
}

.sample-text-block ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.sample-text-block li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-weight: 700;
}

.sample-text-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.sample-access-panel,
.lp-conversion-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.sample-access-panel dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.sample-access-panel dl div {
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--cyan-050);
}

.sample-access-panel dt {
  margin-bottom: 4px;
  color: var(--cyan-850);
  font-size: 0.84rem;
  font-weight: 800;
}

.sample-access-panel dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.cafe-hero::after {
  background: rgba(255, 250, 245, 0.66);
}

.cafe-button {
  color: var(--white);
  background: #8a633f;
  box-shadow: 0 12px 24px rgba(138, 99, 63, 0.2);
}

.cafe-button:hover,
.cafe-button:focus-visible {
  background: #60452d;
}

.cafe-menu,
.cafe-access {
  background: #fffaf5;
}

.cafe-story {
  background: #f4fbf8;
}

.sample-cafe-site .sample-card span {
  color: #6b563f;
  background: #fff0df;
}

.it-hero::after {
  background: rgba(238, 250, 255, 0.6);
}

.it-button {
  color: var(--white);
  background: var(--cyan-700);
  box-shadow: 0 12px 24px rgba(0, 143, 192, 0.2);
}

.it-button:hover,
.it-button:focus-visible {
  background: var(--cyan-850);
}

.it-services,
.it-contact {
  background: #f3fbff;
}

.it-case {
  background: var(--white);
}

.lp-hero::after {
  background: rgba(255, 255, 255, 0.62);
}

.lp-button {
  color: var(--white);
  background: #e36f18;
  box-shadow: 0 12px 24px rgba(227, 111, 24, 0.2);
}

.lp-button:hover,
.lp-button:focus-visible {
  background: #ad510b;
}

.lp-offer-box {
  display: grid;
  width: fit-content;
  min-width: 260px;
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(227, 111, 24, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 28px rgba(227, 111, 24, 0.1);
}

.lp-offer-box span,
.lp-price-card span {
  color: #ad510b;
  font-weight: 800;
}

.lp-offer-box strong,
.lp-price-card strong {
  color: #e36f18;
  font-size: 2.8rem;
  line-height: 1.1;
}

.lp-offer-box small {
  color: var(--muted);
  font-weight: 800;
}

.lp-reason,
.lp-faq {
  background: #f5fcfb;
}

.lp-offer {
  background: #fff8f1;
}

.lp-price-card {
  min-width: 0;
  padding: 26px;
  border: 1px solid rgba(227, 111, 24, 0.22);
  border-radius: 8px;
  background: var(--white);
}

.lp-price-card p {
  margin: 6px 0 20px;
}

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

.sample-faq-list details {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 143, 192, 0.08);
}

.sample-faq-list summary {
  color: var(--cyan-950);
  font-weight: 800;
  cursor: pointer;
}

.sample-faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.cafe2-page {
  background: #f7f3ed;
  color: #241a12;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Yu Gothic", Meiryo, serif;
}

.cafe2-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 12px 5vw;
  border-bottom: 1px solid #e4d7c8;
  background: rgba(247, 243, 237, 0.94);
  backdrop-filter: blur(12px);
}

.cafe2-brand {
  display: grid;
  color: #241a12;
  line-height: 1.15;
}

.cafe2-brand span {
  font-size: 1.35rem;
  font-weight: 800;
}

.cafe2-brand small {
  color: #9b6b33;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cafe2-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #38291d;
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
}

.cafe2-nav a:hover,
.cafe2-nav a:focus-visible {
  outline: none;
  color: #b26a16;
}

.cafe2-kv {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  min-height: calc(100vh - 82px);
  border-bottom: 1px solid #e4d7c8;
}

.cafe2-kv-copy {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: 72px max(5vw, calc((100vw - var(--max)) / 2)) 72px 5vw;
}

.cafe2-kicker {
  margin: 0 0 16px;
  color: #b26a16;
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cafe2-kv h1 {
  max-width: 560px;
  margin: 0;
  color: #241a12;
  font-size: 3.6rem;
  line-height: 1.22;
}

.cafe2-kv h1 span,
.lp2-fv-copy h1 span {
  display: inline;
}

.cafe2-kv p:not(.cafe2-kicker) {
  max-width: 580px;
  margin: 28px 0 0;
  color: #5a4838;
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-weight: 700;
}

.cafe2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  font-family: "Yu Gothic", Meiryo, sans-serif;
}

.cafe2-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid #b26a16;
  border-radius: 0;
  color: #fdfbf7;
  background: #8c5316;
  font-weight: 800;
}

.cafe2-actions a:last-child {
  color: #8c5316;
  background: transparent;
}

.cafe2-kv-visual {
  position: relative;
  min-width: 0;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
}

.cafe2-kv-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cafe2-kv-visual figcaption {
  position: absolute;
  right: 28px;
  bottom: 24px;
  padding: 8px 12px;
  color: #fdfbf7;
  background: rgba(36, 26, 18, 0.72);
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
}

.cafe2-news-strip {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  padding: 34px 5vw;
  border-bottom: 1px solid #e4d7c8;
  background: #fffaf3;
  font-family: "Yu Gothic", Meiryo, sans-serif;
}

.cafe2-news-strip h2 {
  margin: 0;
  color: #241a12;
  font-size: 1.1rem;
}

.cafe2-news-strip ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.cafe2-news-strip li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  color: #5a4838;
  font-weight: 700;
}

.cafe2-news-strip time {
  color: #8c5316;
  font-weight: 800;
}

.cafe2-concept {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 58px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 110px 16px;
}

.cafe2-vertical-title {
  display: grid;
  align-content: start;
  gap: 22px;
}

.cafe2-vertical-title span {
  color: #b26a16;
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cafe2-vertical-title h2 {
  margin: 0;
  color: #241a12;
  font-size: 2.4rem;
  line-height: 1.45;
  writing-mode: vertical-rl;
  min-height: 520px;
}

.cafe2-concept-body {
  display: grid;
  gap: 34px;
  min-width: 0;
}

.cafe2-concept-body p {
  max-width: 720px;
  margin: 0;
  color: #5a4838;
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-weight: 700;
}

.cafe2-concept-body img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.cafe2-feature {
  padding: 96px 5vw;
  color: #fdfbf7;
  background: #241a12;
}

.cafe2-feature-copy,
.cafe2-feature-list,
.cafe2-menu,
.cafe2-shop {
  width: calc(100% - 32px);
  max-width: var(--max);
  margin: 0 auto;
}

.cafe2-feature-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: 2.3rem;
  line-height: 1.4;
}

.cafe2-feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: rgba(255, 255, 255, 0.22);
}

.cafe2-feature-list article {
  min-width: 0;
  padding: 30px;
  background: #241a12;
}

.cafe2-feature-list span {
  color: #d9a15c;
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-weight: 800;
}

.cafe2-feature-list h3 {
  margin: 20px 0 12px;
  font-size: 1.24rem;
}

.cafe2-feature-list p {
  margin: 0;
  color: #dfd2c5;
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-weight: 650;
}

.cafe2-menu {
  padding: 110px 0;
}

.cafe2-menu-heading h2 {
  margin: 0 0 34px;
  color: #241a12;
  font-size: 2.4rem;
}

.cafe2-menu-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid #241a12;
  border-bottom: 2px solid #241a12;
}

.cafe2-menu-board section {
  min-width: 0;
  padding: 28px;
  border-right: 1px solid #d7c8b8;
}

.cafe2-menu-board section:last-child {
  border-right: 0;
}

.cafe2-menu-board h3 {
  margin: 0 0 20px;
  color: #8c5316;
  font-size: 1.35rem;
}

.cafe2-menu-board dl {
  display: grid;
  gap: 16px;
  margin: 0;
  font-family: "Yu Gothic", Meiryo, sans-serif;
}

.cafe2-menu-board dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  color: #38291d;
  font-weight: 750;
}

.cafe2-menu-board dd {
  margin: 0;
  color: #b26a16;
}

.cafe2-shop {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  padding-bottom: 110px;
}

.cafe2-shop-card {
  padding: 34px;
  background: #fffaf3;
}

.cafe2-shop-card h2 {
  margin: 0 0 24px;
  color: #241a12;
  font-size: 2rem;
}

.cafe2-shop-card table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Yu Gothic", Meiryo, sans-serif;
}

.cafe2-shop-card th,
.cafe2-shop-card td {
  padding: 14px 0;
  border-top: 1px solid #e4d7c8;
  text-align: left;
  vertical-align: top;
}

.cafe2-shop-card th {
  width: 110px;
  color: #8c5316;
}

.cafe2-map {
  display: grid;
  place-items: center;
  min-height: 320px;
  color: #8c5316;
  border: 1px solid #d7c8b8;
  background: #efe4d7;
  font-size: 1.4rem;
  font-weight: 800;
}

.cafe2-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 5vw;
  color: #dfd2c5;
  background: #241a12;
  font-family: "Yu Gothic", Meiryo, sans-serif;
  font-weight: 700;
}

.cafe2-footer p {
  margin: 0;
}

.corp2-page {
  background: #f4f8fb;
  color: #041c31;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.corp2-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid #d7e5ee;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.corp2-utility {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  min-height: 36px;
  padding: 7px 5vw;
  border-bottom: 1px solid #e5eef4;
  color: #4d667a;
  font-size: 0.78rem;
  font-weight: 800;
}

.corp2-utility button {
  padding: 0;
  border: 0;
  color: #006fb8;
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.corp2-main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 72px;
  padding: 12px 5vw;
}

.corp2-logo {
  color: #003b73;
  font-size: 1.3rem;
  font-weight: 900;
}

.corp2-main-nav nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.corp2-main-nav nav a {
  min-height: 44px;
  padding: 10px 16px;
  color: #041c31;
  font-weight: 800;
}

.corp2-main-nav nav a:hover,
.corp2-main-nav nav a:focus-visible {
  outline: none;
  color: #006fb8;
  background: #e8f5ff;
}

.corp2-important {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 16px 5vw;
  color: #041c31;
  background: #fff7db;
}

.corp2-important h2 {
  margin: 0;
  color: #935900;
  font-size: 0.9rem;
}

.corp2-important a {
  font-weight: 800;
}

.corp2-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: 560px;
  background: #eaf6ff;
}

.corp2-hero-copy {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: 72px 6vw;
}

.corp2-hero-copy p {
  margin: 0 0 18px;
  color: #006fb8;
  font-weight: 900;
  text-transform: uppercase;
}

.corp2-hero-copy h1 {
  max-width: 640px;
  margin: 0;
  color: #041c31;
  font-size: 3.5rem;
  line-height: 1.2;
}

.corp2-hero-copy a,
.corp2-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 50px;
  margin-top: 32px;
  padding: 12px 22px;
  color: #ffffff;
  background: #006fb8;
  font-weight: 900;
}

.corp2-hero img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.corp2-news-area {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  width: calc(100% - 32px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 82px 0;
}

.corp2-news-column {
  min-width: 0;
  padding: 30px;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(0, 60, 115, 0.08);
}

.corp2-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.corp2-section-head h2 {
  margin: 0;
  color: #041c31;
  font-size: 1.75rem;
}

.corp2-section-head p {
  margin: 0 0 6px;
  color: #006fb8;
  font-weight: 900;
  text-transform: uppercase;
}

.corp2-section-head a {
  color: #006fb8;
  font-size: 0.9rem;
  font-weight: 900;
}

.corp2-news-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.corp2-news-list li {
  display: grid;
  grid-template-columns: 112px 1fr auto;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid #d7e5ee;
  align-items: start;
}

.corp2-news-list time {
  color: #59768d;
  font-size: 0.88rem;
  font-weight: 800;
}

.corp2-news-list span {
  font-weight: 800;
}

.corp2-news-list em {
  padding: 3px 8px;
  color: #006fb8;
  background: #e8f5ff;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.corp2-message {
  padding: 108px 5vw;
  color: #ffffff;
  background: #043b69;
}

.corp2-message p:first-child {
  margin: 0 0 18px;
  color: #77d4ff;
  font-weight: 900;
  text-transform: uppercase;
}

.corp2-message h2 {
  max-width: 980px;
  margin: 0;
  font-size: 3.2rem;
  line-height: 1.28;
}

.corp2-message p:last-child {
  max-width: 840px;
  margin: 28px 0 0;
  color: #d8efff;
  font-weight: 700;
}

.corp2-service-finder,
.corp2-pickup,
.corp2-group,
.corp2-contact {
  width: calc(100% - 32px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 0;
}

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

.corp2-finder-grid section {
  min-width: 0;
  padding: 30px;
  background: #ffffff;
  border-top: 5px solid #006fb8;
}

.corp2-finder-grid h3 {
  margin: 0 0 22px;
  color: #041c31;
  font-size: 1.35rem;
}

.corp2-finder-grid ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.corp2-finder-grid a {
  display: block;
  min-height: 48px;
  padding: 12px 14px;
  color: #041c31;
  background: #f4f8fb;
  font-weight: 800;
}

.corp2-pickup {
  border-top: 1px solid #d7e5ee;
}

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

.corp2-pickup-grid article {
  min-width: 0;
  padding: 26px;
  color: #ffffff;
  background: #006fb8;
}

.corp2-pickup-grid article:nth-child(2) {
  background: #018fbd;
}

.corp2-pickup-grid article:nth-child(3) {
  background: #043b69;
}

.corp2-pickup-grid span {
  color: #bcecff;
  font-weight: 900;
}

.corp2-pickup-grid h3 {
  margin: 16px 0 10px;
  font-size: 1.25rem;
}

.corp2-pickup-grid p {
  margin: 0;
  color: #eaf8ff;
  font-weight: 700;
}

.corp2-group {
  max-width: none;
  width: 100%;
  padding: 90px 5vw;
  text-align: center;
  background: #ffffff;
}

.corp2-group h2 {
  margin: 0;
  color: #041c31;
  font-size: 2.4rem;
}

.corp2-group p {
  max-width: 760px;
  margin: 20px auto 0;
  color: #59768d;
  font-weight: 700;
}

.corp2-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.corp2-contact h2 {
  margin: 0 0 12px;
  color: #041c31;
  font-size: 2rem;
}

.corp2-contact p {
  margin: 0;
  color: #59768d;
  font-weight: 700;
}

.lp2-page {
  color: #4d321f;
  background: #fff6e7;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.lp2-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  padding: 10px max(16px, calc((100vw - 980px) / 2));
  border-bottom: 3px solid #f0b13a;
  background: #ffffff;
}

.lp2-header > a {
  color: #e65d12;
  font-size: 1.35rem;
  font-weight: 900;
}

.lp2-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  font-size: 0.88rem;
  font-weight: 900;
}

.lp2-main {
  max-width: 980px;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(150, 82, 18, 0.12);
}

.lp2-fv {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 68px 48px;
  background: #f7fff8;
}

.lp2-fv img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  opacity: 0.72;
}

.lp2-fv::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.52);
}

.lp2-fv-badge,
.lp2-fv-copy {
  position: relative;
  z-index: 1;
}

.lp2-fv-badge {
  width: fit-content;
  padding: 10px 18px;
  border-radius: 999px;
  color: #ffffff;
  background: #e65d12;
  font-weight: 900;
}

.lp2-fv-copy {
  max-width: 600px;
  margin-top: 22px;
}

.lp2-fv-copy p {
  margin: 0 0 12px;
  color: #e65d12;
  font-size: 1.05rem;
  font-weight: 900;
}

.lp2-fv-copy h1 {
  margin: 0;
  color: #3b2416;
  font-size: 4.1rem;
  line-height: 1.08;
}

.lp2-fv-copy ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.lp2-fv-copy li {
  width: fit-content;
  padding: 8px 14px;
  border: 2px solid #f0b13a;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  font-weight: 900;
}

.lp2-offer {
  padding: 32px 48px 44px;
  background: #ffe8a6;
  text-align: center;
}

.lp2-product-card {
  padding: 28px;
  border: 4px solid #e65d12;
  background: #ffffff;
}

.lp2-product-card span,
.lp2-order span {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: #e65d12;
  font-weight: 900;
}

.lp2-product-card h2,
.lp2-order h2 {
  margin: 18px 0 10px;
  color: #3b2416;
  font-size: 2rem;
}

.lp2-product-card p,
.lp2-order p {
  margin: 0;
  color: #6d513c;
  font-weight: 800;
}

.lp2-price {
  display: grid;
  justify-items: center;
  margin-top: 22px;
}

.lp2-price small {
  color: #e65d12;
  font-size: 0.95rem;
  font-weight: 900;
}

.lp2-price strong {
  color: #e65d12;
  font-size: 4.8rem;
  line-height: 1;
}

.lp2-price em {
  color: #3b2416;
  font-style: normal;
  font-weight: 900;
}

.lp2-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 520px);
  min-height: 64px;
  margin-top: 24px;
  border-radius: 999px;
  color: #ffffff;
  background: #e65d12;
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: 0 14px 26px rgba(230, 93, 18, 0.24);
}

.lp2-recommend,
.lp2-reason,
.lp2-day,
.lp2-compare,
.lp2-voice,
.lp2-order,
.lp2-faq {
  padding: 72px 48px;
}

.lp2-recommend {
  background: #fffaf0;
}

.lp2-recommend h2,
.lp2-reason h2,
.lp2-day h2,
.lp2-compare h2,
.lp2-voice h2,
.lp2-faq h2 {
  margin: 0 0 30px;
  color: #3b2416;
  font-size: 2.25rem;
  line-height: 1.35;
  text-align: center;
}

.lp2-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lp2-check-grid p {
  margin: 0;
  padding: 18px 20px;
  border: 2px solid #f0b13a;
  border-radius: 14px;
  background: #ffffff;
  font-weight: 900;
}

.lp2-reason {
  background: #f7fff8;
}

.lp2-heading-image {
  padding: 26px;
  margin-bottom: 20px;
  border-left: 8px solid #74b441;
  background: #ffffff;
}

.lp2-heading-image span {
  color: #74b441;
  font-weight: 900;
}

.lp2-heading-image h2 {
  margin: 8px 0 0;
  text-align: left;
}

.lp2-reason article {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #cfe9bd;
}

.lp2-reason article > span {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  color: #ffffff;
  background: #74b441;
  font-weight: 900;
}

.lp2-reason h3 {
  margin: 0 0 8px;
  color: #3b2416;
  font-size: 1.35rem;
}

.lp2-reason p {
  margin: 0;
  color: #6d513c;
  font-weight: 800;
}

.lp2-day {
  background: #fff6e7;
}

.lp2-day-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lp2-day-flow div {
  padding: 22px;
  border-radius: 18px;
  text-align: center;
  background: #ffffff;
}

.lp2-day-flow span {
  color: #e65d12;
  font-weight: 900;
}

.lp2-day-flow strong {
  display: block;
  margin-top: 8px;
  color: #3b2416;
}

.lp2-compare {
  background: #fffaf0;
}

.lp2-bars {
  display: grid;
  gap: 16px;
}

.lp2-bars div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
}

.lp2-bars span {
  font-weight: 900;
}

.lp2-bars b {
  display: block;
  min-height: 42px;
  padding: 9px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: #e65d12;
  font-weight: 900;
}

.lp2-bars div:first-child b {
  background: #c9a27b;
}

.lp2-compare p {
  margin: 22px 0 0;
  color: #6d513c;
  font-weight: 800;
  text-align: center;
}

.lp2-voice {
  background: #f7fff8;
}

.lp2-voice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.lp2-voice article {
  min-width: 0;
  padding: 22px;
  border-radius: 18px;
  background: #ffffff;
}

.lp2-voice h3 {
  margin: 0 0 10px;
  color: #3b2416;
  font-size: 1.1rem;
}

.lp2-voice p {
  margin: 0;
  color: #6d513c;
  font-weight: 800;
}

.lp2-voice span {
  display: block;
  margin-top: 16px;
  color: #74b441;
  font-weight: 900;
}

.lp2-order {
  text-align: center;
  background: #ffe8a6;
}

.lp2-faq {
  background: #ffffff;
}

.lp2-faq details {
  padding: 18px 20px;
  border-top: 1px solid #f0d7a5;
}

.lp2-faq summary {
  color: #3b2416;
  font-weight: 900;
  cursor: pointer;
}

.lp2-faq p {
  margin: 12px 0 0;
  color: #6d513c;
  font-weight: 800;
}

.pricing-section {
  background: var(--white);
}

.pricing-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 16px;
  align-items: start;
  margin-bottom: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(0, 143, 192, 0.22);
  border-radius: 8px;
  background: var(--cyan-050);
  color: var(--muted);
  font-weight: 700;
}

.pricing-note strong {
  color: var(--cyan-950);
  white-space: nowrap;
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.pricing-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.pricing-table thead th {
  color: var(--cyan-950);
  background: #e7f9ff;
  font-size: 0.9rem;
}

.pricing-table tbody th {
  width: 18%;
  color: var(--cyan-950);
  font-size: 1rem;
}

.pricing-table tbody td {
  color: var(--muted);
  font-weight: 700;
}

.pricing-table tbody td:nth-child(3) {
  color: #6a7f91;
}

.pricing-table tbody td:last-child {
  color: var(--cyan-950);
  background: rgba(223, 247, 255, 0.52);
}

.pricing-table tbody tr:last-child th,
.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-table strong {
  display: block;
  color: var(--cyan-700);
  font-size: 1.1rem;
  line-height: 1.45;
}

.pricing-table td span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.86rem;
}

.pricing-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cyan-050);
}

.pricing-action h3 {
  margin: 0 0 8px;
  color: var(--cyan-950);
  font-size: 1.28rem;
  line-height: 1.45;
}

.pricing-action p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: start;
}

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

.need-list p {
  margin: 0;
  padding: 18px 20px;
  border-left: 4px solid var(--cyan-600);
  border-radius: 0 8px 8px 0;
  color: var(--ink);
  background: var(--cyan-050);
  font-weight: 700;
}

.section-blue {
  color: var(--cyan-950);
  background: #e9faff;
}

.section-blue .section-kicker {
  color: var(--cyan-700);
}

.section-blue .section-heading h2 {
  color: var(--cyan-950);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  min-height: 238px;
  padding: 26px;
  border: 1px solid rgba(0, 143, 192, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 30px rgba(0, 143, 192, 0.1);
}

.process-list h3 {
  color: var(--cyan-950);
}

.process-list p {
  color: var(--muted);
}

.cta-band {
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
  background: #fffaf2;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.contact-notes {
  display: grid;
  gap: 16px;
  margin: 32px 0 0;
}

.contact-notes div {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cyan-050);
}

.contact-notes dt {
  margin-bottom: 6px;
  color: var(--cyan-950);
  font-weight: 800;
}

.contact-notes dd {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cyan-050);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--cyan-950);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #b9e1ee;
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  font-weight: 600;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(0, 168, 216, 0.18);
  border-color: var(--cyan-700);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer {
  padding: 30px 5vw;
  color: rgba(255, 255, 255, 0.82);
  background: var(--cyan-950);
}

.footer-inner {
  width: calc(100% - 32px);
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  outline: none;
  text-decoration: underline;
}

.footer-inner p {
  margin: 0;
  font-weight: 700;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 76px 5vw auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero {
    min-height: 720px;
  }

  .hero-background {
    object-position: 63% center;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .trust-grid,
  .news-layout,
  .portfolio-lead-grid,
  .showcase-card,
  .sample-split,
  .sample-access-panel,
  .lp-conversion-panel,
  .split-section,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .insight-grid,
  .service-grid,
  .portfolio-grid,
  .support-scope-grid,
  .package-grid,
  .case-grid,
  .sample-card-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .sample-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .sample-nav {
    flex-wrap: wrap;
  }

  .sample-hero-copy {
    margin-left: 16px;
  }

  .process-list li {
    min-height: auto;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-profile {
    grid-template-columns: 1fr;
  }

  .profile-logo {
    max-width: 220px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
  }

  .brand img,
  .footer-brand img {
    width: 40px;
    height: 40px;
  }

  .brand span {
    font-size: 0.96rem;
  }

  .site-nav {
    top: 68px;
  }

  .hero {
    min-height: 780px;
    align-items: flex-start;
  }

  .portfolio-hero {
    min-height: 620px;
    align-items: flex-start;
  }

  .sample-hero {
    min-height: 660px;
    align-items: flex-start;
  }

  .hero-background {
    object-position: 70% center;
  }

  .portfolio-hero-background {
    object-position: 70% center;
  }

  .sample-hero > img {
    object-position: 68% center;
  }

  .hero-scrim {
    background: rgba(255, 255, 255, 0.35);
  }

  .portfolio-hero-scrim {
    background: rgba(255, 255, 255, 0.46);
  }

  .hero-inner {
    padding: 72px 16px 52px;
  }

  .portfolio-hero-inner {
    padding: 72px 0 52px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .portfolio-hero h1 {
    font-size: 2.1rem;
  }

  .sample-hero h1 {
    font-size: 2.25rem;
  }

  .sample-hero-copy {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .sample-hero h1,
  .sample-hero p:not(.sample-kicker),
  .sample-section-heading h2,
  .sample-split h2,
  .sample-access-panel h2,
  .lp-conversion-panel h2,
  .sample-card h3,
  .sample-card p {
    line-break: anywhere;
  }

  .portfolio-hero h1 span {
    display: block;
  }

  .portfolio-hero p:not(.section-kicker) {
    max-width: calc(100vw - 32px);
    font-size: 1rem;
  }

  .portfolio-hero h1,
  .portfolio-hero p:not(.section-kicker),
  .portfolio-lead-grid h2,
  .portfolio-lead-grid p,
  .portfolio-section .section-heading h2,
  .portfolio-section .section-heading p {
    line-break: anywhere;
  }

  .hero-lead span {
    display: block;
  }

  .hero-title-wide {
    display: none;
  }

  .hero-title-narrow {
    display: block;
  }

  .hero-actions,
  .hero-actions .button,
  .sample-actions,
  .sample-actions .sample-button,
  .showcase-open,
  .button-accent {
    width: 100%;
  }

  .hero-actions,
  .hero-points {
    max-width: calc(100vw - 32px);
  }

  .hero-points li {
    width: 100%;
  }

  .portfolio-nav-pills a {
    width: 100%;
  }

  .pricing-note {
    grid-template-columns: 1fr;
  }

  .pricing-table {
    min-width: 0;
  }

  .pricing-table thead {
    display: none;
  }

  .pricing-table,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table th,
  .pricing-table td {
    display: block;
    width: 100%;
  }

  .pricing-table tr {
    padding: 18px;
    border-bottom: 1px solid var(--line);
  }

  .pricing-table tr:last-child {
    border-bottom: 0;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 0;
    border-bottom: 0;
  }

  .pricing-table tbody th {
    width: 100%;
    margin-bottom: 10px;
    font-size: 1.08rem;
  }

  .pricing-table tbody td {
    margin-top: 12px;
  }

  .pricing-table tbody td::before {
    display: block;
    margin-bottom: 3px;
    color: var(--cyan-700);
    font-size: 0.78rem;
    font-weight: 800;
  }

  .pricing-table tbody td:nth-child(2)::before {
    content: "比較条件";
  }

  .pricing-table tbody td:nth-child(3)::before {
    content: "一般的な外注相場";
  }

  .pricing-table tbody td:nth-child(4)::before {
    content: "みけサポート目安";
  }

  .pricing-table tbody td:last-child {
    padding: 14px;
    border-radius: 8px;
  }

  .section {
    padding: 68px 0;
  }

  .trust-band,
  .cta-band {
    padding: 34px 0;
  }

  .trust-grid h2,
  .section-heading h2,
  .portfolio-lead-grid h2,
  .sample-section-heading h2,
  .sample-split h2,
  .sample-access-panel h2,
  .lp-conversion-panel h2,
  .split-section h2,
  .cta-inner h2,
  .contact-copy h2 {
    font-size: 1.65rem;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px;
  }

  .news-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .news-toggle-button {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
  }

  .insight-card,
  .service-card,
  .portfolio-work-card,
  .showcase-card,
  .support-scope-card,
  .package-card,
  .case-card,
  .contact-form {
    padding: 22px;
  }

  .profile-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .mock-page {
    min-height: 286px;
    padding: 16px;
  }

  .mock-cafe-hero {
    min-height: 168px;
  }

  .mock-benefits,
  .mock-menu-row,
  .mock-panel-grid {
    grid-template-columns: 1fr;
  }

  .sample-section {
    padding: 68px 0;
  }

  .sample-access-panel,
  .lp-conversion-panel {
    padding: 22px;
  }

  .lp-offer-box {
    width: 100%;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .cafe2-header,
  .corp2-main-nav,
  .corp2-contact,
  .lp2-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .cafe2-nav,
  .corp2-main-nav nav,
  .corp2-utility,
  .lp2-header nav {
    flex-wrap: wrap;
  }

  .cafe2-kv,
  .cafe2-concept,
  .cafe2-shop,
  .corp2-hero,
  .corp2-news-area,
  .corp2-finder-grid {
    grid-template-columns: 1fr;
  }

  .cafe2-kv-copy,
  .corp2-hero-copy {
    padding: 58px 16px;
  }

  .cafe2-kv-visual,
  .corp2-hero img {
    min-height: 430px;
  }

  .cafe2-vertical-title h2 {
    writing-mode: horizontal-tb;
    min-height: 0;
  }

  .cafe2-feature-list,
  .cafe2-menu-board,
  .corp2-pickup-grid,
  .lp2-check-grid,
  .lp2-day-flow,
  .lp2-voice-grid {
    grid-template-columns: 1fr;
  }

  .cafe2-menu-board section {
    border-right: 0;
    border-bottom: 1px solid #d7c8b8;
  }

  .cafe2-menu-board section:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .cafe2-header,
  .corp2-utility,
  .corp2-main-nav,
  .lp2-header {
    padding-right: 16px;
    padding-left: 16px;
  }

  .cafe2-nav,
  .corp2-main-nav nav,
  .lp2-header nav {
    gap: 10px 14px;
  }

  .cafe2-kv h1,
  .corp2-hero-copy h1,
  .lp2-fv-copy h1 {
    font-size: 2.25rem;
    line-break: anywhere;
  }

  .cafe2-kv h1 span,
  .lp2-fv-copy h1 span {
    display: block;
  }

  .cafe2-kv p:not(.cafe2-kicker),
  .corp2-message p:last-child,
  .lp2-fv-copy p,
  .lp2-product-card p,
  .lp2-order p {
    line-break: anywhere;
  }

  .cafe2-news-strip,
  .cafe2-news-strip li,
  .corp2-news-list li,
  .lp2-reason article,
  .lp2-bars div {
    grid-template-columns: 1fr;
  }

  .cafe2-concept,
  .cafe2-feature,
  .cafe2-menu,
  .corp2-service-finder,
  .corp2-pickup,
  .corp2-contact,
  .lp2-recommend,
  .lp2-reason,
  .lp2-day,
  .lp2-compare,
  .lp2-voice,
  .lp2-order,
  .lp2-faq {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .cafe2-vertical-title h2,
  .cafe2-feature-copy h2,
  .cafe2-menu-heading h2,
  .corp2-message h2,
  .corp2-group h2,
  .lp2-recommend h2,
  .lp2-reason h2,
  .lp2-day h2,
  .lp2-compare h2,
  .lp2-voice h2,
  .lp2-faq h2 {
    font-size: 1.8rem;
  }

  .cafe2-actions,
  .cafe2-actions a,
  .corp2-hero-copy a,
  .corp2-contact a,
  .lp2-cta {
    width: 100%;
  }

  .cafe2-kv-visual,
  .corp2-hero img {
    min-height: 320px;
  }

  .cafe2-concept-body img {
    aspect-ratio: 4 / 3;
  }

  .corp2-message {
    padding: 72px 16px;
  }

  .corp2-finder-grid ul {
    grid-template-columns: 1fr;
  }

  .lp2-fv {
    min-height: 640px;
    padding: 48px 16px;
  }

  .lp2-fv img {
    object-position: 70% center;
  }

  .lp2-offer {
    padding: 28px 16px 38px;
  }

  .lp2-product-card {
    padding: 22px;
  }

  .lp2-price strong {
    font-size: 3.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }

  .button:hover,
  .button:focus-visible {
    transform: none;
  }
}
