html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

html, body {
  overflow-x: clip; /* hidden より強力に、はみ出しを完全に無視 */
  width: 100%;
  max-width: 100%;
}


/*----------------------------------
  ヘッダー共通
-----------------------------------*/
/* ==========================
   PRESS用ヘッダー：シンプルに全幅
   ========================== */
#header {
  position: fixed;          /* 画面に固定（スクロールしても上に貼り付け） */
  top: 0;
  left: 0;
  right: 0;                 /* ← 右端まできっちり */
  height: 80px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  z-index: 9999;
  box-sizing: border-box;
}

/* ロゴを中央寄せしないで、今まで通り中身だけ幅制限 */
.header-wrapper {
  justify-content: space-between;
  width: 93%;
  max-width: 1440px;
  margin: 0 auto;
}

/* ヘッダー分の余白をメイン側で確保 */
.mainpress {
  padding-top: 100px;   /* ヘッダー高さぶん少し余裕 */
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}

/* ==========================
   PRESS用ヘッダー：シンプルに全幅
   ========================== */
#header {
  position: fixed;          /* 画面に固定（スクロールしても上に貼り付け） */
  top: 0;
  left: 0;
  right: 0;                 /* ← 右端まできっちり */
  height: 80px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  z-index: 9999;
  box-sizing: border-box;
}

/* ロゴを中央寄せしないで、今まで通り中身だけ幅制限 */
.header-wrapper {
  justify-content: space-between;
  width: 93%;
  max-width: 1440px;
  margin: 0 auto;
}

/* ヘッダー分の余白をメイン側で確保 */
.mainpress {
  padding-top: 100px;   /* ヘッダー高さぶん少し余裕 */
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}

/* ヘッダー内のナビゲーションリンク */
.header__nav__item a {
  font-weight: 500;
  font-size: 14px;
  position: relative;
}

/* ナビリンク下線アニメーション */
.header__nav__item a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #37bef0;
  transition: width 0.3s ease;
}

/* ホバー時に下線が伸びる */
.header__nav__item a:hover::after {
  width: 100%;
}

/* アクティブリンクにマークを付与 */
.header__nav__item.active a::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #37bef0;
  margin-right: 6px;
}

.screen-reader-text {
    border: 0;
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/*----------------------------------
  SP（スマホ）専用ヘッダー
-----------------------------------*/
@media screen and (max-width: 420px) {
  #header {
    border-bottom: 1px solid #f6f7f9; /* 下線で区切る */
  }
  #header .only_sp {
    display: flex;   /* SP専用メニュー表示 */
  }
  #header .only_pc {
    display: none;   /* PC専用メニュー非表示 */
  }
}

/*----------------------------------
  基本リセット & 共通スタイル
-----------------------------------*/
* {
  box-sizing: border-box; /* 全要素のボックスサイズをborder-boxに統一 */
}

html {
  font-size: 62.5%; /* 1rem = 10px 計算しやすく */
  width: 100%;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased; /* フォントを滑らかに */
}

body {
  width: 100%;
  max-width: 100vw;
  min-width: 1000px; /* PC最低幅 */
  font-size: 1.6rem; /* 16px相当 */
  font-weight: 400;
  text-align: left;
	font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
    color: #333;
    background-color: #f5f6f7;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

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

a {
    display: block;
    font-size: 1.8rem;
    text-decoration: none;
    color: #000;
    cursor: pointer;
}

/*----------------------------------
  共通ユーティリティ
-----------------------------------*/
.flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.wrapper {
  width: 87%;
  min-width: 900px;
  max-width: 1440px;
  margin: 0 auto;
}

mark {
  background-color: transparent; /* ハイライトなし */
  color: #dd5252;
  font-weight: 700;
}

.common__btn {
    display: flex
;
    align-items: center;
    margin: 0 auto;
    gap: 8px;
    justify-content: center;
    width: 225px;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    height: 63px;
    padding: 10px 16px;
    border-radius: 999px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    transition: all 0.2s 
ease;
    background: #000;
    position: relative;
    overflow: hidden;
}

/* アクティブリンクにマーク */
.header__nav__item.active a::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #37bef0;
  margin-right: 6px;
}

