@charset "UTF-8";
/*
Theme Name: ルシェノンコーポレートサイト
Description: 株式会社ルシェノンのコーポレートサイトです
Version: 1.0
Author: yoshino tenko
*/
html {
  overflow-y: scroll;
  scroll-behavior: smooth;
}
:root{
  --text:#333;
  --muted:#666;
  --line:#cfcfcf;
  --bg:#fff;
  --card:#fff;
  --main:#444;
  --shadow: 0 10px 24px rgba(0,0,0,.08);
  --radius: 14px;
  --radius-lg: 18px;
}
/* ===================== リセット ===================== */
body {
  margin: 0;
  padding: 0;
  color:var(--text);
  font-size: 16px;
  font-weight: 700;
  font-family: "Zen Old Mincho", "Zen Old Mincho","游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.6;
  background: #F7F7F7;
}
body a {
  color: #333;
  text-decoration: none;
}
body p {
  margin: 0;
}
.pc-none {
  display: none;
}
.sp-block {
    display: none;
}
/* ふわっと表示 */
.fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: 1s;
}

.fadein.scrollin {
  opacity: 1;
  transform: translateY(0);
}
/* ヘッダー */
.logo {
  width: 100px;
}
.logo img{
	width: 100%;
	height: auto;
}
/* ===================== ハンバーガーメニュー ===================== */
.fix_menu {
  position: fixed;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  padding: 16px 40px;
  z-index: 1000;
  align-items: center;
  box-sizing: border-box;
}
.header_menu{
  font-size: 14px;
	display: flex;
  list-style: none;
  gap: 2vw;
  margin: 0;
  padding: 0;
  align-items: center;
}
.header_menu li {
  border-bottom: 2px var(--bg) solid;
}
.header_menu li:hover {
  border-bottom: 2px var(--main) solid;
  transform: scale(1, 1);
}
ul,li{
	list-style: none;
	margin: 0;
  padding: 0;
}

#switch{
	display: none;
}
.main p{
	padding: 500px 0;
	text-align: center;
}
/* ===================== ボタン ===================== */
.btn-center {
  text-align: center;
}
.btn--contact,.btn--individual {
  position: relative;
  padding-left: 36px!important;
}
.btn--contact::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url('../lechainon/images/grommet-icons_mail.png');
  background-size: contain;
  background-repeat: no-repeat;
}
.btn--individual::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url('../lechainon/images/icon-park-solid_people.png');
  background-size: contain;
  background-repeat: no-repeat;
}

.header__buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  white-space: nowrap;
}
.btn--big {
  display: inline-block;
  padding: 20px 24px;
  border-radius: 100px !important;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s;
  width: 300px;
  height: 72px;
}
.btn--support {
  width: 50%;
  padding: 20px 16px !important;
}
/* 横並びのボタンへのスタイル */
.btn_twins {
  display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.btn--basic {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main);
  color: #fff;
  padding: 12px 16px;
  border-radius: 30px;
  border: var(--main) 1px solid;
  line-height: 1.2;
}
.btn--service {
  width: 90%;
}

.btn--basic::after {
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
}
.btn--medium {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main);
  color: #fff;
  padding: 24px 56px;
  border-radius: 50px;
  border: #444 1px solid;
  line-height: 1.2;
}
.btn--medium::after {
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
}
/* ------------- hover時の反転 + 矢印右スライド ------------- */
.btn--basic:hover {
  background-color: #fff;      /* 背景を白に */
  color: var(--main);            /* 文字色反転 */
  border-color: var(--main);      /* ボーダー維持 */
}
.btn--medium:hover {
  background-color: #fff;      /* 背景を白に */
  color: var(--main);             /* 文字色反転 */
  border-color: var(--main);        /* ボーダー維持 */
}

