@charset "UTF-8";

/* ==== root ========================== */
:root {
  --color-black: #4d4d4d;
  --color-white: #fcfcfb;
  --color-navy: #003e72;
  --color-primary: #afa37d;
  --color-txt-gold: #8d7c47;
  --color-bg: #efede6;
  --color-bg-gray: #f5f5f5;
  --color-line-green: #62c94b;

  --noto-sans: "Noto Sans JP", serif;
  --cormorant: "Cormorant Garamond", serif;
  --zen-old: "Zen Old Mincho", serif;
  --klee-one: "Klee One", serif;

  --line-middle: 2;
  --line-large: 2.4;

  --font-size-base: clamp(14px, 1.6rem, 18px);
  --font-size-medium: clamp(16px, 2.2rem, 24px);
  --font-size-large: clamp(24px, 2.8rem, 36px);
}

/* リクルート専用LINEとは */
.briefing-line {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 64px 48px;
}
.briefing-line__inner {
  text-align: center;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .briefing-line {
    padding: 40px 15px;
  }
  .briefing-line__inner {
    padding: 0 15px;
  }
}
/* Head */
.briefing-line h3 {
  font-family: var(--zen-old);
  font-size: var(--font-size-medium);
  margin-bottom: 16px;
}
.briefing-line__lead {
  line-height: var(--line-middle);
  margin-bottom: 32px;
}
.briefing-line__subhead {
  font-family: var(--zen-old);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}
.briefing-line__subhead::before,
.briefing-line__subhead::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 32px;
  height: 1px;
  background: #fff;
  transform: translateY(-50%);
}
.briefing-line__subhead::before {
  left: -40px;
}
.briefing-line__subhead::after {
  right: -40px;
}
/* Button */
.briefing-line__btn {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}
.briefing-line__btn a {
  display: inline-block;
  font-size: clamp(14px, 2rem, 22px);
  color: var(--color-white);
  line-height: 1;
  border-radius: 100000px;
  min-width: 320px;
  position: relative;
  background: var(--color-line-green);
  padding: 1.2em 7rem 1.2em 3rem;
  width: 50%;
}
.briefing-line.recruit-line .briefing-line__btn a {
  width: 30%;
  padding: 1.2em 3rem 1.2em 3rem;
}
.briefing-line__btn.target-blank a::before {
  content: "\f08e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 3.6rem;
  text-align: center;
  color: var(--color-navy);
  position: absolute;
  width: 3.6rem;
  height: 3.6rem;
  background: var(--color-white);
  border-radius: 10000px;
  top: 50%;
  right: 2.4rem;
  transform: translateY(-50%);
}
.briefing-line__btn a:hover {
  filter: brightness(1.08);
}
.briefing-line__note {
  margin-top: 28px;
  font-size: var(--font-size-base);
  line-height: var(--line-middle);
}
@media screen and (max-width: 768px) {
  .briefing-line__btn a,
  .briefing-line.recruit-line .briefing-line__btn a {
    width: 100%;
    min-width: unset;
  }
}
/* List */
.briefing-line__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin: 0 auto 16px;
  padding: 0;
}
.briefing-line__item {
  background: var(--color-white);
  padding: 18px 12px 20px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.briefing-line__item p {
  font-weight: 700;
  color: var(--color-black);
  font-size: 1.4rem;
  line-height: 1.5;
}
.briefing-line__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.briefing-line__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .briefing-line__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media screen and (max-width: 560px) {
  .briefing-line__list {
    grid-template-columns: 1fr;
  }
}

.briefing-line.recruit-line .h2-hd {
  font-family: var(--cormorant);
  font-size: 10rem;
  color: rgb(255 255 255 / 25%);
  margin-bottom: 4rem;
  text-align: center;
}
.briefing-line.recruit-line .h2-hd span {
  color: var(--color-white);
  left: 50%;
  transform: translateX(-50%);
}