/* ==============================
   ミラリクTOPレイアウト
============================== */
/* 全体コンテナ */
.mirariku-top {
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

/* ===== 左右イラスト ===== */
.mirariku-left img,
.mirariku-right img {
  position: absolute;
  bottom: 0;
  height: auto;
  max-width: none;
  pointer-events: none;
}

/* 左側イラスト：やや左にはみ出す */
.mirariku-left img {
    left: -8vw;
    width: 40vw;
    top: -0vw;
}

/* 右側イラスト：やや右にはみ出す */
.mirariku-right img {
    right: -7vw;
    width: 38vw;
    top: -1vw;
}

/* ===== 中央ロゴ＆検索 ===== */
.mirariku-center {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* 中央ロゴ（主役） */
.mirariku-center img {
  width: clamp(320px, 36vw, 480px);
  height: auto;
  transform: scale(1.15);
}

/* ===== 検索フォーム ===== */
.search-area {
  text-align: center;
}

.search-form {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 2px solid #0072ff;
  border-radius: 50px;
  overflow: hidden;
  width: 420px;
  height: 50px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.search-field {
  flex: 1;
  padding: 12px 18px;
  font-size: 15px;
  border: none;
  outline: none;
  color: #333;
  background: transparent;
}

.search-field::placeholder {
  color: #aaa;
}

.search-submit {
  background: linear-gradient(90deg, #0072ff 0%, #00c6ff 100%);
  color: #fff;
  border: none;
  padding: 10px 28px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0 50px 50px 0;
  transition: 0.3s;
  font-size: 15px;
}

.search-submit:hover {
  opacity: 0.85;
}

/* ==============================
   Pickup Section – Startup Style
============================== */
.pickup-section {
  background: #fff;
  padding: 80px 8% 60px;
  margin-bottom: 40px;
}

.pickup-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
}

/* 左テキスト */
.pickup-text {
  flex: 0 0 35%;
}

.pickup-label {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #00B8FF;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.pickup-title {
  font-size: 3.4rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 14px;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
}

.pickup-desc {
  font-size: 1.5rem;
  color: #555;
  line-height: 1.8;
}

/* スライダー */
.pickup-slider {
  flex: 1 1 55%;
  min-width: 480px;
  display: block;
}

.pickup-slider .n2-ss-slider {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.05);
  margin: 0 auto !important;
}

.pickup-slider .n2-ss-slider img {
  width: 100% !important;
  height: auto !important;
  object-fit: cover;
}

/* 記事一覧の前後を整える */
.blog-wrapper {
  clear: both;
  padding-top: 0;
  margin-top: 0;
}

/* スマホ対応 */
@media screen and (max-width: 900px) {
  .pickup-inner {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .pickup-text {
    flex: none;
  }
  .pickup-slider {
    flex: none;
    width: 100%;
    min-width: auto;
  }
}
/* ==============================
   レスポンシブ対応
============================== */
@media screen and (max-width: 1024px) {
  .mirariku-top {
    height: 400px;
  }
  .mirariku-left img,
  .mirariku-right img {
    width: 36vw;
  }
  .mirariku-center img {
    transform: scale(1.1);
  }
}

@media screen and (max-width: 768px) {
  .mirariku-top {
    flex-direction: column;
    height: auto;
    gap: 30px;
    padding: 60px 0;
  }

  .mirariku-left img,
  .mirariku-right img {
    position: static;
    width: 60vw;
    max-width: 260px;
  }

  .mirariku-center img {
    width: 55vw;
    transform: none;
  }

  .search-form {
    width: 80%;
    height: 46px;
  }
}

/*----------------------------------
  ボタン共通
-----------------------------------*/
.button {
  position: relative;
  width: 200px;
  padding: 20px 0;
  margin: 0 0 0 auto;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  z-index: 1;
  transition: all 0.3s;
}
.button:hover {
  cursor: pointer;
}

/* SVGアイコン inside button */
.button svg {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
}

/* ホバー時に色を反転 */
.button:hover svg circle {
  fill: #015cab;
  stroke: #015cab;
}
.button:hover svg path {
  fill: #fff;
}

/* 背景付きボタン */
.button.button-bg {
  width: 46%;
  padding: 20px 0;
  margin: 0 auto 80px;
  border-radius: 35px;
  border: 1px solid #015cab;
  background-color: #015cab;
  text-align: center;
}
.button.button-bg:hover {
  background-color: #fff;
  color: #015cab;
}

/*----------------------------------
  レスポンシブ共通
-----------------------------------*/
@media screen and (max-width: 420px) {
  body {
    min-width: auto;
    font-size: 1.4rem;
  }
  h2, h3, p, a {
    font-size: 1.4rem;
  }
  .wrapper {
    width: 93%;
    min-width: auto;
  }
  .pc {
    display: none;
  }
  .mobile {
    display: block;
  }
  /* ボタンサイズ調整 */
  .button {
    width: 130px;
    padding: 10px 0;
    font-size: 1.6rem;
  }
}

/*----------------------------------
  セクションタイトル
-----------------------------------*/
.section-title {
  margin-bottom: 50px;
  font-size: 7rem;
  font-weight: 700;
  color: #005aaa;
  white-space: nowrap;
}
.section-title::after {
  display: inline-block;
  padding-left: 20px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
  vertical-align: middle;
}

/* セクション別の文字列 */
.service .section-title::after { content: "サービス"; }
.voice .section-title::after { content: "お客さまの声"; }
.blog .section-title::after { content: "最新プレスリリース"; }

/*----------------------------------
  フッター
-----------------------------------*/
.footer {
  position: relative;
  overflow: hidden;
}
.footer-wrapper {
  padding: 80px 0;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 420px) {
  .footer-wrapper {
    display: block;
    padding: 50px 0 0;
  }
}


.mainpress {
  padding: 60px 20px;
	display: flex;
    flex-direction: column;
}

/* ==============================
   広告バー（ミラリク用）
============================== */
.ad-banner-bar {
  background: #f8f9fb;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 20px 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  width: 100%;
  margin: 30px 0 50px;
}

.ad-banner-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ad-banner-item {
  flex: 1 1 calc(25% - 20px);
  text-align: center;
}

.ad-banner-item a {
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 6px;
  overflow: hidden;
}

.ad-banner-item a:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.ad-banner-item img {
  width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
}

@media screen and (max-width: 768px) {
  .ad-banner-item {
    flex: 1 1 calc(50% - 10px);
  }
  .ad-banner-bar {
    margin: 30px auto 50px;
  }
}

@media screen and (max-width: 480px) {
  .ad-banner-item {
    flex: 1 1 100%;
  }
}

/* ==============================
   Common Header
============================== */
.section__common-header {
  display: flex;
  text-align: left;
  justify-content: space-between;
	width: 76.171875%;
    margin: 100px auto 0px;
}

.section__common-header h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #444;
	position: relative;
    display: flex;
    align-items: center;
    letter-spacing: 0.04em;
    margin-bottom: 30px;
	font-family: "Poppins", sans-serif;
}

.section__common-header h2 span {
  display: block;
  font-size: 1rem;
  color: #777;
  margin-top: 5px;
}

/* ==============================
   Blog Card List
============================== */
.blog_con {
  flex: 1;
}

.blog__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.blog__list-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog__list-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.blog__list-item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.blog__list-item figure {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog__list-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog__list-item:hover img {
  transform: scale(1.05);
}

.blog__list-item h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 16px;
  line-height: 1.5;
  color: #222;
}

.blog__excerpt {
  padding: 0 30px 10px;
}

.auther {
  margin-left: 20px;
}

/* ==============================
   Blogページ 検索ボックス
============================== */
.search-area {
  text-align: center;
  margin: 30px 0 40px;
}

.search-form {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50px;
  overflow: hidden;
  max-width: 400px;
  width: 120%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.search-field {
  flex: 1;
  padding: 10px 16px;
  font-size: 16px;
  border: none;
  outline: none;
  color: #333;
  background: transparent;
}

.search-field::placeholder {
  color: #aaa;
}

.search-submit {
  background: linear-gradient(90deg, #0072ff 0%, #00c6ff 100%);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0 50px 50px 0;
  transition: 0.3s;
}

.search-submit:hover {
  opacity: 0.85;
}

@media screen and (max-width: 600px) {
  .search-field {
    font-size: 14px;
  }
  .search-submit {
    padding: 8px 16px;
    font-size: 14px;
  }
}

/* ==============================
   フッター（ミラリク用）
============================== */
.site-footer {
  background: #ccc;
  color: #333;
  border-top: 1px solid #e5e5e5;
  font-family: 'Noto Sans JP', sans-serif;
	padding-top: 60px;
}

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

.footer-logo h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffffff;
}

.footer-logo p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  color: #333;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #0072ff;
}

.footer-bottom {
  border-top: 1px solid #6c757d;
  text-align: center;
  padding: 15px 10px;
  font-size: 13px;
  color: #fff;
  background: #ccc;
}

/* ==============================
   運営会社情報
============================== */
.footer-company {
  background-color: #ccc;
  padding: 40px 20px 20px 15%;
  text-align: left;
  color: #333;
  font-size: 14px;
  line-height: 1.8;
  border-top: 1px solid #aaa;
  border-radius: 8px;
}

.footer-company h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.footer-company p {
  margin: 4px 0;
}

.footer-company a {
  color: #0072ff;
  text-decoration: none;
}

/* ==============================
   Responsive
============================== */
@media (max-width: 1024px) {
  .wrapper.blog-wrapper {
    flex-direction: column;
  }
  .my-widget,
  .sidemenu {
    flex: none;
    width: 100%;
  }
}

/* ==============================
   Show Your Story セクション
============================== */
.story-section {
  background: #f9f9f9;
  text-align: center;
	padding: 100px 0 0;
  position: relative;
  overflow: hidden;
  font-family: "Noto Sans JP", sans-serif;
}

/* 中央テキスト部分 */
.story-inner {
  max-width: 800px;
  margin: 0 auto;
  color: #333;
}

.story-inner h2 {
  font-size: 6rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 30px;
  font-family: "Poppins", sans-serif;
}

.story-inner p {
  font-size: 1.3rem;
  line-height: 2;
  color: #555;
  margin-bottom: 20px;
}

.story-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 40px;
  border-radius: 30px;
  background: #f0f0f0;
  color: #555;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.1);
  transition: all 0.3s;
}

.story-btn:hover {
  background: #0072ff;
  color: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* 下部画像 */
.story-image {
  margin-top: 60px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .story-inner h2 {
    font-size: 2.8rem;
  }
  .story-inner p {
    font-size: 1.4rem;
  }
  .story-btn {
    font-size: 1.4rem;
    padding: 12px 30px;
  }
  .story-image {
    margin-top: 40px;
  }
}


/* ==============================
  フッター部
============================== */

.custom-box {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 8px;
    text-align: center;
    background: rgb(255, 255, 255);
    padding: 150px;
}

.custom-box__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: rgb(34, 34, 34);
    margin-bottom: 12px;
}

.custom-box__text {
    font-size: 0.9rem;
    color: rgb(85, 85, 85);
    margin-bottom: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
	text-align: center;
    vertical-align: middle;
	 font-size: 1rem;
    line-height: 1.5;
}

.footer-company {
    background-color: rgb(204, 204, 204);
    text-align: left;
    color: rgb(51, 51, 51);
    font-size: 14px;
    line-height: 1.8;
    padding: 40px 20px 20px 15%;
    border-top: 1px solid rgb(170, 170, 170);
    border-radius: 8px;
}

.footer-company h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: rgb(34, 34, 34);
}

