@charset "UTF-8";

/* =========================================
   0. Reset & Box Sizing
   ========================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* =========================================
   1. Base & Variables
   ========================================= */
:root {
  --c-black: #000;
  --c-white: #fff;
  --c-gray-bg: #f4f4f4;
  --header-h: 80px;
  --font-head: "Anton", sans-serif;
  --font-jp: "Noto Sans JP", sans-serif;
  --easing: cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 768px) {
  :root {
    --header-h: 60px;
  }
}
body {
  font-family: var(--font-jp);
  color: var(--c-black);
  margin: 0;
  background: var(--c-white);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* =========================================
   2. Components
   ========================================= */
.l-header {
  height: var(--header-h);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  transition: height 0.3s;
}
.l-header__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header__logo a {
  display: block;
}
.l-header__logo img {
  height: 44px;
  width: auto;
  display: block;
}
.c-gnav {
  display: flex;
  gap: 30px;
}
.c-gnav li a {
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 16px;
  letter-spacing: 0.05em;
  position: relative;
  text-transform: uppercase;
}
.c-gnav li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #000;
  transition: width 0.4s var(--easing);
}
.c-gnav li a:hover::after {
  width: 100%;
}
.c-hamburger {
  position: fixed;
  top: 20px;
  right: 40px;
  z-index: 2200;
  display: none;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.c-hamburger__lines {
  width: 30px;
  height: 14px;
  position: relative;
  margin: 0 auto;
}
.c-hamburger__line {
  position: absolute;
  right: 0;
  width: 100%;
  height: 2px;
  background: var(--c-black);
  transition: all 0.4s var(--easing);
}
.c-hamburger__line:nth-child(1) {
  top: 0;
  width: 100%;
}
.c-hamburger__line:nth-child(2) {
  bottom: 0;
  width: 70%;
}
.c-hamburger:hover .c-hamburger__line {
  width: 100%;
}
.c-hamburger.is-active .c-hamburger__line {
  background: #fff;
  width: 100%;
}
.c-hamburger.is-active .c-hamburger__line:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}
.c-hamburger.is-active .c-hamburger__line:nth-child(2) {
  bottom: 6px;
  transform: rotate(-45deg);
}
.l-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #111;
  z-index: 2000;
  padding-left: 8vw;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  visibility: hidden;
  pointer-events: none !important;
  transition:
    opacity 0.4s var(--easing),
    visibility 0.4s var(--easing);
}
.l-drawer.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto !important;
}
.l-drawer::before {
  content: "WORK INDEX";
  position: absolute;
  bottom: -2%;
  right: -5%;
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 25vw;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.05);
  pointer-events: none;
  transform: rotate(-5deg);
}
.c-dnav li {
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.c-dnav li a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.6s var(--easing);
}
.c-dnav__en {
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: clamp(30px, 5vw, 60px);
  line-height: 1;
  letter-spacing: 0.02em;
}
.c-dnav__jp {
  font-size: 13px;
  font-weight: 500;
  color: #aaa;
  margin-top: 8px;
  letter-spacing: 0.1em;
}

/* =========================================
   3. MV Section
   ========================================= */
.p-mv {
  position: relative;
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 120px;
  overflow: hidden;
}
.p-mv__bg {
  position: absolute;
  bottom: 8%;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: clamp(60px, 15vw, 250px);
  line-height: 0.8;
  color: #f0f0f0;
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
}
.js-mv-slick {
  width: 100%;
  overflow: visible !important;
  opacity: 0;
  transition: opacity 0.5s;
}
.js-mv-slick.slick-initialized {
  opacity: 1;
}
.slick-list {
  overflow: visible !important;
}
.p-slide-item {
  width: 29vw;
  margin: 0 1.2vw;
  transition:
    transform 0.5s,
    opacity 0.5s;
  outline: none;
  opacity: 1 !important;
  transform: scale(0.95);
}
.p-slide-item.slick-center {
  opacity: 1 !important;
  transform: scale(1.05);
}
@media (max-width: 992px) {
  .p-slide-item {
    width: 50vw;
    margin: 0 15px;
  }
}
@media (max-width: 650px) {
  .p-slide-item {
    width: 80vw;
    margin: 0 10px;
  }
}
.p-card {
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.p-card__img {
  height: 320px;
  overflow: hidden;
  position: relative;
}
.p-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.p-card:hover .p-card__img img {
  transform: scale(1.05);
}
.p-card__tag {
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  color: #fff;
  padding: 6px 14px;
  font-size: 14px;
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  letter-spacing: 0.05em;
}
.p-card__body {
  padding: 25px;
  border: 1px solid #eee;
  border-top: none;
  flex-grow: 1;
  position: relative;
}
.p-card__date {
  display: block;
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}
.p-card__title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 40px;
}
.p-readmore {
  position: absolute;
  bottom: 25px;
  right: 25px;
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 14px;
  border-bottom: 1px solid #000;
  letter-spacing: 0.1em;
}
.slick-arrow {
  width: 60px;
  height: 60px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-size: 0;
}
.slick-arrow::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
}
.slick-prev {
  left: 4vw;
}
.slick-prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}
.slick-next {
  right: 4vw;
}
.slick-next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}
.slick-arrow:hover {
  background: #333;
  transform: translateY(-50%) scale(1.1);
  transition: 0.3s;
}
@media (max-width: 480px) {
  .slick-arrow {
    width: 40px;
    height: 40px;
  }
}
/* =========================================
   4. Layout & Header
   ========================================= */
