@charset "utf-8";

/* ===== CSS Variables ===== */
:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary-color: #dc2626;
  --accent-color: #f59e0b;
  --success-color: #059669;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  line-height: 1.7;
  color: var(--gray-800);
  background-color: var(--gray-50);
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== Links ===== */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

a:hover img {
  opacity: 0.8;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* ===== Layout ===== */
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  min-height: 100vh;
}

.contents {
  padding: 2rem;
}

/* ===== Header Navigation ===== */
header {
  background: var(--white);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--primary-color);
}

.header-nav {
  width: 100%;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
}

/* チェックボックスを隠す */
.nav-toggle {
  display: none;
}

/* ハンバーガーメニュー */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--gray-700);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
  display: block;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0;
}

.nav-link {
  display: block;
  padding: 1rem 2rem;
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  border-radius: var(--border-radius);
  margin: 0 0.25rem;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--primary-color);
  background-color: var(--gray-50);
  text-decoration: none;
  transform: translateY(-2px);
}

.nav-link:hover::before {
  width: 80%;
}

/* アクティブページのスタイル */
.nav-link.active {
  color: var(--white);
  background-color: var(--primary-color);
}

.nav-link.active::before {
  width: 80%;
  background: var(--accent-color);
}

/* ===== Main Image ===== */
h1.img {
  margin: 0;
  padding: 0;
  text-align: center;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

h1.img img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ===== Typography ===== */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--gray-900);
  margin-bottom: 1rem;
  line-height: 1.2;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin: 2rem 0 1rem 0;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  position: relative;
}

h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent-color);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-800);
  margin: 1.5rem 0 1rem 0;
  padding: 0.75rem 1rem;
  background: var(--gray-100);
  border-left: 4px solid var(--primary-color);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* ===== Content Boxes ===== */
.text_box {
  margin-bottom: 2rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.text_box:not(:empty) {
  padding: 1.5rem;
}

.text_box p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.text_box p:last-child {
  margin-bottom: 0;
}

/* ===== Title Banner ===== */
.tittle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--secondary-color), #dc2626);
  padding: 1rem 1.5rem;
  margin: 0 0 2rem 0;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tittle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.tittle:hover::before {
  left: 100%;
}

/* ===== Course Buttons ===== */
.course-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.course-btn {
  display: block;
  padding: 2rem;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--border-radius-lg);
  text-decoration: none;
  color: var(--gray-800);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.course-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.course-btn:hover::before {
  left: 100%;
}

.course-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  text-decoration: none;
  border-color: var(--primary-color);
}