ul li {
    list-style: none;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: rgb(255, 255, 255);
    border-top: 1px solid rgb(108, 117, 125);
    padding: 15px 10px;
    background: rgb(204, 204, 204);
}

.my-widget, .sidemenu {
    display: flex;
    flex-direction: column;
    flex: 0 0 280px;
}
/* ==========================
   SmartSlider タイトル＆本文 調整
========================== */

/* タイトル部分 */
.pickup-slider .n2-ss-slide .n2-ss-item-content h1,
.pickup-slider .n2-ss-slide .n2-ss-item-content h2,
.pickup-slider .n2-ss-slide .n2-ss-item-content .n2-ss-item-heading {
  font-size: 1.4rem !important; /* ← 少し小さく */
  line-height: 1.4 !important;
  font-weight: 600 !important;
  max-height: calc(1.4rem * 2.8); /* 2行分 */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* ← 最大2行 */
  -webkit-box-orient: vertical;
  word-break: break-word;
  text-align: center;
  margin-bottom: 10px !important;
}

/* 本文部分 */
.pickup-slider .n2-ss-slide .n2-ss-item-content p {
  font-size: 1rem !important; /* 今のままぐらい */
  line-height: 1.5 !important;
  max-height: calc(1.5rem * 3.2); /* 3行分 */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* ← 最大3行 */
  -webkit-box-orient: vertical;
  word-break: break-word;
  text-align: center;
  opacity: 0.9;
  margin-bottom: 8px !important;
}

