﻿@charset "utf-8";
/*--------------------------------------------------------------------------------
  .l-pv_ttl
--------------------------------------------------------------------------------*/
.l-pv_ttl small { font-size: var(--fs-4l-rem); }

/*--------------------------------------------------------------------------------
  .about
--------------------------------------------------------------------------------*/
.about {
  display: flex;
  gap: var(--space-m);
}
.about_img { position: relative; }
.about_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
@media (min-width: 761px) {
  .about_img {
    flex-shrink: 0;
    width: max(35%, 360px);
  }
  .about_txt {
    order: 1;
  }
  .about_txt .chikyu-emblem img {
    width: min(30%, 200px);
  }
}
@media (max-width: 760px) {
  .about {
    flex-direction: column;
  }
  .about_img img {
    aspect-ratio: 3 / 2;
  }
  .about_txt .chikyu-emblem {
    text-align: center;
  }
  .about_txt .chikyu-emblem img {
    width: min(40%, 200px);
  }
}

/*--------------------------------------------------------------------------------
  .join
--------------------------------------------------------------------------------*/
.join-tbl th {
  white-space: nowrap;
  vertical-align: middle;
}
.join-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 2rem;
}
.join-info .btn {
  --btn-width-min: min(100%, 400px);
}
@media (max-width: 760px) {
  .join-info .btn {
    width: 100%;
    text-align: center;
  }
}