.btn--basic:hover::after {
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid var(--main);
    border-right: 2px solid var(--main);
    content: '';
}
.btn--medium:hover::after {
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid var(--main);
    border-right: 2px solid var(--main);
    content: '';
}
.btn--primary {
  background-color: var(--main);
  color: #fff!important;
  padding: 16px;
  border-radius: 30px;
  border: var(--main) 1px solid;
}

.btn--primary:hover {
  background-color: #fff;
  color: var(--main)!important;
  border: var(--main) 1px solid;
}

.btn--secondary {
  background-color: var(--main);
  color: #fff!important;
  padding: 16px;
  border-radius: 30px;
  border: var(--main) 1px solid;
}

.btn--secondary:hover {
  background-color: #fff;
  color: var(--main)!important;
  border: var(--main) 1px solid;
}

/* ===================== TOPイントロ ===================== */
.title {
  margin-bottom: 32px;
}
.about {
  padding: 100px 0 0;
}
.intro_inner {
  max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 3vw, 32px);
}
.about__top {
  text-align: center;
  padding: 100px 0 72px 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 32px) 72px;
}
.about__grid{
  display: grid;
  grid-template-columns: 1fr 1fr; /* 左右2カラム */
  gap: 48px; /* カラム間の余白 */
  margin-top: 56px;
  align-items: start; /* 上揃え */
}
.value__title {
  margin: 0 0 8px;
  font-size: 24px;
  padding-left: 20px;
  position: relative;
}
.value__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--main);
}
.value__desc {
  padding-bottom: 20px;
}
.about__lead {
  text-align: center;
  line-height: 2;
  margin-bottom: 32px;
}
.mini-card{
  width: min(320px, 100%);
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow:hidden;
  display:grid;
  grid-template-columns:100px 1fr;
  min-height:70px;
}

.mini-card__thumb{
  background:#e6e6e6;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  text-align:center;
}
.mini-card__thumb img {
  width: 100%;
}
.mini-card__body{
  padding:14px 16px;
  display:flex;
  align-items:center;
  justify-content: space-between;
}

.mini-card__label{
  font-size:12px;
  letter-spacing:.06em;
}

/* 右側リスト */
.value-list{
  margin:0;
  padding:0;
  list-style:none;
}

.value{
  padding: 4px 0 26px;
  border-bottom: 1px solid var(--line);
}

.value + .value{
  padding-top: 26px;
}
/* ===================== 下層メインビジュアル ===================== */
.section_mv_sub-page {
  background-image: url('../lechainon/images/mv_sub-page.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.sub-page-ttl {
  max-width: 1200px;
  margin: 0 auto;
  padding: 180px 20px 0 20px;
}
.notfound_section {
  text-align: center;
}
.notfound_section_title_jp {
  text-align: center;
  margin: 0 20px 20px 20px;
}
.notfound_section_title {
  
   font-size: 72px;
    font-family: "League Spartan", sans-serif;
    font-weight: 500;
    color: var(--main);
    text-align: center;
    margin: 0 20px 16px 0;
}
.sub-page_section_title {
    margin: 0 0 6px 0;
     font-size: 72px;
  font-family: "Marcellus", serif;
  letter-spacing: 1px;
  font-weight: 500;
  color: #444;
}
.sub-page_section_title_jp {
  font-size: 24px;
    margin: 0;
    padding-left: 20px;
    display: inline-block;
    position: relative;
}
.sub-page_section_title_jp::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--main); /* 好きな色に変更可能（例：ブランドカラー） */
}
/* ===================== メインビジュアル ===================== */

