@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  font-size: 1.6rem;
  color: #333;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  line-height: 1.8;
}

img {
  max-width: 100%;
  height: auto;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
}

.section {
  padding: 30px 0;
}

.section__title {
  font-size: 6rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.main_bg {
  background: url("../img/allbg.svg") center;
  background-size: contain;
  min-height: 100vh;
}

/* =========================
   PAGINATION
========================= */
.pagination {
  margin-top: 80px;
  text-align: center;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
  padding: 20px 0;
}
.pagination a,
.pagination span {
  margin: 0 6px;
  padding: 8px 12px;
  border-radius: 4px;
}
.pagination {
  /* ←→ のときだけ a のデフォルト装飾を消す */
}
.pagination .prev,
.pagination .next {
  padding: 0;
  border: none;
}
.pagination .prev,
.pagination .next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #2E6F80;
  color: #2E6F80;
  font-size: 1em;
  text-shadow: 0.5px 0 0 currentColor, -0.5px 0 0 currentColor;
  transition: 0.3s ease;
}
.pagination .prev:hover,
.pagination .next:hover {
  background: #2E6F80;
  color: #FFFFFF;
}
.pagination .current {
  background: #6FC1B5;
  color: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1.25;
}

p {
  margin: 0;
}

.lead {
  font-size: 1.8rem;
  line-height: 1.9;
}

.small {
  font-size: 1.3rem;
}

.muted {
  opacity: 0.7;
}

.text-main {
  color: #2E6F80;
}

.text-sub {
  color: #4FB3A6;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
}

.container--wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 900px) {
  .container,
  .container--wide {
    padding: 0 20px;
  }
}
.site-header {
  position: absolute;
  top: 8%;
  left: 0;
  width: 100%;
  z-index: 100;
}
.site-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header__menu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__menu li a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  font-weight: bold;
}
.site-header__menu li a .en {
  font-size: 1.6rem;
  font-weight: 800;
  color: #2E6F80;
}
.site-header__menu li a .jp {
  font-size: 1.4rem;
  color: #4FB3A6;
}
.site-header__right {
  display: flex;
  gap: 20px;
}

.site-header--sub .site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header--sub .site-header__logo img {
  height: 45px;
  width: auto;
}
.site-header--sub .site-header__nav {
  margin-left: 40px;
  flex: 1;
}

.site-footer {
  padding: 60px 0;
  background: #0e1c22;
  color: #fff;
}
.site-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.site-footer__top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}
.site-footer__logo img {
  width: 180px;
  height: auto;
  display: block;
}
.site-footer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-footer__nav a {
  opacity: 0.85;
}
.site-footer__nav a:hover {
  opacity: 1;
}
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  font-size: 1.2rem;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .site-footer {
    padding: 44px 0;
  }
  .site-footer__top {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer__nav ul {
    justify-content: flex-start;
  }
}
.btn {
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}
.btn--news {
  background: #2E6F80;
  color: #fff;
}
.btn--recruit {
  background: #4FB3A6;
  color: #fff;
}

.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.card__inner {
  padding: 28px;
}
.card__title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.card__text {
  line-height: 1.9;
}
.card__meta {
  margin-top: 16px;
  font-size: 1.3rem;
  opacity: 0.7;
}

@media (max-width: 900px) {
  .card {
    border-radius: 14px;
  }
  .card__inner {
    padding: 18px;
  }
  .card__title {
    font-size: 2rem;
  }
}
.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 12px;
}
.table th, .table td {
  padding: 18px 20px;
  vertical-align: top;
  font-size: 1.5rem;
  line-height: 1.8;
}
.table th {
  width: 32%;
  background: #E8F6F3;
  font-weight: 700;
}
.table td {
  background: #F3FAF8;
}
.table tr + tr th,
.table tr + tr td {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 900px) {
  .table th, .table td {
    display: block;
    width: 100%;
    padding: 14px 16px;
  }
  .table th {
    border-top: none;
  }
  .table tr + tr th,
  .table tr + tr td {
    border-top: none;
  }
  .table tr {
    display: block;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }
}
.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tabs__btn {
  border: none;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 999px;
  background: #CBCBCB;
  color: #fff;
  font-weight: 700;
  transition: 0.3s ease;
}
.tabs__btn:hover {
  opacity: 0.85;
}
.tabs__btn.is-active {
  background: #6FC1B5;
}

.pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.pager a, .pager span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #6FC1B5;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.pager .current {
  background: #2E6F80;
}

.top-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding-bottom: 120px;
  background: url("../img/top_main_bg.png") no-repeat center center;
  background-size: cover;
}
.top-hero__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}
.top-hero__logo img {
  width: 480px;
  max-width: 40vw;
  margin-bottom: 48px;
}
.top-hero__news {
  display: flex;
  gap: 32px;
  align-items: center;
}
.top-hero__date {
  display: flex;
  flex-direction: column;
  font-weight: 700;
}
.top-hero__date .year {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  opacity: 0.9;
  margin-bottom: 4px;
}
.top-hero__date .day {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
}
.top-hero {
  /* ← 新規追加（縦線） */
}
.top-hero__line {
  width: 2px;
  border-radius: 5px;
  height: 60px;
  background: rgba(255, 255, 255, 0.8);
}
.top-hero__text {
  max-width: 640px;
}
.top-hero__text h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.top-hero__text p {
  font-size: 1.4rem;
  line-height: 1.9;
  opacity: 0.9;
}

.company-hero {
  position: relative;
  padding: 160px 0 140px;
}
.company-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 40px;
  position: relative;
  z-index: 2;
}
.company-hero__left {
  max-width: 620px;
}
.company-hero__title {
  font-weight: 800;
  font-family: "Inter", sans-serif;
  line-height: 0.9;
  margin-bottom: 40px;
}
.company-hero__title .top {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 10rem;
  color: #4FB3A6;
}
.company-hero__title .bottom {
  display: block;
  font-size: 10rem;
  color: #2E6F80;
}
.company-hero__lead {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 30px;
}
.company-hero__text {
  font-size: 1.6rem;
  line-height: 2;
  color: #333;
}
.company-hero__text p {
  margin-bottom: 20px;
}
.company-hero__text strong {
  font-weight: 700;
}
.company-hero {
  /* 右画像（ウィンドウにぴったり） */
}
.company-hero__image {
  position: absolute;
  top: 15%;
  right: 0;
  width: 50%;
  height: 60%;
  background: url("../img/about_bg.png") no-repeat right center;
  background-size: cover;
}

.company-info {
  padding: 30px 0;
}
.company-info__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 60px;
}
.company-info__title {
  margin-bottom: 20px;
}
.company-info__title .en {
  font-family: "Inter", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #2E6F80;
  letter-spacing: 0.08em;
  display: block;
}
.company-info__title .jp {
  font-size: 1.4rem;
  color: #4FB3A6;
}
.company-info__table {
  width: 100%;
  border-collapse: collapse;
}
.company-info__table tr {
  border-bottom: 3px solid #FFFFFF;
}
.company-info__table th {
  width: 240px;
  padding: 24px;
  text-align: left;
  font-weight: 600;
  background: #E8F6F3;
  color: #1E2A32;
}
.company-info__table td {
  padding: 24px;
  background: #F3FAF8;
  color: #333;
  line-height: 1.8;
}

.mechanical-hero {
  padding: 220px 0 100px;
  text-align: center;
}
.mechanical-hero__title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  line-height: 0.9;
}
.mechanical-hero__title .line1 {
  display: block;
  font-size: 11rem;
  color: #1E2A32;
}
.mechanical-hero__title .line2 {
  display: block;
  font-size: 11rem;
  color: #2E6F80;
}
.mechanical-hero__title .line3 {
  display: block;
  font-size: 11rem;
  color: #6FC1B5;
}
.mechanical-hero__subtitle {
  margin-top: 40px;
  font-size: 4rem;
  font-weight: 600;
  color: #333;
}
.mechanical-hero__subtitle span {
  font-weight: 400;
  font-size: 1.8rem;
  margin-left: 10px;
}