/* スマホサイズ調整 */
@media screen and (max-width: 768px) {
  .pickup-slider .n2-ss-slide .n2-ss-item-content h1,
  .pickup-slider .n2-ss-slide .n2-ss-item-content h2,
  .pickup-slider .n2-ss-slide .n2-ss-item-content .n2-ss-item-heading {
    font-size: 1.2rem !important;
    line-height: 1.3 !important;
  }
  .pickup-slider .n2-ss-slide .n2-ss-item-content p {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
  }
}

/* ==========================
   Smart Slider テキスト制御
========================== */

/* タイトル（上の大きな文字） */
#n2-ss-2item1,
#n2-ss-2item4 {
  font-size: 1.4rem !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
  text-align: center !important;
  color: #fff !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2; /* 最大2行 */
  -webkit-box-orient: vertical;
  overflow: hidden !important;
  text-overflow: ellipsis;
  max-height: calc(1.4rem * 2.8);
  margin: 0 auto 10px !important;
  width: 90%;
}

/* 本文（下の説明部分） */
.n2-font-b20bd2e637221dfaf92c729a6979e9ea-paragraph {
  font-size: 1rem !important;
  line-height: 1.5 !important;
  text-align: center !important;
  color: #fff !important;
  opacity: 0.9;
  display: -webkit-box !important;
  -webkit-line-clamp: 3; /* 最大3行 */
  -webkit-box-orient: vertical;
  overflow: hidden !important;
  text-overflow: ellipsis;
  max-height: calc(1.5rem * 3.2);
  margin: 0 auto 8px !important;
  width: 85%;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  #n2-ss-2item1,
  #n2-ss-2item4 {
    font-size: 1.2rem !important;
    -webkit-line-clamp: 2;
  }

  .n2-font-b20bd2e637221dfaf92c729a6979e9ea-paragraph {
    font-size: 0.9rem !important;
    -webkit-line-clamp: 3;
  }
}