.l-content-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto 150px;
  padding: 0 40px;
}
@media (max-width: 480px) {
  .l-content-wrapper {
    margin: 0 auto;
  }
}
.l-primary {
  width: calc(100% - 340px - 60px);
}
.l-sidebar {
  width: 340px;
  flex-shrink: 0;
}
.l-section {
  margin-bottom: 160px;
}
.c-head-anton {
  margin-bottom: 60px;
  border-bottom: 6px solid #000;
  padding-bottom: 5px;
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.c-head-anton__num {
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  color: #e0e0e0;
  position: relative;
  top: 3px;
  line-height: 0.8;
  font-size: clamp(50px, 10vw, 80px);
}
.c-head-anton__text {
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 0.9;
  font-size: clamp(30px, 6vw, 56px);
}
.c-btn-wrap {
  text-align: center;
  margin-top: 60px;
}
.c-btn-border {
  display: inline-block;
  border: 2px solid #000;
  padding: 15px 80px;
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 16px;
  letter-spacing: 0.1em;
  background: #fff;
  transition: 0.3s;
}
.c-btn-border:hover {
  background: #000;
  color: #fff;
}

/* =========================================
   5. RECRUITMENT LOG
   ========================================= */
.p-re-list {
  border-top: 2px solid #000;
}
.p-re-item {
  border-bottom: 1px solid #ccc;
  background: #fff;
  transition: 0.3s;
  opacity: 1 !important;
}
.p-re-item:hover {
  background: #fcfcfc;
}
.p-re-item__inner {
  display: flex;
  gap: 60px;
  padding: 50px 0;
  align-items: flex-start;
}
.p-re-item__left {
  width: 260px;
  flex-shrink: 0;
}
.p-re-meter-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-re-meter {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.p-re-meter__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-re-meter__label {
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #000;
}
.p-re-meter__val {
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 16px;
  color: #000;
}
.p-re-meter__track {
  width: 100%;
  height: 8px;
  background: #eee;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.p-re-meter__fill {
  height: 100%;
  background: #000;
}
.p-re-item__right {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 300px;
}
.p-re-info-top {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 25px;
}
.p-re-info-text {
  flex-grow: 1;
}
.p-re-info-tag {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 4px 10px;
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 12px;
  margin-bottom: 12px;
}
.p-re-info-title {
  font-family: var(--font-head) !important;
  font-weight: 900 !important;
  font-size: 36px;
  margin: 0 0 10px;
  line-height: 1;
}
.p-re-info-desc {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}
.p-re-info-img {
  width: 180px;
  flex-shrink: 0;
}
.p-re-info-img img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border: 1px solid #eee;
}
.p-re-comment {
  background: #f4f4f4;
  padding: 20px;
  border-left: 4px solid #000;
  margin-bottom: 30px;
  flex-grow: 1;
}
.p-re-comment__label {
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  color: #888;
}
.p-re-comment__text {
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
  color: #000;
}
.p-re-btn-wrap {
  text-align: right;
  margin-top: auto;
}
.c-btn-more {
  display: inline-block;
  padding: 14px 50px;
  border: 1px solid #000;
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 12px;
  letter-spacing: 0.1em;
  background: #fff;
  transition: 0.3s;
}
.c-btn-more:hover {
  background: #000;
  color: #fff;
}

/* =========================================
   6. SPECIAL EDITION
   ========================================= */
.p-mag-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.p-mag-card {
  opacity: 1 !important;
}
.p-mag-card a {
  display: block;
  position: relative;
  color: #fff;
}
.p-mag-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 20px;
  background: #000;
}
.p-mag-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--easing);
}
.p-mag-card:hover .p-mag-card__img-wrap img {
  transform: scale(1.05);
}
.p-mag-card__cat {
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  color: #fff;
  padding: 6px 14px;
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.p-mag-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-mag-card__title {
  font-family: var(--font-head) !important;
  font-weight: 900 !important;
  font-size: 28px;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
  color: #000;
}
.p-mag-card__sub {
  font-size: 14px;
  color: #555;
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}
.p-mag-card__more {
  margin-top: 10px;
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 12px;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #000;
  display: inline-block;
  width: fit-content;
  color: #000;
}

/* =========================================
   7. WORK INTELLIGENCE
   ========================================= */
.p-intel-list {
  border-top: 4px solid #000;
}
.p-intel-item {
  border-bottom: 1px solid #ccc;
  transition: 0.3s;
  opacity: 1 !important;
}
.p-intel-item:hover {
  background: #f9f9f9;
  padding-left: 15px;
}
.p-intel-item a {
  display: flex;
  align-items: center;
  padding: 25px 0;
  gap: 40px;
}
.p-intel-item__meta {
  width: 140px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.p-intel-item__cat {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  padding: 3px 8px;
  width: fit-content;
}
.p-intel-item__date {
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 14px;
  color: #888;
}
.p-intel-item__en {
  display: block;
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 12px;
  color: #000;
  margin-bottom: 6px;
}
.p-intel-item__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}
.p-intel-item__icon {
  font-size: 16px;
  font-weight: 900;
}

/* =========================================
   8. Sidebar & Search Widgets
   ========================================= */
.c-widget {
  margin-bottom: 80px;
}
.c-widget__title {
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 24px;
  letter-spacing: 0.05em;
  border-bottom: 4px solid #000;
  padding-bottom: 10px;
  margin-bottom: 30px;
  margin-top: 0;
}

/* ① Sidebar Search Form */
.c-search-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #f9f9f9;
  padding: 25px;
  border: 1px solid #eee;
}
.c-search-form__input,
.c-search-form__select {
  width: 100%;
  border: 1px solid #ddd;
  padding: 12px;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  border-radius: 0;
  background: #fff;
}
.c-search-form__submit {
  width: 100%;
  background: #000;
  color: #fff;
  border: none;
  padding: 14px;
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 16px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: 0.3s;
}
.c-search-form__submit:hover {
  background: #333;
}