/* ===============================
   Service Section
=============================== */
.mechanical-service {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 60px;
}
.mechanical-service__item {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 140px;
  position: relative;
}
.mechanical-service__number {
  font-size: 6rem;
  font-weight: 700;
  color: #2E6F80;
  width: 80px;
}
.mechanical-service__content {
  flex: 1;
}
.mechanical-service__content h3 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.mechanical-service__content .en {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  color: #4FB3A6;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.mechanical-service__content p {
  font-size: 1.6rem;
  line-height: 1.9;
  color: #333;
}
.mechanical-service__image {
  flex: 1;
}
.mechanical-service__image img {
  width: 100%;
  border-radius: 8px;
}

.mechanical-service__content {
  position: relative;
  padding-left: 40px;
}
.mechanical-service__content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 2px;
  height: 85%;
  background: #CBCBCB;
}

/* ===============================
   共通 inner
=============================== */
.carsales-inner, .carsales-concept__inner, .carsales-hero__image {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ===============================
   Hero
=============================== */
.carsales-hero {
  position: relative;
  padding-top: 300px;
  padding-bottom: 60px;
}
.carsales-hero__title {
  position: absolute;
  top: 180px;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 20rem;
  font-weight: 700;
  color: #1E2A32;
  z-index: 2;
}
.carsales-hero__image img {
  width: 100%;
  border-radius: 60px;
  display: block;
}

/* ===============================
   Lead
=============================== */
.carsales-lead {
  padding: 40px 0;
}
.carsales-lead__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.carsales-lead h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.carsales-lead p {
  font-size: 1.6rem;
  color: #333;
}
.carsales-lead__logo a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
}
.carsales-lead__logo a img {
  height: 80px;
  margin-bottom: 10px;
}
.carsales-lead__logo a span {
  font-size: 1.2rem;
}

/* ===============================
   Concept
=============================== */
.carsales-concept {
  position: relative;
  padding: 30px 0;
}
.carsales-concept__inner {
  position: relative;
  text-align: center;
}
.carsales-concept__title {
  position: relative;
  margin-bottom: 80px;
}
.carsales-concept__title .bg-text {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.05);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
}
.carsales-concept__title .en {
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 14rem;
  font-weight: 800;
  color: #2E6F80;
  z-index: 2;
}
.carsales-concept__title .line {
  display: block;
  width: 80px;
  height: 4px;
  background: #000;
  margin: 20px auto 0;
}
.carsales-concept__box {
  margin-top: 40px;
  padding: 60px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  line-height: 2;
  color: #333;
  text-align: left;
}
.carsales-concept__box .lead {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
}
.carsales-concept__logo {
  margin-top: 60px;
}

/* ===============================
   Hero
=============================== */
.deodorant-hero {
  position: relative;
  padding: 220px 0 80px;
  text-align: center;
}
.deodorant-hero__natural, .deodorant-hero__deodorant {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 16rem;
  color: #69B906;
  white-space: nowrap;
}
.deodorant-hero__natural {
  top: 30%;
  z-index: 1;
}
.deodorant-hero__image {
  position: relative;
  z-index: 2;
}
.deodorant-hero__image img {
  max-width: 700px;
  width: 100%;
}
.deodorant-hero__deodorant {
  top: 65%;
  z-index: 3;
}

/* ===============================
   Slider
=============================== */
.deodorant-slider {
  overflow: hidden;
  margin: 60px 0;
}
.deodorant-slider__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: scrollLeft 28s linear infinite;
}
.deodorant-slider__item {
  width: 260px;
  margin-right: 30px;
}
.deodorant-slider__item img {
  width: 100%;
  border-radius: 20px;
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ===============================
   About
=============================== */
.deodorant-about {
  position: relative;
  padding: 80px 0;
  text-align: right;
}
.deodorant-about__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}
.deodorant-about__title {
  font-size: 9rem;
  font-weight: 700;
  color: #2e6f80;
  margin-bottom: 30px;
}
.deodorant-about__text {
  font-family: "Yomogi", cursive;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 2.4;
  color: #6b4e2e;
  text-align: justify;
  text-shadow: 0.5px 0 0 currentColor, -0.5px 0 0 currentColor;
}
.deodorant-about__text p {
  margin-bottom: 25px;
}
.deodorant-about__button {
  margin-top: 60px;
  text-align: left;
}
.deodorant-about__button a {
  display: inline-block;
  padding: 16px 50px;
  background: #69B906;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.deodorant-about__button a:hover {
  opacity: 0.8;
}

