:root {
  --navy: #061a3c;
  --navy-2: #092455;
  --ink: #07152f;
  --muted: #697286;
  --line: #e3e8f1;
  --bg: #f4f6fb;
  --white: #ffffff;
  --blue: #1476ff;
  --green: #17a85c;
  --orange: #ff8a1f;
  --shadow: 0 24px 80px rgba(7, 21, 47, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at top right, rgba(20, 118, 255, 0.11), transparent 34rem), var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", "YuGothic", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.75;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  border-radius: 13px;
  box-shadow: 0 12px 30px rgba(6, 26, 60, 0.22);
}

.brand strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.site-nav a {
  border-radius: 999px;
  padding: 9px 14px;
  text-decoration: none;
}

.site-nav a:hover {
  background: var(--white);
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: center;
  gap: 64px;
  width: min(1120px, calc(100% - 40px));
  min-height: 720px;
  margin: 0 auto;
  padding: 52px 0 76px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1,
.page-title h1 {
  margin-bottom: 22px;
  font-size: clamp(52px, 8vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero h1 {
  font-size: clamp(52px, 6vw, 78px);
}

.headline-line {
  display: block;
  white-space: nowrap;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(6, 26, 60, 0.24);
}

.button.ghost {
  background: var(--white);
  color: var(--navy);
}

.hero-visual {
  width: min(100%, 390px);
  margin-left: auto;
}

.device-frame {
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: 48px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.device-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 38px;
}

.visual-caption {
  margin: 16px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.phone-shell {
  border-radius: 48px;
  padding: 14px;
  background: linear-gradient(145deg, #ffffff, #dde6f4);
  box-shadow: var(--shadow);
}

.phone-screen {
  position: relative;
  overflow: hidden;
  min-height: 710px;
  border-radius: 38px;
  background: #f7f8fc;
}

.app-hero {
  min-height: 260px;
  padding: 38px 28px;
  color: var(--white);
  background: var(--navy);
}

.app-hero img {
  display: block;
  border-radius: 16px;
  margin-bottom: 18px;
}

.app-hero span {
  display: block;
  font-size: 34px;
  font-weight: 950;
}

.app-hero p {
  margin: 22px 0 0;
  font-size: 42px;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.filter-row {
  display: flex;
  gap: 10px;
  padding: 22px 22px 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  border-radius: 999px;
  background: var(--white);
  padding: 0 18px;
  color: var(--muted);
  font-weight: 900;
}

.pill.active {
  background: var(--navy);
  color: var(--white);
}

.request-card {
  margin: 22px;
  border-radius: 28px;
  padding: 28px;
  background: var(--white);
  box-shadow: 0 20px 46px rgba(7, 21, 47, 0.11);
}

.request-card h3 {
  margin: 18px 0 10px;
  font-size: 27px;
}

.request-card p {
  color: var(--muted);
  font-weight: 800;
}

.request-card strong {
  display: block;
  margin: 20px 0 2px;
  color: var(--navy);
  font-size: 36px;
}

.request-card small {
  color: #e51e32;
  font-size: 16px;
  font-weight: 900;
}

.badge {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 900;
}

.badge.blue {
  color: var(--blue);
  background: #eaf2ff;
}

.tabbar {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  border-radius: 999px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(7, 21, 47, 0.12);
}

.tabbar span {
  border-radius: 999px;
  padding: 10px 4px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}

.tabbar span:first-child {
  background: #eef1f6;
  color: var(--navy);
}

.section,
.page {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 76px 0;
}

.section h2,
.contact-panel h2,
.legal-card h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.feature-card,
.support-card,
.contact-panel,
.legal-card,
.mini-board {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 48px rgba(7, 21, 47, 0.07);
}

.feature-card {
  padding: 28px;
}

.feature-card h3,
.support-card h2 {
  margin: 18px 0 10px;
  font-size: 22px;
}

.feature-card p,
.support-card p,
.legal-card p,
.legal-card li,
.section p,
.contact-panel li {
  color: var(--muted);
  font-weight: 650;
}

.icon-bubble {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  color: var(--navy);
}

.icon-bubble.blue {
  background: #eaf2ff;
}

.icon-bubble.green {
  background: #e8f8ef;
}

.icon-bubble.orange {
  background: #fff0e4;
}

.icon-bubble.navy {
  background: #e9eef8;
}

.icon-bubble.purple {
  background: #f0edff;
}

.icon-bubble.gray {
  background: #eef1f6;
}

.feature-icon {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  color: currentColor;
}

.icon-approval {
  border: 2.5px solid currentColor;
  border-radius: 50%;
}

.icon-approval::after {
  position: absolute;
  top: 5px;
  left: 9px;
  width: 6px;
  height: 11px;
  border-right: 2.5px solid currentColor;
  border-bottom: 2.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.icon-route {
  width: 24px;
  height: 24px;
  border-bottom: 2.5px solid currentColor;
  border-left: 2.5px solid currentColor;
  border-radius: 0 0 0 8px;
}

.icon-route::before {
  position: absolute;
  top: -2px;
  left: -5px;
  width: 7px;
  height: 7px;
  border: 2.5px solid currentColor;
  border-radius: 50%;
  background: #e9eef8;
  content: "";
}

.icon-route::after {
  position: absolute;
  right: -1px;
  bottom: -5px;
  width: 8px;
  height: 8px;
  border-top: 2.5px solid currentColor;
  border-right: 2.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.icon-calendar {
  width: 27px;
  height: 25px;
  margin-top: 2px;
  border: 2.5px solid currentColor;
  border-radius: 5px;
}

.icon-calendar::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 100%;
  border-top: 2.5px solid currentColor;
  content: "";
}

.icon-calendar::after {
  position: absolute;
  top: -6px;
  left: 5px;
  width: 2.5px;
  height: 7px;
  border-radius: 2px;
  background: currentColor;
  box-shadow: 12px 0 currentColor, 0 14px currentColor, 6px 14px currentColor, 12px 14px currentColor;
  content: "";
}

.icon-announcement {
  width: 27px;
  height: 25px;
}

.icon-announcement::before {
  position: absolute;
  top: 3px;
  left: 1px;
  width: 25px;
  height: 15px;
  background: currentColor;
  clip-path: polygon(0 31%, 36% 31%, 100% 0, 100% 100%, 36% 69%, 0 69%);
  content: "";
}

.icon-announcement::after {
  position: absolute;
  bottom: 0;
  left: 8px;
  width: 7px;
  height: 10px;
  border-radius: 0 0 3px 3px;
  background: currentColor;
  content: "";
  transform: skewX(12deg);
}

.icon-members::before {
  position: absolute;
  top: 1px;
  left: 9px;
  width: 9px;
  height: 9px;
  border: 2.5px solid currentColor;
  border-radius: 50%;
  content: "";
  box-shadow: -9px 5px 0 -1px #f0edff, -9px 5px 0 1.5px currentColor;
}

.icon-members::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  width: 19px;
  height: 10px;
  border: 2.5px solid currentColor;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  content: "";
  box-shadow: -8px 0 0 -2.5px #f0edff, -8px 0 0 0 currentColor;
}

.icon-history {
  border: 2.5px solid currentColor;
  border-radius: 50%;
}

.icon-history::before {
  position: absolute;
  top: 5px;
  left: 11px;
  width: 2.5px;
  height: 8px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.icon-history::after {
  position: absolute;
  top: 11px;
  left: 11px;
  width: 7px;
  height: 2.5px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transform: rotate(35deg);
  transform-origin: left center;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: 36px;
}

.mini-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 22px;
}

.mini-board div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 22px;
  padding: 20px;
  background: #f7f9fc;
}

.mini-board span {
  color: var(--muted);
  font-weight: 900;
}

.mini-board strong {
  font-size: 32px;
}

.green-text {
  color: var(--green);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  font-size: 18px;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.screen-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 54px rgba(7, 21, 47, 0.08);
}

.screen-card.featured {
  transform: translateY(-18px);
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 26px 70px rgba(6, 26, 60, 0.2);
}

.screen-copy {
  min-height: 250px;
  padding: 30px;
}

.screen-copy h3 {
  margin: 16px 0 10px;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.screen-copy p {
  margin-bottom: 0;
}

.screen-card.featured .screen-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.screen-number {
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.screen-card.featured .screen-number {
  color: #6eb0ff;
}

.screen-media {
  overflow: hidden;
  margin: 0 18px 18px;
  border-radius: 28px 28px 0 0;
  background: #eef1f6;
}

.screen-media img {
  display: block;
  width: 100%;
  height: auto;
}

.management-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  align-items: center;
  gap: 54px;
  margin-top: 58px;
  border-radius: 42px;
  padding: 64px;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(20, 118, 255, 0.5), transparent 24rem),
    var(--navy);
  box-shadow: var(--shadow);
}

.management-section h2 {
  max-width: 620px;
  color: var(--white);
}

.management-section p {
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow.light {
  color: #7fbdff;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 850;
}

.check-list li::before {
  position: absolute;
  top: 0.12em;
  left: 0;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  content: "✓";
  font-size: 14px;
}

.management-panel {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.management-point {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  border-radius: 22px;
  padding: 18px;
  background: var(--white);
  color: var(--ink);
}

.management-point > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #eaf2ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
}

.management-point strong,
.management-point small {
  display: block;
}

.management-point strong {
  font-size: 18px;
}

.management-point small {
  margin-top: 2px;
  color: var(--muted);
  font-weight: 750;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.82);
}

.trust-card > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.trust-card h3 {
  margin: 12px 0 10px;
  font-size: 22px;
}

.trust-card p {
  margin-bottom: 12px;
}

.trust-card a {
  color: var(--blue);
  font-weight: 900;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 76px;
  border-radius: 38px;
  padding: 48px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.cta-panel h2 {
  margin-bottom: 14px;
  color: var(--white);
}

.cta-panel p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.light-button {
  flex: 0 0 auto;
  background: var(--white);
  color: var(--navy);
}


.page {
  padding: 58px 0 90px;
}

.page-title {
  margin-bottom: 30px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.support-card,
.contact-panel,
.legal-card {
  padding: 30px;
}

.contact-panel {
  margin-top: 18px;
}

.inquiry-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 38px;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 38px;
  background: var(--white);
  box-shadow: 0 18px 55px rgba(7, 21, 47, 0.08);
}

.inquiry-intro h2 {
  margin: 0 0 14px;
  font-size: 30px;
}

.inquiry-intro > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
}

.inquiry-guidance {
  margin-top: 28px;
  border-radius: 22px;
  padding: 22px;
  background: #f5f7fb;
}

.inquiry-guidance strong {
  color: var(--navy);
}

.inquiry-guidance ul {
  margin: 12px 0 0;
  padding-left: 1.2em;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.support-inquiry-form {
  display: grid;
  gap: 20px;
}

.support-inquiry-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

.support-inquiry-form label {
  display: grid;
  gap: 9px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.support-inquiry-form label > span b {
  display: inline-block;
  margin-left: 5px;
  border-radius: 999px;
  padding: 2px 7px;
  color: #b2323e;
  background: #fdebee;
  font-size: 10px;
}

.support-inquiry-form label > span small {
  margin-left: 5px;
  color: var(--muted);
  font-size: 11px;
}

.support-inquiry-form input,
.support-inquiry-form select,
.support-inquiry-form textarea {
  width: 100%;
  border: 1px solid #d7e0ed;
  border-radius: 14px;
  padding: 0 15px;
  color: var(--navy);
  background: #fbfcfe;
  font: inherit;
  font-weight: 700;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.support-inquiry-form input,
.support-inquiry-form select {
  height: 50px;
}

.support-inquiry-form textarea {
  min-height: 170px;
  resize: vertical;
  padding-top: 14px;
  line-height: 1.75;
}

.support-inquiry-form input:focus,
.support-inquiry-form select:focus,
.support-inquiry-form textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(28, 103, 224, 0.11);
}

.support-inquiry-form input::placeholder,
.support-inquiry-form textarea::placeholder {
  color: #9ba6b6;
  font-weight: 600;
}

.support-inquiry-form .privacy-consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: flex-start;
  gap: 11px;
  border-radius: 16px;
  padding: 16px;
  color: var(--muted);
  background: #f5f7fb;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.privacy-consent input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.privacy-consent a {
  color: var(--blue);
  font-weight: 900;
}

.honeypot-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.support-form-message {
  min-height: 22px;
  margin: -5px 0 -7px;
  color: #c13b46;
  font-size: 13px;
  font-weight: 800;
}

.support-submit-button {
  display: flex;
  height: 56px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 15px;
  padding: 0 20px;
  color: var(--white);
  background: var(--blue);
  font: inherit;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(28, 103, 224, 0.2);
  cursor: pointer;
}

.support-submit-button:hover {
  background: #145ac5;
}

.support-submit-button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.support-form-success {
  align-self: center;
  border-radius: 28px;
  padding: 48px 28px;
  background: #effaf5;
  text-align: center;
}

.support-form-success > span {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #19815e;
  font-size: 30px;
  font-weight: 900;
}

.support-form-success h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 24px;
}

.support-form-success p {
  color: var(--muted);
}

.support-reference-number {
  font-weight: 900;
}

.support-form-success button {
  border: 1px solid #bfded2;
  border-radius: 12px;
  padding: 11px 18px;
  color: #146c50;
  background: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.notice {
  border-radius: 22px;
  padding: 18px 20px;
  background: #fff8e8;
  color: #9a5a00 !important;
}

.legal-card h2 {
  margin-top: 34px;
  font-size: 26px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.updated {
  margin-top: 36px;
  color: var(--ink) !important;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 26px 0 40px;
  color: var(--muted);
  font-weight: 800;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  margin-left: 16px;
  text-decoration: none;
}

@media (max-width: 920px) {
  .hero,
  .split,
  .management-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 38px;
  }

  .phone-shell {
    max-width: 420px;
    margin: 0 auto;
  }

  .feature-grid,
  .support-grid,
  .screen-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .screen-card {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(260px, 1fr);
    align-items: center;
  }

  .screen-card.featured {
    transform: none;
  }

  .screen-copy {
    min-height: auto;
  }

  .screen-media {
    margin: 18px 18px 0 0;
  }

  .inquiry-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .hero h1,
  .page-title h1 {
    font-size: 56px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 56px);
  }

  .headline-line:first-child span {
    display: block;
  }

  .screen-card {
    display: flex;
  }

  .screen-media {
    margin: 0 14px 14px;
  }

  .management-section,
  .cta-panel {
    padding: 32px 24px;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .phone-screen {
    min-height: 650px;
  }

  .inquiry-section {
    padding: 28px 20px;
  }

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