/* Ranking */
.p-ranking-list {
  counter-reset: rank;
}
.p-ranking-item {
  margin-bottom: 30px;
}
.p-ranking-item a {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
}
.p-ranking-item__img {
  width: 100px;
  flex-shrink: 0;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: #eee;
}
.p-ranking-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.p-ranking-item a:hover .p-ranking-item__img img {
  transform: scale(1.1);
}
.p-ranking-item__num {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 12px;
}
.p-ranking-item__body {
  flex-grow: 1;
}
.p-ranking-item__cat {
  display: block;
  font-size: 10px;
  font-weight: bold;
  color: #888;
  margin-bottom: 5px;
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  letter-spacing: 0.05em;
}
.p-ranking-item__title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

.p-category-list li {
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.p-category-list a {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
}
.p-category-list a span {
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  color: #ccc;
}
.c-banner {
  display: block;
  background: #000;
  text-align: center;
  color: #fff;
}
.c-banner__img img {
  opacity: 0.8;
  transition: 0.5s;
}
.c-banner:hover .c-banner__img img {
  opacity: 0.6;
}
.c-banner__text {
  padding: 15px;
  font-size: 14px;
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  letter-spacing: 0.05em;
}

/* =========================================
   9. Footer
   ========================================= */
.l-footer {
  background: #000;
  color: #fff;
  padding: 80px 0 30px;
  font-size: 14px;
}
.l-footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.l-footer__content {
  display: grid;
  grid-template-columns: 3fr 1.5fr 1.5fr;
  gap: 60px;
  margin-bottom: 80px;
}
.l-footer__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.l-footer__logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}
.l-footer__desc {
  color: #aaa;
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
}
.l-footer__company {
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  color: #666;
  font-size: 14px;
}
.l-footer__company p {
  margin: 0;
}
.l-footer__head {
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 18px;
  margin: 0 0 10px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
}
.l-footer__nav li {
  margin-bottom: 12px;
}
.l-footer__nav a {
  display: flex;
  flex-direction: column;
  color: #fff;
  opacity: 0.7;
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  letter-spacing: 0.05em;
}
.l-footer__nav a:hover {
  opacity: 1;
  padding-left: 5px;
}
.l-footer__nav span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  color: #666;
  margin-top: 2px;
}
.l-footer__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.l-footer__tags a {
  display: inline-block;
  border: 1px solid #333;
  color: #ccc;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 4px;
  transition: 0.3s;
}
.l-footer__tags a:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.l-footer__bottom {
  border-top: 1px solid #222;
  padding-top: 30px;
  text-align: center;
}
.l-footer__copy {
  color: #555;
  font-size: 11px;
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  letter-spacing: 0.05em;
  margin: 0;
}

