@charset "UTF-8";

/* =========================================================
   株式会社アルファネクスト コーポレートサイト
   共通スタイルシート  style.css
   ========================================================= */

/* --- リセット --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP",
    "Yu Gothic", "Meiryo", sans-serif;
  color: #2b2f36;
  background: #ffffff;
  line-height: 1.9;
  font-size: 16px;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: #0b5fa5;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: #10a0d8;
}

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

/* --- カラー変数 --- */
:root {
  --navy: #0a2540;
  --blue: #0b5fa5;
  --cyan: #10a0d8;
  --accent: #f39800;
  --gray-bg: #f4f7fa;
  --line: #e2e8ef;
  --text-sub: #5b6472;
  --max: 1120px;
}

/* --- レイアウト共通 --- */
.inner {
  width: 90%;
  max-width: var(--max);
  margin-inline: auto;
}

.section {
  padding: 84px 0;
}

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

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head .en {
  display: block;
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-head .ja {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}

.section-head .ja::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 2px;
}

/* --- ボタン --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn--primary {
  background: linear-gradient(120deg, var(--blue), var(--cyan));
  color: #fff;
  box-shadow: 0 8px 20px rgba(11, 95, 165, 0.28);
}

.btn--primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(11, 95, 165, 0.36);
}

.btn--ghost {
  border-color: #fff;
  color: #fff;
}

.btn--ghost:hover {
  background: #fff;
  color: var(--navy);
}

.btn--outline {
  border-color: var(--blue);
  color: var(--blue);
  background: #fff;
}

.btn--outline:hover {
  background: var(--blue);
  color: #fff;
}

.btn .arrow {
  transition: transform 0.2s ease;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

/* =========================================================
   ヘッダー
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
  font-size: 20px;
  letter-spacing: 0.04em;
}

.logo__mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(16, 160, 216, 0.4);
}

.logo__sub {
  display: block;
  font-size: 10px;
  color: var(--text-sub);
  letter-spacing: 0.24em;
  font-weight: 600;
}

.gnav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.gnav__list {
  display: flex;
  gap: 28px;
}

.gnav__list a {
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  position: relative;
  padding: 4px 0;
}

.gnav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width 0.25s ease;
}

.gnav__list a:hover::after,
.gnav__list a[aria-current="page"]::after {
  width: 100%;
}

.gnav__list a[aria-current="page"] {
  color: var(--blue);
}

.gnav__cta {
  padding: 11px 22px;
  font-size: 14px;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.hamburger span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 27px; }

.hamburger.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* =========================================================
   ヒーロー
   ========================================================= */
.hero {
  position: relative;
  background: linear-gradient(135deg, #06203b 0%, #0b3d70 55%, #0f6ea3 100%);
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(16, 160, 216, 0.35), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(243, 152, 0, 0.18), transparent 45%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 90%);
}

.hero__inner {
  position: relative;
  padding: 110px 0 120px;
}

.hero__copy {
  max-width: 620px;
}

.hero__tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.24em;
  padding: 7px 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  margin-bottom: 26px;
  backdrop-filter: blur(4px);
}

