/* =========================
  1. reset
========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
}

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

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

button {
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}


/* =========================
  2. base
========================= */

html,
body {
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  color: #565656;
  background-color: #fffefd;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.8px;
}

.inner {
  margin: 0 auto;
  padding-inline: 20px;
}

.section_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.section_title h2 {
  text-align: center;
  font-family: "Marcellus", "hiragino-mincho-pron", "Hiragino Mincho ProN", serif;
  font-size: 40px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 3.2px;
}
.section_title p {
  font-family: "Hiragino Kaku Gothic ProN";
  font-weight: 300;
  line-height: normal;
  letter-spacing: 1.6px;
}

a {
  color: #565656;
  opacity: 1;
  transition: opacity 0.3s ease;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

/* =========================
  3. HEADER（完全統一版）
  - PCナビ：明朝
  - SPハンバーガー：shampoo同寸・同挙動（3本線→×）
  - 線色：テキストと同色（currentColor）
  - SPメニュー：右スライド＋ぼかし（shampoo寄せ）
  - SPメニュー文字：昨日のゴシック（inherit）・太さは600
========================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  height: 100px;
  padding: 15px 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

@media screen and (max-width: 767px) {
  .header {
    height: 80px;
  }
}

.header_inner {
  height: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .header_inner {
    padding: 0 20px;
  }
}

.header_logo,
.header_logo a {
  width: fit-content;
}

.header_logo img {
  width: 70px;
  aspect-ratio: 1 / 1;
}

@media screen and (max-width: 767px) {
  .header_logo {
    transform: translateY(-1px);/* shampooに位置合わせる */
  }

  .header_logo img {
    width: 40px;
  }
}
/* ===== PC NAV ===== */
.header_nav {
  width: fit-content;
}

@media screen and (max-width: 767px) {
  .header_nav {
    display: none;
  }
}

.header_nav ul {
  display: flex;
  align-items: center;
  gap: 31px;
}

/* PCは明朝 */
.header_nav ul li a {
  font-family: "hiragino-mincho-pron", "Hiragino Mincho ProN", serif;
  font-size: 15px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.75px;
}

/* ==========================================================
  SP Hamburger（shampoo同寸・同挙動）
  ※色は currentColor（= テキスト色）に追従
========================================================== */
.header_openBtn {
  display: none;
}

@media screen and (max-width: 767px) {
  .header_openBtn {
    display: block;

    /* shampoo同様：fixed + 50x50 + 右上配置 */
    position: fixed;
    z-index: 9999;
    top: 5px;
    right: 10px;
    width: 50px;
    height: 50px;

    cursor: pointer;
    appearance: none;
    background: none;
    border: none;
    padding: 0;

    /* ★三本線/×の色：テキストと同じ */
    color: #333; /* ←ヘッダー文字色に合わせて必要なら変更 */
  }

  .header_openBtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;

    /* shampoo同様 */
    left: 14px;
    height: 3px;
    border-radius: 2px;
    width: 45%;

    /* ★色はテキスト色に追従 */
    background-color: currentColor;
  }

  .header_openBtn span:nth-child(1) { top: 15px; }
  .header_openBtn span:nth-child(2) { top: 23px; }
  .header_openBtn span:nth-child(3) { top: 31px; }

  /* 三本線 → ×（shampoo同挙動） */
  .header_openBtn.is-active span:nth-child(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .header_openBtn.is-active span:nth-child(2) {
    opacity: 0;
  }
  .header_openBtn.is-active span:nth-child(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}

/* ===== SPスクロール固定（メニュー展開中）===== */
body.is-fixed {
  height: 100%;
  overflow: hidden;
}

/* ==========================================================
  SP MENU（右スライド＋ぼかし：shampoo寄せ）
  ※あなたの .drawer / .drawer_nav を使用
========================================================== */
.drawer {
  display: none;
}

@media screen and (max-width: 767px) {
  .drawer {
    display: block;
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    left: auto;
    width: 100%;
    height: 100vh;

    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);

    transition: all 0.3s ease;
  }

  .drawer.is-open {
    right: 0;
  }

  /* shampooの「80px下からメニュー開始」に寄せる */
  .drawer_nav {
    margin-top: 80px;
  }
}

