/*
Theme Name: ALMA
Theme URI: https://alma-it.com/
Author: Junpei Kishida
Description: ALMA corporate theme (refactored, modular CSS)
Version: 1.0
*/
@import url("assets/css/main.css");

/* ========================================
   基本設定
======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding-top: 60px;
  /* ヘッダー高さ分 */
  scroll-behavior: smooth;
  font-family: vdl-yotag, sans-serif;
  font-weight: 500;
  line-height: 1.4;
  overflow: hidden;
  background: linear-gradient(180deg, #222 0%, #555 100%);
}

/* Firefox 固有調整 */
@-moz-document url-prefix() {
  body {
    padding-top: 0;
  }
}

/* ========================================
   テキスト系
======================================== */
h1 {
  margin: 30px;
  font-size: 3.5rem;
  background: linear-gradient(120deg, #005ea3, #0071bc, #3399dd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 1.2vw;
  background: linear-gradient(120deg, #005ea3, #0071bc, #3399dd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  font-size: clamp(0.8rem, 1.2vw, 1.8rem);
  text-indent: clamp(0.8rem, 1.2vw, 1.8rem);
  margin: 0 20px;
}

/* ========================================
   テーブル
======================================== */
table {
  margin: 0 auto;
  border-collapse: collapse;
}

th,
td {
  font-size: 2vw;
  text-align: left;
  padding: 10px 15px;
  border-bottom: 1px solid #ccc;
}

th {
  background: linear-gradient(120deg, #005ea3, #0071bc, #3399dd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ========================================
   モバイル対応
======================================== */
@media (max-width: 768px) {
  h1 {
    font-size: 5vw;
  }

}