.hero__title {
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.5;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.hero__title span {
  color: #7fd7f5;
}

.hero__lead {
  font-size: 17px;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero__stat .num {
  font-size: 34px;
  font-weight: 800;
  color: #7fd7f5;
  line-height: 1.2;
}

.hero__stat .num small {
  font-size: 16px;
  margin-left: 3px;
}

.hero__stat .label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
}

/* =========================================================
   お知らせ（トップ）
   ========================================================= */
.news-list {
  border-top: 1px solid var(--line);
}

.news-list li {
  border-bottom: 1px solid var(--line);
}

.news-list a,
.news-list .news-row {
  display: grid;
  grid-template-columns: 130px 110px 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px 8px;
  color: var(--navy);
}

.news-list a:hover {
  background: var(--gray-bg);
}

.news-list .date {
  font-size: 14px;
  color: var(--text-sub);
  font-variant-numeric: tabular-nums;
}

.badge {
  display: inline-block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  padding: 4px 0;
  width: 92px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.badge--news { background: #0b5fa5; }
.badge--ir { background: #2e7d5b; }
.badge--service { background: #f39800; }
.badge--press { background: #8250c4; }
.badge--recruit { background: #d0455e; }

.news-list .title {
  font-size: 15.5px;
  font-weight: 500;
}

.news-more {
  text-align: right;
  margin-top: 32px;
}

/* =========================================================
   事業紹介カード
   ========================================================= */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(10, 37, 64, 0.12);
}

.card__icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: #fff;
}

.card__icon svg { width: 30px; height: 30px; }

.card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 6px;
}

.card .card__en {
  font-size: 12px;
  color: var(--cyan);
  letter-spacing: 0.14em;
  font-weight: 700;
  display: block;
  margin-bottom: 14px;
}

.card p {
  font-size: 14.5px;
  color: var(--text-sub);
  line-height: 1.95;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-weight: 700;
  font-size: 14px;
}

/* =========================================================
   強み / featureセクション
   ========================================================= */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.feature {
  text-align: center;
  padding: 32px 24px;
}

.feature__num {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.2em;
}

.feature__ttl {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 12px 0 12px;
}

.feature__txt {
  font-size: 14.5px;
  color: var(--text-sub);
}

/* =========================================================
   CTA 帯
   ========================================================= */
.cta-band {
  background: linear-gradient(120deg, var(--navy), var(--blue));
  color: #fff;
  text-align: center;
  padding: 70px 0;
}

.cta-band h2 {
  font-size: 26px;
  margin-bottom: 14px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 32px;
}

/* =========================================================
   下層ページ共通  ページヘッダー
   ========================================================= */
.page-hero {
  background: linear-gradient(120deg, #0a2540, #0b5fa5);
  color: #fff;
  padding: 66px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(16, 160, 216, 0.5), transparent 70%);
}

.page-hero .en {
  font-size: 13px;
  letter-spacing: 0.3em;
  color: #7fd7f5;
  font-weight: 700;
}

.page-hero h1 {
  font-size: 32px;
  margin-top: 8px;
  font-weight: 800;
}

/* パンくず */
.breadcrumb {
  background: var(--gray-bg);
  border-bottom: 1px solid var(--line);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 0;
  font-size: 13px;
  color: var(--text-sub);
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  color: #b3bdc9;
}

/* =========================================================
   会社概要 テーブル
   ========================================================= */
.profile-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

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

.profile-table th {
  width: 230px;
  background: var(--gray-bg);
  color: var(--navy);
  font-weight: 700;
}

.profile-table td {
  color: #3c4553;
}

/* 沿革 */
.history {
  position: relative;
  padding-left: 26px;
}

.history::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--line);
}

.history li {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 16px 0;
}

.history li::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--line);
}

.history .yr {
  font-weight: 800;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}

.history .ev {
  color: #3c4553;
  font-size: 15px;
}

/* 役員・メッセージ */
.message-box {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 44px;
  align-items: start;
}

.message-box__photo {
  border-radius: 14px;
  background: linear-gradient(135deg, #dbe6f2, #eef4fa);
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
  color: #97a8bd;
  font-size: 13px;
  border: 1px solid var(--line);
}

.message-box__name {
  margin-top: 16px;
  text-align: center;
}

.message-box__name b {
  font-size: 18px;
  color: var(--navy);
}

.message-box__name span {
  display: block;
  font-size: 12px;
  color: var(--text-sub);
}

.message-box p {
  margin-bottom: 20px;
  color: #3c4553;
}

.message-box .sign {
  text-align: right;
  font-weight: 700;
  color: var(--navy);
}

/* =========================================================
   事業内容 詳細
   ========================================================= */
.biz-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 50px 0;
  border-bottom: 1px dashed var(--line);
}

.biz-block:nth-child(even) .biz-block__media {
  order: 2;
}

.biz-block__media {
  border-radius: 16px;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #e7f0f9, #d3e6f6);
  display: grid;
  place-items: center;
  color: #7c93ab;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.biz-block__media .big-icon svg {
  width: 88px;
  height: 88px;
  opacity: 0.9;
}

.biz-block__no {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--cyan);
}

.biz-block h2 {
  font-size: 26px;
  color: var(--navy);
  margin: 8px 0 18px;
}

.biz-block p {
  color: var(--text-sub);
  margin-bottom: 18px;
}

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

.tag-list li {
  font-size: 12.5px;
  padding: 5px 13px;
  background: var(--gray-bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue);
  font-weight: 600;
}