/* トップページ */
.section_mv_all .mainInner {
  height: 100vh;
}
/* 下から出るアニメーション */
@keyframes showTextFromBottom {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* 塊（①②③）の外側 */
.textanimation .chunk {
  display: block;
  overflow: hidden; /* 下から出るのを隠す */
}

/* 動く本体 */
.textanimation .chunk-inner {
  display: inline-block;
  opacity: 0;
  animation: showTextFromBottom 0.6s forwards;
}

/* ===================== 無限ループ ===================== */
@keyframes infinity-scroll-left {
from {
  transform: translateX(0);
}
  to {
  transform: translateX(-100%);
}
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
  gap:20px;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 20px;
}

.scroll-infinity__list--left {
  animation: infinity-scroll-left 25s infinite linear 0.5s both;
}
.scroll-infinity__item {
  width: calc(100vw / 6);
}
.scroll-infinity__item>img {
  width: 100%;
  border-radius: 10px;
}

/* 共通セクション */
.section_all {
  padding-top: 80px;
  padding-bottom: 100px;
}
/* 会社概要セクション */
.section_top_company {
  background-color: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
}
/* 大見出しへのスタイル */
.section_title {
  font-size: 72px;
  font-family: "Marcellus", serif;
  letter-spacing: 1px;
  font-weight: 500;
  margin: 0;
  color: #444;
}
.section_title_white {
  font-size: 72px;
  font-family: "Marcellus", serif;
  font-weight: 500;
  margin: 0 0 6px 0;
  color: #fff;
}
.section_title_jp {
  font-size: 20px;
  margin: 0;
  padding-left: 20px;
  display: inline-block;
  position: relative;
}
.section_title_jp::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--main);
}
.section_title_jp_w {
  color: #fff;
  padding-left: 20px;
}
.section_title_jp_w {
  position: relative;
  padding-left: 24px; /* 余白は必要に応じて */
}
.section_title_jp_w::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--bg);
}
.section_title_history {
  padding-top: 40px;
}

.btn-wrapper {
  text-align: right;
}
/* 事業内容 */
.service_inner,.about_inner,.pressrelease_inner,.contact_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 32px);
}
.about_inner {
  display: flex;
  align-items: center;
}
.about_inner img {
  width: 100%;
}
.about_text {
  margin-right: 4vh;
}
.about_text_p {
  line-height: 2;
  margin-bottom: 24px;
}
.about__photo img {
  width: 100%;
}
/* プレスリリース */
.pressrelease_all {
  background-color: #747474;
  border-radius: 100px 100px 0 0;
}
.pressrelease_inner {
  padding-top: 104px;
  padding-bottom: 104px;
}
.press--btn {
  text-align: center;
}
.btn--big {
  margin: 0 auto;
  text-align: center;

}
.press {
  background: #fafafa;
  padding: 100px 0;
}

.press .inner {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
}

.press_list {
  list-style: none;
  margin: 40px 0;
  padding: 0;
  border-top: 1px solid #ddd;
}

.press_item {
  border-bottom: 1px solid #ddd;
  transition: background 0.3s;
}

.press_item a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 40px 10px;
  color: #fff;
  text-decoration: none;
}

.press_item:hover {
  background: #555;
}

.press_date {
  font-size: 0.9rem;
  color: #fff;
  min-width: 90px;
}

.press_label {
  width: 80px;
  background: #fff;
  color: #444;
  font-size: 0.8rem;
  padding: 3px 8px;
  white-space: nowrap;
  text-align: center;
}

.press_text {
  font-size: 1rem;
  flex: 1;
}

/* skill */
.service_all {
  display: flex;
  justify-content: space-between;
  padding: 0;
  /* flex-wrap: wrap; */
  GAP:20PX
}
.service_container ul {
  display: flex;
}
.service_container {
  text-align: center;
  width: clamp(270px, 17vw, 420px);
  background-color: #FFF;
  }
.service_container:last-child {
  margin-right: 0px;
}
.service_container img {
  width: 100%;
}
.service_container p {
  text-align: left;
  line-height: 1.6;
}
.service_text {
  padding: 20px;
}
.service_text p {
  padding-bottom: 16px;
}
.service_ttl {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
  padding-bottom: 12px;
}