/* ===============================
   Background Decorations
=============================== */
.deodorant-about__leaf {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
}
.deodorant-about__leaf--left {
  top: 10%;
  left: 0;
  width: 320px;
  height: 600px;
  background-image: url("../img/drks_left_bg.png");
  background-position: left top;
  opacity: 0.5;
}
.deodorant-about__leaf--right {
  bottom: 5%;
  right: 0;
  width: 320px;
  height: 600px;
  background-image: url("../img/drks_right_bg.png");
  background-position: right bottom;
  opacity: 0.5;
}
.deodorant-about__inner {
  position: relative;
  z-index: 2;
}

/* =========================
   HERO
========================= */
.news-hero {
  padding: 220px 0 0;
}
.news-hero__title {
  max-width: 1120px;
  margin: 0 auto;
  font-size: 6em;
  font-weight: 700;
  color: #1E2A32;
}
.news-hero__title span {
  color: #4FB3A6;
}

/* =========================
   LIST
========================= */
.news-list {
  padding-bottom: 140px;
}
.news-list__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.news-list__item {
  max-width: 1120px;
  margin: 0 auto;
  padding: 30px 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}
.news-list__link {
  display: flex;
  gap: 40px;
  text-decoration: none;
  color: #333;
  transition: 0.3s ease;
}
.news-list__link:hover {
  opacity: 0.7;
}
.news-list {
  /* ===== 日付ブロック ===== */
}
.news-list__date {
  width: auto;
  position: relative;
  padding-right: 40px;
}
.news-list__date::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: rgba(51, 51, 51, 0.1);
}
.news-list__year {
  font-size: 1.4em;
  font-weight: bold;
  display: block;
}
.news-list__day {
  font-size: 32px;
  font-weight: 700;
  color: #2E6F80;
  display: block;
}
.news-list {
  /* ===== 右側 ===== */
}
.news-list__heading {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1E2A32;
}
.news-list__excerpt {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(51, 51, 51, 0.8);
}

/* =========================
   DETAIL
========================= */
.news-detail__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 0 60px;
}
.news-detail__meta {
  margin-bottom: 20px;
}
.news-detail__year {
  font-size: 14px;
  display: block;
  font-weight: bold;
}
.news-detail__day {
  font-size: 28px;
  color: #2E6F80;
  font-weight: 700;
}
.news-detail__heading {
  font-size: 32px;
  font-weight: 700;
  margin: 20px 0 40px;
  color: #1E2A32;
}
.news-detail__thumbnail {
  margin-bottom: 40px;
}
.news-detail__thumbnail img {
  width: 100%;
  height: auto;
}
.news-detail__body {
  line-height: 2;
  font-size: 15px;
  color: rgba(51, 51, 51, 0.9);
}
.news-detail__body p {
  margin-bottom: 1.8em;
}
.news-detail__body h3 {
  margin-top: 2.2em;
  margin-bottom: 1em;
  font-size: 20px;
}
.news-detail {
  /* ===== 戻るボタン ===== */
}
.news-detail__backWrap {
  max-width: 1120px;
  margin: 60px auto 140px;
}
.news-detail__back {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  border: 1px solid #2E6F80;
  color: #2E6F80;
  text-decoration: none;
  transition: 0.3s ease;
}
.news-detail__back:hover {
  background: #2E6F80;
  color: #FFFFFF;
}

/* =========================
  Recruit Hero
========================= */
.recruit-hero {
  padding: 220px 0 0;
}
.recruit-hero__main {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}
.recruit-hero__mainImg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.recruit-hero__titleSvg {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: min(560px, 60%);
  height: auto;
  display: block;
  pointer-events: none;
}
.recruit-hero__subs {
  max-width: 1180px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.recruit-hero__sub {
  border-radius: 8px;
  overflow: hidden;
}
.recruit-hero__sub img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
  Requirements
========================= */
.recruit-require {
  padding: 70px 0 40px;
}
.recruit-require__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.recruit-require__title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.12);
  margin-bottom: 28px;
}
.recruit-require__lead {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
  margin-bottom: 26px;
  color: #333;
}
.recruit-require__note {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(51, 51, 51, 0.75);
  margin-bottom: 22px;
}
.recruit-require__tableWrap {
  border-top: 1px solid rgba(51, 51, 51, 0.1);
}
.recruit-require__table {
  width: 100%;
  border-collapse: collapse;
}
.recruit-require__table th,
.recruit-require__table td {
  padding: 18px 18px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
  vertical-align: top;
  text-align: left;
  font-size: 1em;
  line-height: 1.9;
  color: #333;
}
.recruit-require__table th {
  font-size: 1.2em;
  width: 220px;
  background: #E8F6F3;
  font-weight: 700;
}
.recruit-require__table td {
  background: #F3FAF8;
}
.recruit-require__table td small {
  display: block;
  margin-top: 8px;
  color: rgba(51, 51, 51, 0.7);
}