/* =========================================
   10. Search Trigger & Modal (New)
   ========================================= */
/* Floating Button */
.c-float-search {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2500;
  width: 60px;
  height: 60px;
  background: #000;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.c-float-search:hover {
  transform: scale(1.1);
}
.c-float-search__icon {
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: relative;
  display: block;
  top: -2px;
  left: -2px;
}
.c-float-search__icon::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 8px;
  height: 2px;
  background: #fff;
  transform: rotate(45deg);
}

/* Modal */
.l-search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s;
}
.l-search-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.l-search-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}
.l-search-modal__inner {
  position: relative;
  width: 90%;
  max-width: 800px;
  z-index: 2;
  text-align: center;
  transform: scale(0.9);
  opacity: 0;
  transition: 0.5s var(--easing);
}
.l-search-modal.is-active .l-search-modal__inner {
  transform: scale(1);
  opacity: 1;
}

.l-search-modal__close {
  position: absolute;
  top: -60px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 16px;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.l-search-modal__title {
  color: #fff;
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: clamp(40px, 8vw, 80px);
  margin: 0 0 40px;
  letter-spacing: 0.05em;
}

/* Modal Form */
.c-modal-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.c-modal-form__input,
.c-modal-form__select {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 2px solid #555;
  color: #fff;
  font-size: 20px;
  padding: 15px 0;
  border-radius: 0;
  transition: border-color 0.3s;
}
.c-modal-form__input:focus,
.c-modal-form__select:focus {
  outline: none;
  border-bottom-color: #fff;
}
.c-modal-form__select {
  color: #aaa;
} /* Select placeholder color */
.c-modal-form__submit {
  margin-top: 20px;
  background: #fff;
  color: #000;
  border: none;
  padding: 20px;
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 20px;
  letter-spacing: 0.1em;
  cursor: pointer;
  width: 100%;
  transition: 0.3s;
}
.c-modal-form__submit:hover {
  background: #ccc;
}

/* =========================================
   11. Animation
   ========================================= */
.c-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #111;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-loading__logo {
  width: clamp(160px, 40vw, 300px);
  opacity: 1;
}
.c-loading__logo img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}
.c-loading__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: scaleY(0);
  transform-origin: bottom;
}
.js-anim {
  opacity: 1 !important;
  transform: none !important;
}
.js-img-reveal {
  position: relative;
  overflow: hidden;
}
.js-img-reveal img {
  transform: scale(1.1);
  transition: 1s var(--easing);
}
.is-revealed img {
  transform: scale(1);
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 1160px) {
  .p-re-item__inner {
    flex-direction: column;
    gap: 30px;
  }
  .p-re-item__left {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .p-re-meter-wrap {
    display: contents;
  }
  .p-re-meter {
    width: 100%;
  }
  .p-re-item__right {
    width: 100%;
    min-height: auto;
  }
  .p-re-btn-wrap {
    text-align: center;
    margin-top: 30px;
  }
  .c-btn-more {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 900px) {
  .l-content-wrapper {
    flex-direction: column;
    gap: 80px;
  }
  .l-primary {
    width: 100%;
  }
  .l-sidebar {
    width: 100%;
    margin-top: 0;
  }
  .l-footer__content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .c-gnav {
    display: none;
  }
  .c-hamburger {
    display: block;
  }
  .p-mv {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .p-slide-item {
    width: 80vw;
    margin: 0 10px;
  }
  .l-content-wrapper {
    padding: 0 20px;
  }
  .l-section {
    margin-bottom: 50px;
  }
  .c-head-anton__num {
    font-size: 50px;
  }
  .c-head-anton__text {
    font-size: 30px;
  }
  .c-head-anton {
    gap: 10px;
  }
  .l-header__logo img {
    height: 38px;
  }
  .c-hamburger {
    top: 10px;
    right: 20px;
  }
  .p-re-item__left {
    grid-template-columns: 1fr;
  }
  .p-re-info-top {
    flex-direction: column-reverse;
    gap: 15px;
  }
  .p-re-info-img {
    width: 100%;
  }
  .p-mag-grid {
    grid-template-columns: 1fr;
  }
  .p-intel-item a {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .p-intel-item__meta {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .p-intel-item__icon {
    align-self: flex-end;
  }
  .l-footer {
    padding: 50px 0 20px;
  }
  .l-footer__inner {
    padding: 0 20px;
  }
  .l-footer__logo img {
    height: 30px;
  }
  /* Floating Btn */
  .c-float-search {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}
/* =========================================
   12. Archive Common Styles
   ========================================= */

/* Archive MV */
.p-mv-archive {
  position: relative;
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 60px;
  background: #fff;
  overflow: hidden;
  text-align: center;
}
.p-mv-archive__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: clamp(80px, 15vw, 200px);
  color: #f7f7f7;
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
}
.p-mv-archive__title {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}
.p-mv-archive__en {
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: clamp(30px, 5vw, 60px);
  letter-spacing: 0.05em;
  line-height: 1;
}
.p-mv-archive__jp {
  font-size: 14px;
  font-weight: bold;
  color: #888;
  letter-spacing: 0.1em;
}

/* --- Breadcrumbs (Design Update) --- */
.c-breadcrumbs {
  width: 100%;
  border-bottom: 1px solid #eee;
  background: #fff;
  padding: 15px 0;
  margin-bottom: 60px;
}
/* ★追加: シングルページ用（ヘッダー分の余白を確保） */
.c-breadcrumbs--single {
  margin-top: var(--header-h);
}

.c-breadcrumbs ul {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
}
/* ...以下変更なし... */
.c-breadcrumbs li {
  font-size: 11px;
  color: #888;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  line-height: 1.4;
}
.c-breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #ccc;
  font-weight: 300;
}
.c-breadcrumbs a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
}
.c-breadcrumbs a:hover {
  opacity: 0.6;
  text-decoration: underline;
}
.c-breadcrumbs li:last-child span {
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
  display: block;
}
/* Main Archive Layout */
.l-main-archive {
  padding-bottom: 120px;
}

/* Pagination */
.c-pagination {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.c-pagination a.page-numbers,
.c-pagination span.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #eee;
  color: #000;
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 16px;
  transition: 0.3s;
  text-decoration: none;      /* ← 追加: 下線を消す */
  box-sizing: border-box;     /* ← 追加: borderでサイズがずれないように */
  flex-shrink: 0;             /* ← 追加: 縮小を防止 */
}
.c-pagination ul.page-numbers {
  display: flex;
  justify-content: center;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-pagination span.page-numbers.current,
.c-pagination a.page-numbers:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}
.c-pagination .prev,
.c-pagination .next {
  font-family: "Noto Sans JP", sans-serif; /* 矢印などはゴシックでも可 */
}

/* SP Adjustments */
@media (max-width: 768px) {
  .p-mv-archive {
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: 40px;
  }
  .c-breadcrumbs {
    padding: 15px 20px;
    margin-bottom: 40px;
  }
  .l-main-archive {
    padding-bottom: 80px;
  }
}

/* =========================================
   13. Single Post Styles (Update)
   ========================================= */

.l-main-single {
  padding-bottom: 120px;
}

/* --- Breadcrumbs (Design Update) --- */
.c-breadcrumbs {
  width: 100%;
  border-bottom: 1px solid #eee;
  background: #fff;
  padding: 15px 0;
  margin-bottom: 60px;
}
.c-breadcrumbs ul {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.c-breadcrumbs li {
  font-size: 11px;
  color: #888;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  line-height: 1.4;
}
/* 区切り線 (/) */
.c-breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #ccc;
  font-weight: 300;
}
.c-breadcrumbs a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
}
.c-breadcrumbs a:hover {
  opacity: 0.6;
  text-decoration: underline;
}
/* 現在地 */
.c-breadcrumbs li:last-child span {
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
  display: block;
}

/* --- Entry Header & Content --- */
.p-entry {
  /* Layout handled by l-primary */
}

/* Common Header */
.p-entry-header {
  margin-bottom: 60px;
}
.p-entry-header__top {
  margin-bottom: 30px;
}
.p-entry-header__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.p-entry-tag {
  background: #000;
  color: #fff;
  padding: 4px 10px;
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.p-entry-date {
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 14px;
  color: #888;
}
/* Pattern A: Reputation */
.p-entry-header--reputation {
  border-bottom: 1px solid #000;
  padding-bottom: 50px;
}
.p-re-spec {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}
.p-re-spec__img {
  width: 40%;
  flex-shrink: 0;
}
.p-re-spec__img img {
  width: 100%;
  height: auto;
  border: 1px solid #eee;
}
.p-re-spec__data {
  width: 60%;
  display: flex;
  flex-direction: column;
}
.p-re-spec__title {
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 20px;
  margin: 0 0 20px;
  border-bottom: 2px solid #000;
  padding-bottom: 10px;
}
.p-re-meter-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.p-re-meter-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.p-re-meter-row__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.p-re-meter-row__label {
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.p-re-meter-row__val {
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 18px;
  line-height: 1;
}
.p-re-meter-row__track {
  width: 100%;
  height: 8px;
  background: #eee;
  position: relative;
}
.p-re-meter-row__fill {
  height: 100%;
  background: #000;
}

/* Pattern B: Special */
.p-entry-header--special {
  text-align: center;
  margin-bottom: 80px;
}
.p-entry-header__cat {
  display: inline-block;
  border: 1px solid #000;
  padding: 6px 20px;
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 14px;
  margin-bottom: 20px;
}
.p-entry-title--lg {
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: clamp(40px, 8vw, 80px);
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 0 0 40px;
  text-transform: uppercase;
}
.p-entry-eyecatch--full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 500px;
  overflow: hidden;
}
.p-entry-eyecatch--full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pattern C: Work */
.p-entry-header--work {
  background: #f4f4f4;
  padding: 60px 40px;
  text-align: center;
  margin-bottom: 60px;
}
.p-entry-header--work .p-entry-header__meta {
  justify-content: center;
}

/* Content Typography */
.p-entry-content {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 80px;
}
.p-entry-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 60px 0 30px;
  border-bottom: 2px solid #000;
  padding-bottom: 15px;
}
.p-entry-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 20px;
  padding-left: 15px;
  border-left: 4px solid #000;
}
.p-entry-note {
  background: #f9f9f9;
  padding: 30px;
  border: 1px solid #ddd;
  margin: 40px 0;
}
.p-entry-note__title {
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 14px;
  letter-spacing: 0.1em;
  margin: 0 0 15px;
  color: #888;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.p-entry-note p {
  margin: 0;
  font-size: 14px;
}
.p-entry-list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 30px;
  background: #f9f9f9;
  padding: 30px 30px 30px 50px;
}
.p-entry-list li {
  margin-bottom: 10px;
}
.p-dropcap {
  float: left;
  font-size: 80px;
  line-height: 0.8;
  font-weight: 700;
  margin-right: 15px;
  margin-bottom: -10px;
}
.p-entry-figure {
  margin: 60px 0;
}
.p-entry-figure img {
  width: 100%;
  height: auto;
}
.p-entry-figure figcaption {
  font-size: 12px;
  color: #888;
  text-align: center;
  margin-top: 10px;
}
.p-heading-special {
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 60px;
  line-height: 1;
  margin: 100px 0 30px !important;
  border: none !important;
  padding: 0 !important;
}