footer.footer {
  background: #fff;
  border-top: 1px solid #eee;
  padding: 40px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-left .footer-logo {
  width: 120px; /* お好みでOK */
  height: auto;
}

.footer-right {
  text-align: right;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  display: flex;
  gap: 25px;
  font-size: 14px;
}

.footer-nav li a {
  text-decoration: none;
  color: #000;
}

.footer-privacy a {
  font-size: 13px;
  color: #000;
  text-decoration: none;
}

.footer-copy {
  font-size: 12px;
  color: #555;
  margin-top: 16px;
}


/* トップに戻る */
.btn_up {
  font-size: 60px;
  display: flex;
  justify-content: end;
  color: #e29084;
}

/* contact */
.contact_all {
  background-image:url('../lechainon/images/contact_bg.jpg');
  background-size: cover;        /* 全体に拡大して表示 */
  background-position: center;   /* 中央寄せ */
  background-repeat: no-repeat;  /* 繰り返さない */
  height: 420px;
}
.contact_inner {
  display: flex;
  justify-content: space-between;
  align-items: center; /* 高さを揃えたい場合 */
  padding-top: 104px;
  padding-bottom: 104px;
}

.contact_text p {
  color: #fff;
}
.contact_cta {
  text-align: center;
}
/* ===================== 独立開業支援 ===================== */
/* カード全体の並び（親がflexの場合） */
.startup-list {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin: 0 auto;
  max-width: 1100px;
}

/* カード本体 */
.startup-card {
  width: 100%;
}
.startup-card__img img {
  width: 100%;
}

/* タイトル */
.startup-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 18px 0 10px;
}

/* 説明文 */
.startup-card .desc {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}
/* ===================== 会社概要 ===================== */
/* 会社概要エリア */
.company-info {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 120px;
}

/* 左側：画像2枚 */
.company-info__images {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.company-info__images img {
  width: 100%;
  border-radius: 0px;
  object-fit: cover;
}

/* 右側：会社情報テーブル */
.company-info__table {
  width: 55%;
}

.company-info__table dl {
  display: grid;
  grid-template-columns: 140px 1fr;
  row-gap: 30px;
}

.company-info__table dt {
  font-weight: 600;
  color: var(--main);
  font-size: 15px;
  border-bottom: solid 1px #D9D9D9;
  padding-bottom: 30px;
}

.company-info__table dd {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  border-bottom: solid 1px #D9D9D9;
  padding-bottom: 30px;
      margin-left: 0px;
}

/* ---- 下層ページカード ---- */
.lower-links {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.lower-links .card {
  background: #fff;
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: 0.2s;
  display: flex;
 align-items: center;
}

.lower-links .card:hover {
  transform: translateY(-4px);
}

.lower-links .card img {
  width: 50%;
  border-radius: 8px 0 0 8px;
}

.lower-links .card p {
  font-size: 16px;
  font-weight: 600;
  color: var(--main);
}

/* → アイコン部分（円＋矢印） */
.mini-card__body .arrow {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--main);
  position: relative;
}
.mini-card__body .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 45%;
  width: 4px;
  height: 4px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.lower-links .arrow {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #1b2d4a;
  position: relative;
}

.lower-links_card_txt {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 20px;
}

.lower-links .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 42%;
  width: 5px;
  height: 5px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ===================== 企業理念 ===================== */
.philosophy {
  padding: 80px 20px;
}
.section_philosophy {
  padding-top: 64px;
  padding-bottom: 100px;
}
.philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--main);
  margin: 0;
}

.philosophy-label .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--main);
}

.philosophy-title {
  font-size: 40px;
  line-height: 1.5;
  font-weight: 500;
  margin-top: 16px;
  margin-bottom: 24px;
}

.philosophy-sub {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 32px;
}

.philosophy-text {
  font-size: 18px;
  line-height: 2;
}
/* ===================== お問い合わせ ===================== */
.form-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-sizing: border-box;
  }

  label {
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
  }
  /* 必須 */
  .required {
    font-size: 11px;
    color: #fff;
    background: #D9534F;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    margin-bottom: 10px;
  }
  /* 入力画面のみ */
  /* ラベル全体 */