.n2-ss-slide .n2-ss-layers-container,
.n2-ss-slide .n2-ss-section-main-content {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important; /* ← 下寄せ */
  height: 100% !important;
  padding-bottom: 0px !important; /* ← 好きな高さで調整 */
}


/* ==========================
  記事用CSS
========================== */

.press-company-info {
  margin-top: 60px;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 10px;
}

.press-company-info h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  border-left: 5px solid #333;
  padding-left: 10px;
}

.press-info-box p {
  margin: 0.3em 0;
  font-size: 1.5rem;
}

.press-info-box strong {
  color: #333;
  display: inline-block;
  width: 8em;
}

/* ============================
   pressページ用：AFFINGER自動出力ブロック非表示
   ============================ */

#pryc-wp-acctp-bottom {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ==========================================================
   SINGLE PRESS（詳細ページ）モダンスタイル調整
   ========================================================== */

/* 全体 */
.press-single {
  background: #fff;
  padding: 60px 40px;
  max-width: 900px;
  margin: 60px auto;
  box-shadow: 0 4px 25px rgba(0,0,0,0.05);
  border-radius: 12px;
}

/* タイトル */
.press-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  color: #111;
  border-left: 5px solid #2b6cb0;
  padding-left: 12px;
}

/* 掲載日 */
.press-date {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 25px;
}

/* アイキャッチ画像 */
.press-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
}

/* 本文 */
.press-content {
  font-size: 1.6rem;
  line-height: 1.9;
  color: #333;
  margin-bottom: 40px;
}

.press-content p {
  margin-bottom: 1.6em;
}

/* 企業情報 */
.press-company-info {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 25px 30px;
  margin: 40px 0;
}

.press-company-info h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 16px;
  border-left: 4px solid #3b82f6;
  padding-left: 10px;
}

.press-info-box p {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #444;
}