.drawer_nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0; /* shampoo寄せ：gapではなくpaddingで */
}

/* SPメニュー文字：昨日のゴシック（inherit）& 太くしない */
@media screen and (max-width: 767px) {
  .drawer_nav a {
    display: block;
    width: 100%;
    padding: 20px;

    color: #333;
    text-decoration: none;

    /* shampoo寄せ（不要なら消してOK） */
    text-transform: uppercase;
    letter-spacing: 0.1em;

    font-family: inherit;  /* ★SPはゴシック（全体に従う） */
    font-weight: 600;      /* ★太い問題を回避 */
    text-shadow: none;
  }
}

/* =========================
  4. MV（メインビジュアル）
========================= */

.mv {
  margin-top: 100px;
  padding-bottom: 52px;
}
@media screen and (max-width: 767px) {
  .mv {
    margin-top: 80px;
  }
}

.mv_contents {
  position: relative;
}

.mv img {
  width: 100%;
  height: 586px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .mv img {
    height: 300px;
  }
}

.mvSwiper-pagination {
  bottom: -60px !important;
}

.mvSwiper-pagination .swiper-pagination-bullet {
  margin: 0 16px !important;
  width: 10px;
  height: 10px;
  background: #DDDCDB;
  opacity: 1;
}
.mvSwiper-pagination .swiper-pagination-bullet-active {
  background: #565656;
}

.mvSwiper-prev,
.mvSwiper-next {
  color: #FFF;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.6));
}
@media screen and (max-width: 767px) {
  .mvSwiper-prev,
  .mvSwiper-next {
    top: 33%;
  }
}


/* =========================
  5.CONCEPT
========================= */

.concept {
  padding-top: 94px;
  padding-bottom: 96px;
}
@media screen and (max-width: 767px) {
  .concept {
    padding-bottom: 40px;
  }
}

.concept_inner {
  max-width: calc(1120px + 20px * 2);
  position: relative;
}

.concept_contents {
  position: relative;
  z-index: 10;
}

.concept_headScript {
  margin-top: 80px;
}
.concept_headScript p{
  text-align: center;
  font-family: "hiragino-mincho-pron", "Hiragino Mincho ProN", serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 2.15385;
  letter-spacing: 2.6px;
}
@media screen and (max-width: 767px) {
  .concept_headScript p{
    font-size: clamp(1.125rem, 0.767rem + 1.79vw, 1.625rem);
  }
}

.concept_text {
  margin-top: 80px;
}
.concept_text p {
  text-align: center;
  font-family: "Hiragino Kaku Gothic ProN";
  line-height: 3;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 767px) {
  .concept_text p {
    font-size: clamp(0.775rem, 0.614rem + 0.81vw, 1rem);
  }
}

.concept_img {
  position: absolute;
  z-index: 1;
}

.concept_img img {
  border-radius: 16px;
}
@media screen and (max-width: 960px) {
  .concept_img {
    opacity: 0.3;
  }
}

.concept_img--left {
  top: 184px;
  left: 20px;
}
.concept_img--left img {
  width: 235px;
  aspect-ratio: 235 / 315;
}
@media screen and (max-width: 960px) {
  .concept_img--left {
    width: 25.54347%;
  }
  .concept_img--left img {
    width: 100%;
    min-width: calc(235px * 2 / 3);
  }
}

.concept_img--top-right {
  top: 102px;
  right: 20px;
}
.concept_img--top-right img {
  width: 206px;
  aspect-ratio: 206 / 130;
}
@media screen and (max-width: 960px) {
  .concept_img--top-right {
    width: 22.3913%;
    min-width: calc(206px * 2 / 3);
  }
  .concept_img--top-right img {
    width: 100%;
  }
}