.form-label {
	flex-direction: column;
	gap: 6px;
}

/* 見出し部分だけ横並び */
.label-text {
	display: inline-flex;
	align-items: center;
	font-weight: 600;
}

/* 必須表示 */
.form-wrapper .label-text::after {
	content: "必須";
	font-size: 11px;
    color: #fff;
    background: #D9534F;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
}

/* 確認画面では必須を消す */
.wpcf7-confirm .label-text::after {
	display: none;
}


  input, select, textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #E2E5EA;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    background: #fafafa;
  }

  textarea {
    height: 160px;
    resize: vertical;
  }

  .checkbox-area {
    margin: 40px 0 20px;
    text-align: center;
    font-size: 14px;
  }

  .checkbox-area input {
    transform: scale(1.2);
    margin-right: 6px;
    width: 20px;
  }

  .checkbox-area label {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
  }

  .btn-submit {
    display: block;
    width: 200px;
    margin: 0 auto;
    padding: 12px;
    text-align: center;
    background: var(--main);
    color: #fff;
    font-size: 15px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
  }

  .btn-submit:hover {
    opacity: 0.8;
  }

  .form-item {
    margin-bottom: 20px;
  }
  .contact_select {
    width: 200px;
  }
#wpcf7cpcnf th p {
    text-align: left;
  } 
  .wpcf7cp-btns {
    display: flex;
    width: 50%;
    margin: 0 auto;
  }
  .wpcf7cp-btns button {
    display: block;
    width: 200px;
    padding: 12px;
    text-align: center;
    background: var(--main);
    color: #fff;
    font-size: 15px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
  }
  .wpcf7-form-control {
    margin-top: 10px;
  }
  .wpcf7-confirm .required {
	display: none;
}
  /* ===================== プレスリリース ===================== */
  .news-item {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #D9D9D9;
    padding: 40px 10px;
  }
  .news-item:hover {
    background: #e4ecf4;
    cursor: pointer;
  }
  .news-cat {
    color: #fff;
    background-color: #444;
    border-radius: 2px;
    padding: 1px 8px;
    white-space: nowrap;
 }
 .news-date {
  display: flex;
  gap: 20px;
 }
 .news-title {
  margin-top: 20px;
 }
/* ===================== プレスリリース詳細ページ ===================== */
 .news-detail {
  background: #fff;
  padding: 40px 60px;
 }
 .news-detail__body p {
  margin-bottom: 6px;
 }
 .news-detail__thumb {
  max-width: clamp(640px, 10vw, 50px);
  width: 100%;
  margin: 0px;
 }
 .news-detail__thumb img {
  width: 100%;
 }
 .news-detail__body .wp-block-heading {
  border-bottom: 1px solid #444;
  padding-bottom: 10px;
  margin-bottom: 24px;
 }
 .news-detail__title {
  font-size: clamp(24px, 6.4vw, 32px);
  margin: 16px 0 24px 0;
  line-height: 1.4;
 }
 .news-detail__buttons {
  text-align: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  text-align: center;
  margin: 32px auto 0 auto;
  white-space: nowrap;
  justify-content: center;
 }


 /* ページネーション */
 .pagination {
	margin-top: 48px;
	display: flex;
	justify-content: center;
}

.pagination .nav-links {
	display: flex;
	gap: 8px;
}

.pagination a,
.pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid #ccc;
	font-size: 14px;
}

.pagination .current {
	background: #444;
	color: #fff;
	border-color: #444;
}

/* パンくず */
.breadcrumbs {
  display: flex;
  font-size: 14px;
  flex-wrap: wrap;
	list-style: none;
	padding: 0 20px;
	margin: 0  auto 24px auto;
  justify-content:end;
  max-width: 1200px;
}
.breadcrumbs li + li::before {
	content: ">";
	margin: 0 8px;
	color: #999;
}

/* =========================
   スライダー全体
========================= */