/* Entry Footer */
.p-entry-footer {
  border-top: 1px solid #eee;
  padding: 40px 0;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.p-entry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.p-entry-tags__label,
.p-entry-share__label {
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 14px;
  margin-right: 10px;
}
.p-entry-tags a {
  font-size: 12px;
  color: #666;
  background: #f4f4f4;
  padding: 6px 12px;
  border-radius: 4px;
  transition: 0.3s;
}
.p-entry-tags a:hover {
  background: #000;
  color: #fff;
}
.p-entry-share {
  display: flex;
  gap: 20px;
  align-items: center;
}
.p-entry-share a {
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 14px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #000;
}

/* Related Posts */
.p-related {
  border-top: 4px solid #000;
  padding-top: 60px;
  margin-bottom: 60px;
}
.p-related__title {
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 24px;
  margin: 0 0 30px;
  letter-spacing: 0.05em;
}
.p-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.p-card-sm {
  background: #fff;
  transition: 0.3s;
}
.p-card-sm:hover {
  opacity: 0.7;
}
.p-card-sm__img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 15px;
  background: #eee;
}
.p-card-sm__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-card-sm__date {
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 12px;
  color: #888;
  display: block;
  margin-bottom: 5px;
}
.p-card-sm__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

/* --- ★ Post Navigation (Design Fix) --- */
.p-post-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* 3カラム (左・中央・右) */
  gap: 20px;
  align-items: center;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 30px 0;
  margin-top: 80px;
}