.concept_img--bottom-right {
  bottom: -95px;
  right: 103px;
}
.concept_img--bottom-right img {
  width: 182px;
  aspect-ratio: 182 / 226;
}
@media screen and (max-width: 960px) {
  .concept_img--bottom-right {
    width: 19.7826%;
  }
  .concept_img--bottom-right img {
    width: 100%;
    min-width: calc(182px * 2 / 3);
  }
}


/* =========================
  6. LINEUP
========================= */

.lineup {
  padding-top: 140px;
  padding-bottom: 183px;
}

.lineup_inner {
  max-width: calc(1200px + 20px * 2);
}

.lineup_list {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.lineup_row {
  position: relative;
  display: flex;
  align-items: end;
  gap: 78px;
  height: calc(418 / 720 * 50vw);
}
.lineup_row.rowReverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 960px) {
  .lineup_row,
  .lineup_row.rowReverse {
    flex-direction: column;
    align-items: center;
    gap: 60px;
    height: auto;
  }
}

.lineup_num {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 140px;
  line-height: 0.85714;
  font-family: "Marcellus", "hiragino-mincho-pron", "Hiragino Mincho ProN", serif;
  color: #e5ebf1;
}
@media screen and (max-width: 767px) {
  .lineup_num {
    font-size: clamp(5rem, 2.315rem + 13.42vw, 8.75rem);
  }
}

.lineup_media {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 960px) {
  .lineup_media {
    width: 100%;
    height: calc(418 / 720 * (100vw - 20px));
  }
}
.lineup_img {
  position: absolute;
  z-index: 3;
  bottom: 0;
  right: 0;
  width: 50vw;
  height: calc(418 / 720 * 50vw);
}
.lineup_img.lineup_imgRight {
  right: auto;
  left: 0;
}
@media screen and (max-width: 960px) {
  .lineup_img,
  .lineup_img.lineup_imgRight {
    width: calc(100vw - 20px);
    height: calc(418 / 720 * (100vw - 20px));
  }
}
.lineup_img img {
  width: 100%;
  aspect-ratio: 720 / 418;
}
.img_left {
  border-radius: 0 120px 16px 0;
}
@media screen and (max-width: 767px) {
  .img_left {
    border-radius: 0 clamp(5rem, 3.21rem + 8.95vw, 7.5rem) clamp(0.625rem, 0.357rem + 1.34vw, 1rem) 0;
  }
}
.img_right {
  border-radius: 120px 0 0 16px;
}
@media screen and (max-width: 767px) {
  .img_right {
    border-radius: clamp(5rem, 3.21rem + 8.95vw, 7.5rem) 0 0 clamp(0.625rem, 0.357rem + 1.34vw, 1rem);
  }
}