.course-btn-1 {
  background: linear-gradient(135deg, #fef3c7, #fbbf24);
  border-color: #f59e0b;
}

.course-btn-1:hover {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: var(--white);
  border-color: #d97706;
}

.course-btn-2 {
  background: linear-gradient(135deg, #dbeafe, #3b82f6);
  border-color: var(--primary-color);
}

.course-btn-2:hover {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: var(--white);
  border-color: #1e40af;
}

.course-title {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}

.course-desc {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  opacity: 0.8;
}

/* ===== Tables ===== */
.table-scroll {
  overflow-x: auto;
  margin: 1rem 0;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  -webkit-overflow-scrolling: touch;
}

table.border {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--gray-300);
  min-width: 600px;
}

table.border th {
  background: linear-gradient(135deg, var(--gray-700), var(--gray-800));
  color: var(--white);
  padding: 1rem;
  font-weight: 600;
  text-align: center;
  font-size: 0.9rem;
  border: 1px solid var(--gray-400);
}

table.border td {
  padding: 1rem;
  border: 1px solid var(--gray-300);
  vertical-align: middle;
}

table.border tr:nth-child(even) {
  background-color: var(--gray-50);
}

table.border tr:hover {
  background-color: var(--gray-100);
  transition: all 0.2s ease;
}

table.border a {
  color: inherit;
  font-weight: 600;
}

/* ===== Price Tables ===== */
table.price th {
  background: linear-gradient(135deg, var(--success-color), #047857);
}

table.price .price-highlight {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-color);
}

/* ===== Cancel Tables ===== */
table.cancel th {
  background: linear-gradient(135deg, var(--secondary-color), #b91c1c);
}

/* ===== Lists ===== */
ul {
  list-style: none;
  padding-left: 0;
}

ul.square li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

ul.square li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.decimal li {
  list-style: decimal;
  margin-left: 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* ===== Buttons ===== */
.button, .moko {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  min-width: 200px;
}

.button:hover, .moko:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  color: var(--white);
  text-decoration: none;
}

.moko {
  font-size: 1.25rem;
  padding: 1.25rem 2.5rem;
  margin: 1.5rem 0;
}

/* ===== Status Messages ===== */
.red {
  color: var(--secondary-color);
  font-weight: 600;
}

.blue {
  color: var(--primary-color);
  font-weight: 600;
}

.attention {
  background: var(--gray-50);
  border: 2px solid var(--accent-color);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
  text-align: center;
}

.att {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ===== Footer ===== */
footer {
  background: var(--white);
  color: var(--gray-800);
  padding: 3rem 2rem 2rem;
  margin-top: 3rem;
  border-top: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

footer h2 {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

footer h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent-color);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

footer dt {
  color: var(--gray-900);
  font-weight: 600;
  margin: 1.5rem 0 0.5rem 0;
  border-bottom: 1px solid var(--gray-300);
  padding-bottom: 0.5rem;
}

footer dd {
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--gray-700);
}

footer a {
  color: var(--primary-color);
}

footer a:hover {
  color: var(--primary-dark);
}

.kntlogo {
  float: right;
  margin-bottom: 1rem;
}

.kntlogo img {
  max-width: 250px;
  height: auto;
}

/* ===== Mobile Navigation ===== */
@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    padding: 1rem 0;
    z-index: 999;
  }
  
  /* チェックボックスがチェックされた時にメニューを表示 */
  .nav-toggle:checked ~ .nav-menu {
    display: flex;
  }
  
  /* ハンバーガーアイコンのアニメーション */
  .nav-toggle:checked ~ .hamburger span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  .nav-toggle:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle:checked ~ .hamburger span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-link {
    padding: 1rem;
    margin: 0.25rem 1rem;
    text-align: center;
    font-size: 0.9rem;
    display: block;
  }
  
  .nav-link::before {
    display: none;
  }
  
  .nav-link:hover {
    transform: none;
  }
  
  /* Mobile Table Styles */
  .table-scroll {
    overflow-x: auto;
    margin: 1rem -1rem;
    padding: 0 1rem;
    border-radius: 0;
    box-shadow: none;
    border-top: 1px solid var(--gray-300);
    border-bottom: 1px solid var(--gray-300);
  }
  
  table.border {
    min-width: 500px;
    border-radius: 0;
    box-shadow: none;
    border: 2px solid var(--gray-300);
  }
  
  table.border th {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
    border: 1px solid var(--gray-400);
    word-wrap: break-word;
  }
  
  table.border td {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
    border: 1px solid var(--gray-300);
    word-wrap: break-word;
  }
  
  /* スクロールバーのスタイリング */
  .table-scroll::-webkit-scrollbar {
    height: 8px;
  }
  
  .table-scroll::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 4px;
  }
  
  .table-scroll::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 4px;
  }
  
  .table-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
  }
  
  /* スクロール可能であることを示すヒント */
  .table-scroll::after {
    content: "← スクロールできます →";
    display: block;
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray-500);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
  }
}

/* ===== Responsive Design ===== */
@media screen and (min-width: 768px) {
  .course-buttons {
    flex-direction: row;
    gap: 2rem;
  }
  
  .course-btn {
    flex: 1;
  }
}