/* =========================================================
   お問い合わせ フォーム
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 14.5px;
}

.form-field .req {
  display: inline-block;
  background: #d0455e;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: middle;
}

.form-field .opt {
  display: inline-block;
  background: #8a97a6;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: middle;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #cfd8e2;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(16, 160, 216, 0.15);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  font-size: 13px;
  color: var(--text-sub);
  margin-top: 6px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #3c4553;
  margin: 8px 0 28px;
}

.form-check input { width: 18px; height: 18px; margin-top: 4px; }

.contact-info {
  background: var(--gray-bg);
  border-radius: 16px;
  padding: 34px 30px;
  border: 1px solid var(--line);
}

.contact-info h3 {
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-info .tel {
  font-size: 30px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.02em;
}

.contact-info dl {
  margin: 20px 0 0;
  font-size: 14px;
}

.contact-info dt {
  font-weight: 700;
  color: var(--navy);
  margin-top: 14px;
}

.contact-info dd {
  margin: 2px 0 0;
  color: var(--text-sub);
}

/* お問い合わせ 完了・エラー用 */
.form-message {
  display: none;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 14.5px;
}

.form-message.is-visible { display: block; }
.form-message--ok { background: #e6f6ee; color: #1f7a4d; border: 1px solid #b8e2ca; }

/* =========================================================
   採用
   ========================================================= */
.job-list {
  display: grid;
  gap: 20px;
}

.job-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  transition: box-shadow 0.2s ease;
}

.job-card:hover { box-shadow: 0 10px 26px rgba(10, 37, 64, 0.1); }

.job-card__cat {
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.1em;
}

.job-card h3 {
  font-size: 19px;
  color: var(--navy);
  margin: 4px 0 10px;
}

.job-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--text-sub);
}

.job-meta span::before {
  content: "●";
  color: var(--cyan);
  font-size: 8px;
  margin-right: 6px;
  vertical-align: middle;
}

/* =========================================================
   フッター
   ========================================================= */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 24px;
  font-size: 14px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer .logo {
  color: #fff;
}

.footer__about {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.9;
}

.footer h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}

.footer__nav li { margin-bottom: 11px; }

.footer__nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13.5px;
}

.footer__nav a:hover { color: #7fd7f5; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
}

.footer__bottom a { color: rgba(255, 255, 255, 0.7); }

.pagetop {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(11, 95, 165, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(10px);
  z-index: 90;
}

.pagetop.is-show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* =========================================================
   汎用
   ========================================================= */
.lead-text {
  font-size: 16.5px;
  color: #3c4553;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 8px;
}

.mt-0 { margin-top: 0; }
.center { text-align: center; }

.rich h2 {
  font-size: 24px;
  color: var(--navy);
  margin: 44px 0 18px;
  padding-left: 14px;
  border-left: 5px solid var(--cyan);
}

.rich h3 {
  font-size: 18px;
  color: var(--navy);
  margin: 28px 0 12px;
}

.rich p { margin-bottom: 16px; color: #3c4553; }

.rich ul.dot {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 16px;
}

.rich ul.dot li { margin-bottom: 8px; color: #3c4553; }

/* =========================================================
   レスポンシブ
   ========================================================= */
@media (max-width: 900px) {
  .cards,
  .feature-row,
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .biz-block { grid-template-columns: 1fr; gap: 26px; }
  .biz-block:nth-child(even) .biz-block__media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .message-box { grid-template-columns: 1fr; }
  .message-box__photo { max-width: 240px; margin-inline: auto; }
}

@media (max-width: 720px) {
  .gnav {
    position: fixed;
    inset: 74px 0 auto 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-140%);
    transition: transform 0.3s ease;
    padding: 8px 0 18px;
  }
  .gnav.is-open { transform: translateY(0); }
  .gnav__list {
    flex-direction: column;
    gap: 0;
    width: 90%;
    margin-inline: auto;
  }
  .gnav__list a {
    display: block;
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
  }
  .gnav__cta { margin: 14px auto 0; width: 90%; justify-content: center; }
  .hamburger { display: block; }

  .cards,
  .feature-row,
  .footer__top {
    grid-template-columns: 1fr;
  }
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 26px; }
  .news-list a,
  .news-list .news-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 6px;
  }
  .news-list .badge { justify-self: start; }
  .profile-table th { width: 130px; padding: 16px; }
  .profile-table td { padding: 16px; }
  .history li { grid-template-columns: 90px 1fr; }
  .section { padding: 60px 0; }
  .section-head .ja { font-size: 23px; }
}