/* 前後ナビ */
.press-navigation {
  justify-content: space-between;
  margin: 50px 0 0;
  border-top: 1px solid #eee;
  padding-top: 30px;
}

.press-navigation a {
  color: #3b82f6;
  font-weight: 500;
  text-decoration: none;
}

.press-navigation a:hover {
  text-decoration: underline;
}

/* 一覧に戻るボタン */
.press-back {
  text-align: center;
  margin-top: 40px;
}

.press-back .back-btn {
  display: inline-block;
  background: #3b82f6;
  color: #fff;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.press-back .back-btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

/* ヘッダーの余白調整 */
#header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 10px 0;
}

/* 背景 */
body {
  background: #f2f5f8;
}

/* ストーリーセクション下部をより軽く */
.story-section {
  background: #fff;
  padding: 60px 0px 0px;
  border-top: 1px solid #e5e7eb;
	width: 65%;
    margin: 0 auto;
	margin-bottom: -80px
}

/* ========================================
   PRESSページ：ヘッダーロゴ 左寄せ＆サイズ調整
======================================== */

/* ヘッダー全体を左寄せにする */
#header.flex {
  justify-content: flex-start;  /* .flex の center を上書き */
}

/* 中身のラッパーも左寄せで揃える */
.header-wrapper {
  justify-content: flex-start;
  width: 93%;
  max-width: 1440px;
  margin: 0 auto;
}

/* 見出し余白リセット */
.header-wrapper h1 {
  margin: 0;
}

/* ロゴ画像のサイズ調整（ここを好きな大きさに） */
.headerimg img {
  height: 40px;   /* 小さくしたい場合は 30px とかにしてOK */
  width: auto;
  display: block;
}

/* ==============================
   Pickup Slider（完全上書き安定版＋クリック保証＋デザイン維持）
============================== */

/* スライダー全体 */
.pickup-slider.swiper {
  position: relative;
  width: 100%;
  padding: 40px 0 80px !important;
  overflow: hidden !important; /* スライドがはみ出さないように */
  z-index: 10;
}

/* スライド設定 */
.pickup-slider .swiper-slide {
  width: auto !important;
  flex-shrink: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin: 0 18px; /* カード間隔 */
  pointer-events: auto !important;
  z-index: 1 !important;
}

/* カード本体 */
.press-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 480px !important; /* サイズ安定 */
  pointer-events: auto !important;
}

.press-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

/* サムネイル */
.press-card__thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.press-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.press-card:hover .press-card__thumb img {
  transform: scale(1.05);
}

/* コンテンツ */
.press-card__content {
  padding: 16px 20px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.press-card__title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.press-card__excerpt {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #555;
  opacity: 0.9;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Swiper内部の高さ揃え */
.pickup-slider .swiper-wrapper {
  align-items: stretch !important;
  z-index: 1 !important;
}

/* ==============================
   矢印ボタン（clip対応＋デザイン維持＋クリック保証）
============================== */

/* clipの影響を受けないようにする */
.pickup-section,
.pickup-inner,
.pickup-slider {
  position: relative;
  overflow: visible !important;
  isolation: isolate;
  z-index: 10;
}

/* ボタン共通 */
.pickup-slider .swiper-button-prev,
.pickup-slider .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #0072ff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 9999 !important;
  pointer-events: auto !important;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* ボタンアイコン */
.pickup-slider .swiper-button-prev::after,
.pickup-slider .swiper-button-next::after {
  font-size: 18px !important;
  font-weight: bold;
}

/* 左右位置 */
.pickup-slider .swiper-button-prev { left: -20px !important; }
.pickup-slider .swiper-button-next { right: -20px !important; }

/* ホバー効果 */
.pickup-slider .swiper-button-prev:hover,
.pickup-slider .swiper-button-next:hover {
  background: #0072ff;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

/* 複製スライドが上に重ならないように */
.pickup-slider .swiper-slide-duplicate {
  pointer-events: none !important;
  z-index: 0 !important;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .pickup-slider .press-card {
    max-width: 90% !important;
  }
  .pickup-slider .swiper-button-prev { left: -10px !important; }
  .pickup-slider .swiper-button-next { right: -10px !important; }
  .press-card__title { font-size: 1.4rem; }
  .press-card__excerpt { font-size: 1.2rem; line-height: 1.6; }
}