@media screen and (max-width: 1024px) {
  .wrapper {
    margin: 0;
    box-shadow: none;
  }
  
  .contents {
    padding: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .contents {
    padding: 1rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.25rem;
    padding: 0.75rem 1rem;
  }
  
  h3 {
    font-size: 1.1rem;
    padding: 0.5rem 0.75rem;
  }
  
  .tittle {
    font-size: 1.25rem;
    padding: 0.75rem 1rem;
  }
  
  .text_box {
    padding: 1rem;
  }
  
  .button, .moko {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }
  
  .moko {
    font-size: 1.1rem;
  }
  
  footer {
    padding: 2rem 1rem 1rem;
  }
  
  .kntlogo {
    float: none;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .course-btn {
    padding: 1.5rem 1rem;
  }
  
  .course-title {
    font-size: 1.25rem;
  }
  
  .course-desc {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  .contents {
    padding: 0.75rem;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.1rem;
  }
  
  .text_box {
    padding: 0.75rem;
  }
  
  .table-scroll {
    margin: 1rem -0.75rem;
    padding: 0 0.75rem;
  }
  
  table.border {
    min-width: 400px;
    border: 2px solid var(--gray-300);
  }
  
  table.border th {
    padding: 0.5rem 0.25rem;
    font-size: 0.8rem;
    border: 1px solid var(--gray-400);
  }
  
  table.border td {
    padding: 0.5rem 0.25rem;
    font-size: 0.8rem;
    border: 1px solid var(--gray-300);
  }
  
  .course-btn {
    padding: 1.5rem 1rem;
  }
  
  .course-title {
    font-size: 1.25rem;
  }
  
  .course-desc {
    font-size: 0.9rem;
  }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text_box {
  animation: fadeInUp 0.6s ease-out;
}

/* ===== Utility Classes ===== */
.img {
  display: block;
  max-width: 100%;
  height: auto;
}

.algC {
  text-align: center;
}

.algR {
  text-align: right;
}

.algL {
  text-align: left;
}

.clear {
  clear: both;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.pay {
  color: red;
  font-size: 125%;
  font-weight: bold;
}

.pc {
  display: block!important;
}

.sp {
  display: none!important;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none!important;
  }
  
  .sp {
    display: block!important;
  }
}

/* ===== Pre-application Styles ===== */
.att.t-large.center {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-align: center;
  margin: 2rem 0;
  padding: 1rem;
  background: var(--gray-50);
  border: 2px solid var(--secondary-color);
  border-radius: var(--border-radius);
}

#pre.section {
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

ol.list_counter {
  counter-reset: item;
  padding-left: 0;
}

ol.list_counter li {
  display: block;
  margin: 1.5rem 0;
  padding: 1rem 1rem 1rem 3rem;
  background: var(--gray-50);
  border-radius: var(--border-radius);
  position: relative;
  line-height: 1.6;
}

ol.list_counter li::before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  left: 1rem;
  top: 1rem;
  background: var(--primary-color);
  color: var(--white);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== Yes/No Buttons ===== */
.yn_box {
  margin: 3rem 0;
  padding: 2rem;
  background: var(--white);
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.yn_box p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--gray-800);
}

.yesno {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.yn-btn {
  display: inline-block;
  padding: 1.5rem 2rem;
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  min-width: 200px;
  text-align: center;
  line-height: 1.4;
}

.yn-btn span {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  margin-top: 0.5rem;
  opacity: 0.8;
}

.yes-btn {
  background: linear-gradient(135deg, var(--success-color), #047857);
  color: var(--white);
}

.yes-btn:hover {
  background: linear-gradient(135deg, #047857, var(--success-color));
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  text-decoration: none;
  color: var(--white);
}

.no-btn {
  background: linear-gradient(135deg, var(--gray-400), var(--gray-500));
  color: var(--white);
}

.no-btn:hover {
  background: linear-gradient(135deg, var(--gray-500), var(--gray-600));
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

/* ===== Responsive Design for Pre-application ===== */
@media screen and (max-width: 768px) {
  .att.t-large.center {
    font-size: 1.1rem;
    padding: 0.75rem;
  }
  
  #pre.section {
    padding: 1rem;
  }
  
  ol.list_counter li {
    padding: 1rem 0.5rem 1rem 2.5rem;
    margin: 1rem 0;
  }
  
  ol.list_counter li::before {
    left: 0.5rem;
    width: 1.25rem;
    height: 1.25rem;
    font-size: 0.8rem;
  }
  
  .yn_box {
    padding: 1.5rem 1rem;
  }
  
  .yesno {
    flex-direction: column;
    gap: 1rem;
  }
  
  .yn-btn {
    width: 100%;
    max-width: 300px;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .att.t-large.center {
    font-size: 1rem;
  }
  
  ol.list_counter li {
    padding: 0.75rem 0.25rem 0.75rem 2rem;
    font-size: 0.9rem;
  }
  
  ol.list_counter li::before {
    left: 0.25rem;
    width: 1rem;
    height: 1rem;
    font-size: 0.7rem;
  }
  
  .yn_box p {
    font-size: 1rem;
  }
  
  .yn-btn {
    padding: 1rem;
    font-size: 0.9rem;
  }
}

.red-1{
	color: red;
	font-weight: bold;
}

/* ===== Tables without .table-scroll wrapper ===== */
@media screen and (max-width: 768px) {
  /* .table-scrollに包まれていないテーブルのスタイル */
  table.border:not(.table-scroll table.border) {
    min-width: auto;
    width: 100%;
  }
  
  table.border:not(.table-scroll table.border) th,
  table.border:not(.table-scroll table.border) td {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
    word-wrap: break-word;
    white-space: normal;
  }
}

@media screen and (max-width: 480px) {
  table.border:not(.table-scroll table.border) th,
  table.border:not(.table-scroll table.border) td {
    padding: 0.5rem 0.25rem;
    font-size: 0.8rem;
  }
}