.p-post-nav__link {
  display: flex;
  flex-direction: column;
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}
.p-post-nav__link:hover {
  opacity: 0.6;
}

/* 英語ラベル (PREV / NEXT) */
.p-post-nav__link span {
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 12px;
  color: #999;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  display: block;
}

/* 左: 前の記事 */
.p-post-nav__link--prev {
  text-align: left;
  align-items: flex-start;
  padding-left: 20px;
  position: relative;
}
/* 矢印 (←) */
.p-post-nav__link--prev::before {
  content: "←";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  font-weight: 300;
}

/* 右: 次の記事 */
.p-post-nav__link--next {
  text-align: right;
  align-items: flex-end;
  padding-right: 20px;
  position: relative;
}
/* 矢印 (→) */
.p-post-nav__link--next::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  font-weight: 300;
}
/* NEXTはspanの順序を入れ替え（デザイン上） */
.p-post-nav__link--next span {
  order: -1; /* 英語を上に */
}

/* 中央: 一覧へ */
.p-post-nav__link--list {
  text-align: center;
  border: 1px solid #000;
  padding: 12px 40px;
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  letter-spacing: 0.1em;
  font-size: 14px;
  min-width: 160px;
  background: #fff;
  transition: 0.3s;
}
.p-post-nav__link--list:hover {
  background: #000;
  color: #fff;
  opacity: 1; /* opacity解除 */
}