/* 今のHTMLだと mainInner が外側にあるので key_wrap は100vhにする */
#key_wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Swiperの高さを100%に揃える */
.slider,
.swiper-container,
.swiper-wrapper,
.swiper-slide {
  height: 100%;
}

/* 2枚を左右50%で並べる */
.swiper-slide {
  display: flex;
  height: 100%;
  overflow: hidden;
}

/* 左：メイン画像 */
.slide-img {
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
}

/* 右：サブ画像 */
.slide-subimg {
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.slide-subimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
}

/* =========================
   MVテキストを重ねる（重要）
========================= */

/* swiper-container を基準に absolute で重ねる */
.swiper-container {
  position: relative;
}

/* テキストブロックをスライド上に固定 */
.main-text.main-catch-copy {
  width: 100%;
  position: absolute;
  inset: 0;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center; /* ← 追加（横中央） */
  pointer-events: none;
  text-align: center; /* ← 追加（文字中央） */
}
.main-text-inner {
  width: 100%;
  margin: 0 auto;
}
/* テキストの幅（左寄せ想定） */
.main-text.main-catch-copy > * {
  pointer-events: auto; /* 将来ボタン等を置くならクリック可能 */
}

.catch-copy {
  font-size: clamp(28px, 3.7vw, 50px);
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.sub-copy {
  margin-top: 16px;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.8;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  max-width: 100%;
}

/* 読みやすいように薄い暗幕（不要なら消してOK） */
.swiper-container::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.40) 0%,
    rgba(0,0,0,0.18) 55%,
    rgba(0,0,0,0.05) 100%
  );
  pointer-events: none;
}

/* テキストは暗幕より上へ */
.main-text.main-catch-copy {
  z-index: 20;
}

/* =========================
   ズームアニメ（アクティブのみ）
========================= */
.slide-img img,
.slide-subimg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* transform: scale(1.15); ← これは消す */
}

/* アクティブ＋フェードアウト中（prev）にもアニメを当てる */
.swiper-slide-active .slide-img img,
.swiper-slide-prev .slide-img img,
.swiper-slide-duplicate-active .slide-img img {
  animation: zoomOut 5s linear both;
}

.swiper-slide-active .slide-subimg img,
.swiper-slide-prev .slide-subimg img,
.swiper-slide-duplicate-active .slide-subimg img {
  animation: zoomIn 5s linear both;
}

@keyframes zoomOut {
  0% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

@keyframes zoomIn {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}


/* ===================== 企業理念下層ページ ===================== */
 /*ラッパー要素*/
.wrapper{
  display:flex;
  gap:80px;
}

/* 左画像 */

.images{
  width:420px;
  position:sticky;
  top:120px;
  height:fit-content;
}

.images img{
  position:absolute;
  width:100%;
  opacity:0;
  transition:opacity .6s;
}

.images img.active{
  opacity:1;
  position:relative;
}

/* 右テキスト */

.contents{
  width:600px;
}

.content-item{
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.content-item:not(:first-child) {
  min-height: 100vh;
}
.content-item p {
  line-height: 2;
}


/* 行動指針カード */
.philosophy-card {
  background: #fff;
  padding: 24px 32px;
  max-width: 370px;
  box-sizing: border-box;
  text-align: left;
  margin-bottom: 40px;
}

.philosophy-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.philosophy-card__num {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #222;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.philosophy-card__line {
  display: block;
  height: 1px;
  background: #222;
  flex: 1;
}

.philosophy-card__title {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
  letter-spacing: 0.04em;
}

.philosophy-card__text {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: #222;
  letter-spacing: 0.04em;
}

.philosophy-card__01 {
  display: flex;
  gap:40px;
  justify-content: space-between;
}
.philosophy-card__02 {
  display: flex;
  gap:40px;
  width: 800px;
  margin: 0 auto;
  justify-content: space-between;
}
.philosophy-headline {
  font-size: 32px;
}