.lineup_content {
  width: calc(50% - 78px);
  padding-bottom: 35px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
@media screen and (max-width: 960px) {
  .lineup_content {
    width: 100%;
    height: auto;
    padding-bottom: 0;
  }
}
.lineup_content.thirdContent {
  padding-bottom: 7px;
}
.content-right{
  margin-right: auto;
}
.content-left{
  margin-left: auto;
}

.lineup_title {
  width: fit-content;
  padding-bottom: 7px;
  border-bottom: 1px solid #DEE5EB;
}
.lineup_title h3 {
  font-family: "Marcellus", "hiragino-mincho-pron", "Hiragino Mincho ProN", serif;
  font-size: 38px;
  line-height: normal;
  letter-spacing: 3.04px;
}
.lineup_title h3 span {
  display: inline-block;
}

.lineup_lead {
  margin-top: 24px;
}


/* =========================
  7. PRODUCTS
========================= */

.products {
  background-color: #EFF3F6;
  padding-top: 104px;
  padding-bottom: 158px;
}

.products_inner {
  max-width: calc(1240px + 20px * 2);
}

.products_lead {
  max-width: 690px;
  margin: 56px auto;
  text-align: center;
}
.products_lead p {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .products_lead p {
    font-size: 13px;
  }
}
.products_lead p .lineBreak {
  display: none;
}
@media screen and (max-width: 767px) {
  .products_lead p .lineBreak {
    display: block;
  }
}

.products_grid{
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  align-items: start;
}

@media screen and (max-width: 1024px){
  .products_grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* SPは1列 */
@media screen and (max-width: 767px){
  .products_grid{
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

.products_thumb img{
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
}

.products_name-ja {
  margin-top: 20px;
}
.products_name-ja h3 {
  font-family: "Hiragino Kaku Gothic ProN";
  font-size: 19px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.95px;
}
@media screen and (max-width: 767px) {
  .products_name-ja h3 {
    font-size: 16px;
  }
}

.products_name-en {
  margin-top: 8px;
  margin-bottom: 16px;
}
.products_name-en p {
  font-family: "Marcellus", "hiragino-mincho-pron", "Hiragino Mincho ProN", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.12px;
}

@media screen and (max-width: 767px) {
  .products_text {
    font-size: 13px;
  }
}


/* =========================
  8. COMPANY
========================= */

.company {
  padding-top: 105px;
  padding-bottom: 160px;
}

.company_inner {
  max-width: calc(938px + 20px * 2);
}

.company .section_head {
  margin-bottom: 56px;
}

.company_table {
  margin-top: 63px;
  width: 100%;
  border-collapse: collapse;
}

.company_row th,
.company_row td {
  padding-top: 29px;
  padding-bottom: 27px;
}

.company_row th {
  width: 200px;
  padding-left: 8px;
  text-align: left;
  border-bottom: 2px solid rgba(86, 86, 86, 0.80);
  font-family: "Hiragino Kaku Gothic ProN";
  font-weight: 600;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .company_row th {
    width: 100px;
    padding-left: 0;
  }
}

.company_row td {
  border-bottom: 1px solid rgba(86, 86, 86, 0.35);
  padding-left: 80px;
  padding-right: 10px;
  font-family: "Hiragino Kaku Gothic ProN";
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .company_row td {
    padding-left: 0;
    padding-right: 0;
  }
}

/* =========================
  9. FOOTER
========================= */

.footer {
  padding-top: 40px;
  padding-bottom: 10px;
  background-color: #F4F6F8;
}

.footer_inner {
  padding-inline: 40px;
}

.footer_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .footer_content {
    flex-direction: column;
    gap: 40px;
  }
}

.footer_logo {
  width: fit-content;
}
.footer_logo img {
  width: 188px;
  aspect-ratio: 188 / 52;
}

.footer_nav .footer_list {
  display: flex;
  gap: 31px;
}
@media screen and (max-width: 767px) {
  .footer_nav .footer_list {
    flex-direction: column;
    align-items: center;
  }
}

.footer_item a {
  font-family: "Marcellus", "hiragino-mincho-pron", "Hiragino Mincho ProN", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.9px;
}

.footer_copy {
  margin-top: 71px;
  text-align: center;
}
.footer_copy small {
  font-family: "Marcellus", "hiragino-mincho-pron", "Hiragino Mincho ProN", serif;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.65px;
}

/* =========================
  NEWS
========================= */

.news {
  padding: 60px 0 80px;
}

.news_inner {
  max-width: 900px;
  text-align: left;            /* 記事は左寄せ */
}

/* タイトルだけ中央 */
.news_title {
  text-align: center;
  font-family: "Marcellus", "hiragino-mincho-pron", serif;
  font-size: 40px;
  letter-spacing: 3px;
}

.news_list {
  margin: 32px auto 0;     /* ← 中央寄せ */
  max-width: 720px;        /* ← 見せたい幅 */
  width: 100%;

  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news_item {
  display: grid;
  grid-template-columns: 120px 1fr;
  column-gap: 20px;
  align-items: center;

  text-align: left;
  font-size: 14px;
  letter-spacing: 0.8px;
}

.news_date {
  text-align: right;
  color: #777;
  font-feature-settings: "pnum";
}

.news_text {
  justify-self: start;          /* ← グリッドセル左寄せ＆幅を文字基準に */
  display: inline-block;        /* ← 文字幅だけを持つ */
  line-height: 1.4;
  color: #565656;
  border-bottom: 1px solid rgba(86, 86, 86, 0.3);
}

.news_text:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .news_item {
    grid-template-columns: 1fr;   /* ← 1カラムに */
    row-gap: 4px;                 /* 日付とタイトルの間 */
    font-size: 13px;              /* 少しだけ詰めるなら */
  }

  .news_date {
    text-align: left;             /* SPは左寄せが自然 */
    font-size: 12px;
  }

  .news_text {
    line-height: 1.5;
  }
}

/* =========================
  NEWS ARCHIVE（一覧ページ）
========================= */

.news-archive {
  padding: 140px 0 120px; /* header fixed なので上に余白 */
}

.news-archive_inner {
  max-width: calc(900px + 20px * 2);
  text-align: center; /* タイトルだけ中央のままでOK */
}

.news-archive_title {
  font-family: "Marcellus", "hiragino-mincho-pron", serif;
  font-size: 48px;
  letter-spacing: 4px;
  line-height: 1.2;
}

.news-archive_list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* 行ブロック（ブロック自体は中央配置／中身は左揃え） */
.news-archive_item {
  width: 720px;       /* ← ここが肝：固定幅で“中央に見える”問題を防ぐ */
  max-width: 100%;
  margin: 0 auto;     /* ← ブロックを中央へ */

  display: grid;
  grid-template-columns: 140px 1fr;
  column-gap: 40px;
  align-items: baseline;

  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(86, 86, 86, 0.45);
}

/* 日付 */
.news-archive_date {
  text-align: right;
  color: rgba(86, 86, 86, 0.7);
  font-feature-settings: "pnum";
  line-height: 1.4;
}

/* タイトル（下線はテキストの下だけ／ブロック内は左揃え） */
.news-archive_link {
  justify-self: start; /* グリッド内で左寄せ固定 */
  display: inline;
  color: #565656;
  line-height: 1.6;

  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em; /* 下線を近づける */
  text-decoration-color: rgba(86, 86, 86, 0.35);
}

.news-archive_link:hover {
  opacity: 0.7;
}

/* 戻るリンク */
.news-archive_back {
  margin-top: 80px;
  text-align: center;
}

.news-archive_back a {
  display: inline-block;
  color: #565656;
  transition: opacity 0.3s ease;
}

.news-archive_back a:hover {
  opacity: 0.8;
}

/* =========================
  SP
========================= */
@media screen and (max-width: 767px) {
  .news-archive {
    padding: 110px 0 90px;
  }

  .news-archive_title {
    font-size: 34px;
    letter-spacing: 3px;
  }

  .news-archive_list {
    margin-top: 40px;
    gap: 20px;
  }

  .news-archive_item {
    grid-template-columns: 1fr;
    row-gap: 8px;
    padding-bottom: 14px;
  }

  .news-archive_date {
    text-align: left;
  }

  .news-archive_link {
    font-size: 15px;
  }

  .news-archive_back {
    margin-top: 60px;
  }
}

/* =========================
  NEWS ARTICLE（記事詳細ページ）
========================= */

.news-article{
  /* header が fixed(高さ100px)なので、その分だけ上を空ける */
  padding: 110px 0 110px;
}

@media screen and (max-width: 767px){
  .news-article{
    /* SPは header 高さ80px */
    padding: 110px 0 90px;
  }
}

/* 中央に寄せるのは「コンテンツ枠」だけ。文章は左揃え */
.news-article_inner{
  max-width: 920px;
  margin: 0 auto;
}

/* セクション見出し（NEWS） */
.news-article_sectionTitle{
  text-align: center;
  font-family: "Marcellus","hiragino-mincho-pron","Hiragino Mincho ProN",serif;
  font-size: 44px;
  letter-spacing: 5px;
  line-height: 1;
}

@media screen and (max-width: 767px){
  .news-article_sectionTitle{
    font-size: 34px;
    letter-spacing: 4px;
  }
}

/* 記事ヘッダー（タイトル＋日付） */
.news-article_head{
  margin-top: 70px;
}

@media screen and (max-width: 767px){
  .news-article_head{
    margin-top: 46px;
  }
}

.news-article_title{
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1.2px;
  line-height: 1.8;
}

@media screen and (max-width: 767px){
  .news-article_title{
    font-size: 18px;
  }
}

.news-article_date{
  margin-top: 10px;
  display: inline-block;
  color: rgba(86, 86, 86, 0.55);
  font-size: 14px;
  letter-spacing: 0.8px;
}

/* 本文 */
.news-article_body{
  margin-top: 52px;
  line-height: 2.2;
  letter-spacing: 0.8px;
  font-size: 16px;
}

@media screen and (max-width: 767px){
  .news-article_body{
    margin-top: 36px;
    font-size: 15px;
    line-height: 2.1;
  }
}

/* p の余白（読みやすさ） */
.news-article_body p{
  margin-top: 22px;
}

.news-article_body p:first-child{
  margin-top: 0;
}

/* 箇条書き */
.news-article_body ul{
  margin-top: 22px;
  padding-left: 1.2em;
  list-style: disc;
}

.news-article_body li{
  margin-top: 10px;
}

/* 見出しを本文内で使う場合 */
.news-article_body h3{
  margin-top: 42px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.7;
}

@media screen and (max-width: 767px){
  .news-article_body h3{
    margin-top: 32px;
    font-size: 16px;
  }
}

/* 本文内リンク（下線を近づける：テキスト幅だけ） */
.news-article_body a{
  color: #565656;
  text-decoration: none;
  border-bottom: 1px solid rgba(86,86,86,0.35);
  padding-bottom: 0.05em; /* 下線を文字に近づける */
}

.news-article_body a:hover{
  opacity: 0.75;
}

/* 下部ナビ（一覧へ戻る / トップへ戻る） */
.news-article_nav{
  margin-top: 80px;
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.news-article_nav a{
  font-size: 14px;
  letter-spacing: 0.8px;
  border-bottom: 1px solid rgba(86,86,86,0.35);
  padding-bottom: 0.05em;
}

.news-article_nav a:hover{
  opacity: 0.75;
}

/* NEWS と 記事タイトルの間 */
.news-article_meta{
  margin-top: 40px;  /* ← ここを調整 */
}

@media screen and (max-width: 767px){
  .news-article_meta{
    margin-top: 28px;
  }
}

/* =========================
  Sticky Footer（短いページでもフッターを最下部へ）
========================= */

html, body{
  height: 100%;
}

body{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* main が余った高さを受け持つ */
main{
  flex: 1;
}

/* 念のため（mainにflexが効かないケース回避） */
.footer{
  margin-top: auto;
}


/* =========================
  PRODUCTS PAGE（/products/）
========================= */

/* fixed header分の上余白をここで確保（NEWS一覧と同じ感覚） */
.products-page{
  padding: 140px 0 120px;
  background: #fff;
}

@media screen and (max-width: 767px){
  .products-page{
    padding: 110px 0 90px;
  }
}

.products-page_inner{
  max-width: 1100px;
  margin: 0 auto;
}

/* 見出し */
.products-page_head{
  text-align: center;
}

.products-page_title{
  font-family: "Marcellus","hiragino-mincho-pron","Hiragino Mincho ProN",serif;
  font-size: 48px;
  letter-spacing: 4px;
  line-height: 1.2;
}

.products-page_caption{
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: 1px;
  color: rgba(86, 86, 86, 0.8);
}

@media screen and (max-width: 767px){
  .products-page_title{
    font-size: 34px;
    letter-spacing: 3px;
  }
  .products-page_caption{
    margin-top: 8px;
    font-size: 13px;
  }
}

/* リード文 */
.products-page_lead{
  margin-top: 38px;
  line-height: 2.2;
  letter-spacing: 0.8px;
  font-size: 15px;
  color: #565656;
}

@media screen and (max-width: 767px){
  .products-page_lead{
    margin-top: 26px;
    font-size: 14px;
    line-height: 2.1;
  }
  .products-page_lead br{
    display: none; /* SPは自然改行に任せる */
  }
}

/* グリッド：トップと同じ「縮むと2→1」挙動 */
.products-page_grid{
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 40px;
  align-items: start;
}

@media screen and (max-width: 1024px){
  .products-page_grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px){
  .products-page_grid{
    margin-top: 46px;
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

/* カード */
.products-page_card{
  min-width: 0;
}

.products-page_link{
  display: block;
  color: #565656;
  text-decoration: none;
}

.products-page_link:hover{
  opacity: 0.8;
}

.products-page_thumb{
  border-radius: 18px;
  overflow: hidden;
}

.products-page_thumb img{
  width: 100%;
  height: auto;
  display: block;
}

/* テキスト */
.products-page_name{
  margin-top: 16px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.6px;
  line-height: 1.6;
}

.products-page_en{
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.8;
}

.products-page_desc{
  margin-top: 10px;
  font-size: 13px;
  line-height: 2.0;
  letter-spacing: 0.6px;
}

/* フッター直前の“変な空き”が出る場合の保険 */
.products-page{
  margin-bottom: 0;
}

/* =========================
  COMPANY PAGE（/company/）
  - 見出し位置は news / products と同じ
========================= */

.company-page{
  padding: 140px 0 120px; /* fixed header 分 */
  background: #fff;
}

@media screen and (max-width: 767px){
  .company-page{
    padding: 110px 0 90px;
  }
}

.company-page_inner{
  max-width: 1100px; /* スクショの余白感に寄せる */
  margin: 0 auto;
}

/* 見出し */
.company-page_head{
  text-align: center;
}

.company-page_title{
  font-family: "Marcellus","hiragino-mincho-pron","Hiragino Mincho ProN",serif;
  font-size: 48px;
  letter-spacing: 4px;
  line-height: 1.2;
  color: #565656;
}

.company-page_sub{
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: 1px;
  color: rgba(86,86,86,0.8);
}

@media screen and (max-width: 767px){
  .company-page_title{
    font-size: 34px;
    letter-spacing: 3px;
  }
  .company-page_sub{
    margin-top: 8px;
    font-size: 13px;
  }
}

/* テーブル */
.company-page_table{
  width: 100%;
  border-collapse: collapse;
  margin-top: 70px; /* スクショの「見出し→表」間隔 */
}

@media screen and (max-width: 767px){
  .company-page_table{
    margin-top: 46px;
  }
}

.company-page_row th,
.company-page_row td{
  padding: 28px 0;
  vertical-align: top;
}

/* 左列 */
.company-page_row th{
  width: 220px;
  text-align: left;
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 600;
  line-height: 1.9;
  border-bottom: 2px solid rgba(86,86,86,0.8);
}

/* 右列 */
.company-page_row td{
  padding-left: 80px;
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 2.1;
  border-bottom: 1px solid rgba(86,86,86,0.35);
}

@media screen and (max-width: 767px){
  .company-page_row th{
    width: 110px;
  }
  .company-page_row td{
    padding-left: 18px; /* SPは詰める */
  }
}

/* =========================
  PROJECT PAGE
========================= */

.project-page{
  padding: 140px 0 120px;
}

@media screen and (max-width: 767px){
  .project-page{
    padding: 110px 0 90px;
  }
}

.project-page_inner{
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: 20px;
}

/* ===== 見出し ===== */
.project-page_head{
  text-align: center;
}

.project-page_title{
  font-family: "hiragino-mincho-pron","Hiragino Mincho ProN",serif;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 2.4px;
  line-height: 1.4;
}

@media screen and (max-width: 767px){
  .project-page_title{
    font-size: 26px;
    letter-spacing: 1.6px;
  }
}

/* ===== 上段レイアウト ===== */
.project-page_intro{
  margin-top: 70px;
  display: grid;
  grid-template-columns: 420px 1fr;
  column-gap: 70px;
  align-items: center;
}

@media screen and (max-width: 1024px){
  .project-page_intro{
    grid-template-columns: 340px 1fr;
    column-gap: 50px;
  }
}

@media screen and (max-width: 767px){
  .project-page_intro{
    margin-top: 46px;
    grid-template-columns: 1fr;
    row-gap: 26px;
  }
}

/* ===== ロゴ ===== */
.project-page_mark{
  display: flex;
  justify-content: center;
}

.project-page_mark img{
  width: 320px;
  max-width: 100%;
  height: auto;
  opacity: 0.9;
}

@media screen and (max-width: 767px){
  .project-page_mark img{
    width: 240px;
  }
}

/* ===== 3つの理念 ===== */
.project-page_points{
  list-style: none;
  padding-left: 0;
  counter-reset: project;
}

.project-page_points li{
  counter-increment: project;
  position: relative;
  padding-left: 2.4em;
  font-family: "hiragino-mincho-pron","Hiragino Mincho ProN",serif;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 1.2px;
  color: rgba(86,86,86,0.75);
}

.project-page_points li::before{
  content: counter(project) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Marcellus", serif;
  color: rgba(180,160,120,0.8);
}

/* ===== 本文 ===== */
.project-page_body{
  margin-top: 30px;
}

.project-page_body p{
  margin-top: 18px;
  line-height: 2.1;
}

/* ===== 動画 ===== */
.project-page_movie{
  margin-top: 80px;
}

.project-page_movieFrame{
  position: relative;
  padding-top: 56.25%;
}

.project-page_movieFrame iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* =========================
  PRIVACY POLICY
========================= */

.privacy-page {
  padding: 140px 0 120px; /* header fixed 分 */
  background: #fff;
}

@media screen and (max-width: 767px) {
  .privacy-page {
    padding: 110px 0 90px;
  }
}

.privacy-page_inner {
  max-width: 920px;
  margin: 0 auto;
  padding-inline: 20px;
}

/* 見出し（news / products と共通思想） */
.page_head {
  text-align: center;
}

.page_title {
  font-family: "Marcellus", "hiragino-mincho-pron", "Hiragino Mincho ProN", serif;
  font-size: 48px;
  letter-spacing: 4px;
  line-height: 1.2;
}

.page_caption {
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 1.2px;
  color: rgba(86, 86, 86, 0.8);
}

@media screen and (max-width: 767px) {
  .page_title {
    font-size: 34px;
    letter-spacing: 3px;
  }
  .page_caption {
    font-size: 13px;
  }
}

/* 本文 */
.privacy-content {
  margin-top: 56px;
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: 0.8px;
  color: #565656;
}

@media screen and (max-width: 767px) {
  .privacy-content {
    margin-top: 40px;
    font-size: 14px;
    line-height: 2.1;
  }
}

.privacy-content p {
  margin-top: 22px;
}

.privacy-content p:first-child {
  margin-top: 0;
}

.privacy-content h3 {
  margin-top: 48px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
}

@media screen and (max-width: 767px) {
  .privacy-content h3 {
    margin-top: 36px;
    font-size: 16px;
  }
}

.privacy-content ul {
  margin-top: 18px;
  padding-left: 1.2em;
  list-style: disc;
}

.privacy-content li {
  margin-top: 8px;
}
