@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Lexend+Zetta:wght@100..900&family=Zen+Kaku+Gothic+New:wght@400;500&display=swap');

/* 変数定義 */
:root {
  --main-color: #003D80;
  --en-font: "Lexend Zetta", sans-serif;
  --gradient-primary: linear-gradient(90deg, #ff5255 0%, #39a2e8 100%);
}

:root {
  --grad-start: #d8a5c7;
  --grad-mid: #FF5255;
  --grad-end: #39A2E8;
}

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

* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ベーススタイル */
body {
  line-height: 2em;
  -webkit-font-smoothing: antialiased;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(14px, 1.5vw, 16px);
  letter-spacing: 0.07em;
  font-weight: 500;
  color: #333333;
}

/* 共通テキストモジュール */
.note-ttl {
  display: table-cell;
  white-space: nowrap;
  padding-right: 5px;
}

.note-text {
  display: table-cell;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}