/* Responsive */
@media (max-width: 768px) {
  .l-main-single {
    padding-top: calc(var(--header-h) + 20px);
  }
  .c-breadcrumbs ul {
    padding: 0 20px;
    gap: 5px;
  }
  .c-breadcrumbs li {
    font-size: 10px;
  }
  .c-breadcrumbs li:last-child span {
    max-width: 150px;
  }

  .p-re-spec {
    flex-direction: column;
    gap: 30px;
  }
  .p-re-spec__img,
  .p-re-spec__data {
    width: 100%;
  }

  .p-entry-eyecatch--full {
    height: 250px;
  }
  .p-entry-header--work {
    padding: 40px 20px;
  }

  .p-related__grid {
    grid-template-columns: 1fr;
  }

  /* Nav SP: Stack vertical */
  .p-post-nav {
    grid-template-columns: 1fr; /* 1カラム */
    gap: 20px;
    padding: 40px 0;
    text-align: center;
  }
  .p-post-nav__link--prev,
  .p-post-nav__link--next {
    align-items: center;
    text-align: center;
    padding: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
  }
  .p-post-nav__link--prev::before,
  .p-post-nav__link--next::after {
    display: none; /* 矢印アイコン消すか、配置変える */
  }
  .p-post-nav__link--list {
    order: 3; /* 一番下へ */
    width: 100%;
  }
}
/* =========================================
   14. Special (Ranking) Styles - Final Fix V8
   ========================================= */

/* Header (Left Aligned) */
.p-entry-header--special {
  text-align: left;
  margin-bottom: 60px;
  border-bottom: 1px solid #000;
  padding-bottom: 40px;
}
.p-entry-header__meta {
  margin-bottom: 20px;
}
.p-entry-title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}
.p-entry-eyecatch {
  width: 100%;
  height: auto;
  margin-top: 40px;
  margin-bottom: 40px;
  display: block;
}
.p-entry-eyecatch img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* =========================================
   Ranking / Feature Section (Layout Fixed)
   ========================================= */

/* カウンターの初期化 */
.p-rank-section {
  counter-reset: rank-counter;
  margin: 60px 0;
}

.p-rank-item {
  margin-bottom: 80px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 60px;
}
.p-rank-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* --- Header Area (Badge + Title + Subtitle) --- */
.p-rank-item__head {
  display: flex;
  flex-direction: column; /* ★修正: ここを縦並びにする */
  align-items: flex-start;
  gap: 15px; /* タイトル行とサブタイトルの間隔 */
  margin-bottom: 30px;
  padding-bottom: 15px;
  position: relative;
}

/* タイトル本体 (バッジとタイトルの横並び設定) */
.p-rank-item__title {
  display: flex; /* ★追加: バッジと文字を横並びにする */
  align-items: center; /* 垂直中央揃え */
  gap: 20px; /* バッジとタイトルの間隔 */

  font-size: clamp(24px, 4vw, 32px); /* 少し大きく調整 */
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
  border: none;
  padding: 0;
  width: 100%;
}

/* 順位バッジ (CSSカウンターで自動生成) */
.p-rank-item__title::before {
  counter-increment: rank-counter;
  content: counter(rank-counter, decimal-leading-zero); /* 01, 02... */

  background: #000;
  color: #fff;
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 24px;
  line-height: 1;
  width: 60px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; /* 縮小させない */
}

/* サブタイトル (紹介フレーズ) */
.p-rank-item__sub {
  font-size: 14px;
  color: #666;
  font-weight: 700;
  margin: 0; /* 余計なマージン削除 */
  line-height: 1.5;
  padding-left: 0; /* 左揃え */
}

/* --- Body Content --- */
.p-rank-item__body {
  margin-top: 30px;
}

/* Block spacing */
.p-rank-block {
  margin-bottom: 25px;
}

/* 見出し (FEATURE / USER VOICE) */
.p-rank-item__body h3.p-rank-desc__title {
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 14px;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #000;
  padding-bottom: 3px;
  margin: 0 0 10px 0 !important;
  display: inline-block;
  border-left: none !important;
  padding-left: 0 !important;
}