/* =========================
  Tabs
========================= */
.recruit-tabs {
  padding: 40px 0 140px;
}
.recruit-tabs__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.recruit-tabs__nav {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}
.recruit-tabs__tab {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: #CBCBCB;
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: 6px 6px 0 0;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}
.recruit-tabs__tab.is-active {
  background: #6FC1B5;
}
.recruit-tabs__line {
  height: 3px;
  background: #6FC1B5;
}
.recruit-tabs__panel {
  display: none;
  padding-top: 26px;
}
.recruit-tabs__panel.is-active {
  display: block;
}
.recruit-tabs__heading {
  font-size: 26px;
  font-weight: 800;
  color: #333;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
  margin-bottom: 22px;
}
.recruit-tabs__headingMain {
  display: block;
}
.recruit-tabs__headingSub {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: rgba(51, 51, 51, 0.7);
  margin-top: 8px;
}
.recruit-tabs__buttons {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 40px;
}

/* =========================
  Detail DL (table-like)
========================= */
.recruit-dl__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}
.recruit-dl__dt {
  font-size: 1.2em;
  font-weight: 500;
  padding: 18px 18px;
}
.recruit-dl__dd {
  padding: 18px 18px;
  font-size: 1em;
  line-height: 1.9;
}

/* =========================
  Buttons
========================= */
.recruit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 14px 22px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}
.recruit-btn--ghost {
  border: 2px solid rgba(51, 51, 51, 0.6);
  color: #333;
  background: transparent;
}
.recruit-btn--ghost:hover {
  border-color: #333;
}
.recruit-btn--primary {
  border: 2px solid #2E6F80;
  color: #2E6F80;
  background: transparent;
}
.recruit-btn--primary:hover {
  background: #2E6F80;
  color: #FFFFFF;
}

/* =========================
  Hero
========================= */
.glossary-hero {
  padding: 220px 0 40px;
  text-align: center;
}
.glossary-hero__title {
  font-size: 2.4em;
  font-weight: 700;
  color: #1E2A32;
}

/* =========================
  Tabs
========================= */
.glossary-tabs {
  padding-bottom: 140px;
}
.glossary-tabs__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.glossary-tabs__nav {
  display: flex;
  gap: 10px;
}
.glossary-tabs__tab {
  padding: 12px 24px;
  background: #CBCBCB;
  color: #FFFFFF;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
  transition: 0.3s ease;
  border: none;
}
.glossary-tabs__tab.is-active {
  background: #6FC1B5;
}
.glossary-tabs__line {
  height: 3px;
  background: #6FC1B5;
  margin-bottom: 30px;
}

/* =========================
  List
========================= */
.glossary-item {
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
  padding: 26px 0;
}
.glossary-item__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
}
.glossary-item__title {
  font-size: 16px;
  font-weight: 700;
  color: #2E6F80;
}
.glossary-item__content {
  font-size: 14px;
  line-height: 1.9;
  color: #333;
}

/* =========================
  Single
========================= */
.glossary-single__inner {
  max-width: 1180px;
  margin: 220px auto 140px;
}
.glossary-single__title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 30px;
}
.glossary-single__content {
  font-size: 16px;
  line-height: 2;
}
.glossary-single__nav {
  margin-top: 60px;
}

.glossary-btn {
  display: inline-block;
  padding: 12px 26px;
  border: 2px solid #2E6F80;
  color: #2E6F80;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}
.glossary-btn:hover {
  background: #2E6F80;
  color: #FFFFFF;
}