.p-rank-item__body p {
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

/* User Voice */
.p-rank-voice__item {
  background: #f4f4f4;
  padding: 20px;
  border-left: 4px solid #000;
}
.p-rank-voice__text {
  font-size: 14px;
  margin-bottom: 10px !important;
  font-style: italic;
  color: #333;
}
.p-rank-voice__meta {
  font-size: 12px;
  color: #888;
  display: block;
  text-align: right;
  font-weight: 700;
}

/* Editor's Memo */
.p-entry-note {
  background: #fff;
  padding: 20px;
  border: 1px solid #000;
  margin: 30px 0;
}
.p-entry-note__title {
  font-family: var(--font-head) !important;
  font-weight: 400 !important;
  font-size: 12px;
  letter-spacing: 0.1em;
  margin: 0 0 8px;
  color: #000;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}
.p-entry-note p {
  font-size: 13px;
  margin: 0;
}

/* Button */
.p-rank-item__btn {
  text-align: center;
  margin-top: 40px;
}
.p-rank-item__btn .c-btn-border {
  width: 100%;
  max-width: 320px;
  background: #000;
  color: #fff;
  padding: 14px 0;
  display: inline-block;
  text-decoration: none;
  border: 1px solid #000;
  transition: opacity 0.3s;
}
.p-rank-item__btn .c-btn-border:hover {
  opacity: 0.8;
  background: #fff;
  color: #000;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  /* スマホ時は gap を少し詰める */
  .p-rank-item__head {
    gap: 10px;
  }

  .p-rank-item__title {
    font-size: 20px;
    gap: 15px;
  }

  /* バッジサイズ調整 */
  .p-rank-item__title::before {
    width: 45px;
    height: 40px;
    font-size: 20px;
  }

  /* スペック表のレスポンシブ */
  .p-re-spec {
    flex-direction: column;
    gap: 20px;
  }
  .p-re-spec__img,
  .p-re-spec__data {
    width: 100%;
  }
  .p-rank-item__btn .c-btn-border {
    width: 100%;
    max-width: none;
  }
}
/* 特集記事（SPECIAL EDITION）のタイトルを小さく */
.p-mag-card__title {
  font-size: 18px !important; /* 元が大きすぎた場合はここで調整 */
  line-height: 1.5;
}

/* ついでに評価記事（AGENT REVIEW）のタイトルもバランス調整 */
.p-re-info-title {
  font-size: 20px !important;
}
/* =========================================
   スマホ対応: MV画像調整 & MEMOデザイン
   ========================================= */

/* スマホ時: MVスライダー画像を長方形(横長)にする */
@media screen and (max-width: 768px) {
  .p-mv .p-card__img {
    aspect-ratio: 16 / 9; /* 横長（16:9）に固定 */
    height: auto;
  }
  .p-mv .p-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* トリミングして埋める */
  }
}
/* =========================================
   EDITOR'S VOICE (Archive Style)
   ========================================= */
.p-re-comment {
  margin-top: 20px;
  padding: 20px;
  background: #f4f4f4;
  position: relative;
  border-radius: 4px;
}
.p-re-comment__label {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 8px;
  font-family: var(--font-head);
}
.p-re-comment__text {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 0;
}

/* スマホ調整 */
@media screen and (max-width: 768px) {
  .p-re-comment {
    margin-top: 15px;
    padding: 15px;
  }
}

/* =========================================
   Search Result Page
   ========================================= */

.p-search-list {
  margin-top: 30px;
}

.p-search-item {
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 30px;
}
.p-search-item:last-child {
  border-bottom: none;
}

.p-search-item a {
  display: flex;
  gap: 30px;
  text-decoration: none;
  color: #333;
  transition: opacity 0.3s;
}
.p-search-item a:hover {
  opacity: 0.7;
}

/* 画像エリア */
.p-search-item__img {
  width: 240px;
  flex-shrink: 0;
}
.p-search-item__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

/* テキストエリア */
.p-search-item__body {
  flex-grow: 1;
}

.p-search-item__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.p-search-item__cat {
  font-size: 11px;
  font-weight: bold;
  background: #000;
  color: #fff;
  padding: 3px 8px;
  letter-spacing: 0.05em;
}
.p-search-item__date {
  font-size: 12px;
  color: #999;
}

.p-search-item__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
}
.p-search-item__desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* 該当なし (No Result) */
.p-no-result {
  padding: 60px 0;
  text-align: center;
}
.p-no-result__text {
  font-size: 14px;
  margin-bottom: 40px;
}
.p-no-result__form {
  max-width: 400px;
  margin: 0 auto;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .p-search-item a {
    flex-direction: column;
    gap: 15px;
  }
  .p-search-item__img {
    width: 100%;
  }
  .p-search-item__title {
    font-size: 16px;
  }
}
