@charset "utf-8";
/****************************************************************************

--------------------------------------------------------
   Last up date   : 2025.11
****************************************************************************/
body {
  background-color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
  color:#333;
}

:root {
/* # =================================================================
   # カラー
   # ================================================================= */
  --color3: #444;
  --color4: #e27288;
}

/* # =================================================================
   # margin padding
   # ================================================================= */

.mt0{ margin-top:0px !important; }
.mt5{ margin-top:5px !important; }
.mt10{ margin-top:10px !important; }
.mt15{ margin-top:15px !important; }
.mt20{ margin-top:20px !important; }
.mt30{ margin-top:30px !important; }
.mt40{ margin-top:40px !important; }
.mt50{ margin-top:50px !important; }
.mt60{ margin-top:60px !important; }
.mt70{ margin-top:70px !important; }
.mt80{ margin-top:80px !important; }

.mb0{ margin-bottom:0px !important; }
.mb5{ margin-bottom:5px !important; }
.mb10{ margin-bottom:10px !important; }
.mb20{ margin-bottom:20px !important; }
.mb30{ margin-bottom:30px !important; }
.mb40{ margin-bottom:40px !important; }
.mb50{ margin-bottom:50px !important; }
.mb60{ margin-bottom:60px !important; }
.mb70{ margin-bottom:70px !important; }
.mb80{ margin-bottom:80px !important; }


.pt0{ padding-top:0px !important; }
.pt5{ padding-top:5px !important; }
.pt10{ padding-top:10px !important; }
.pt15{ padding-top:15px !important; }
.pt20{ padding-top:20px !important; }
.pt30{ padding-top:30px !important; }
.pt40{ padding-top:40px !important; }
.pt50{ padding-top:50px !important; }
.pt60{ padding-top:60px !important; }
.pt70{ padding-top:70px !important; }
.pt80{ padding-top:80px !important; }

.pb0{ padding-bottom:0px !important; }
.pb5{ padding-bottom:5px !important; }
.pb10{ padding-bottom:10px !important; }
.pb20{ padding-bottom:20px !important; }
.pb30{ padding-bottom:30px !important; }
.pb40{ padding-bottom:40px !important; }
.pb50{ padding-bottom:50px !important; }
.pb60{ padding-bottom:60px !important; }
.pb70{ padding-bottom:70px !important; }
.pb80{ padding-bottom:80px !important; }



/* # =================================================================
   # 改行
   # ================================================================= */
.br-sp{
  display: none;
}

@media screen and (max-width: 768px) {
.br-pc{
  display: none;
}
.br-sp{
  display: block;
}
}


/* ------------------------
   topヘッダー（先輩の声用）
------------------------ */
.sub-top-fv {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 90px;
}
 .sub-top-sp{
  display: none;
 }

.sub-top-fv-img {
  position: relative;
}

.sub-top-fv-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* voice.pngとテキストを重ねる部分 */
.voice-label {
  position: absolute;
  top: 50%;              /* 上端から50%の位置に */
  left: 13%;             /* 横位置はそのまま */
  transform: translateY(-50%); /* 要素自身の高さの半分だけ上に戻す */
  display: flex;
  align-items: center;
  gap: 2rem;
}

.voice-label img {
  width: 15%; /* 丸画像サイズ */
  height: auto;
}

.voice-label h2 {
  font-size: var(--fs-h1);
  font-weight: bold;
  color: #333;
}

/* ------------------------
   topヘッダー（募集要項用）
------------------------ */
.sub-top-fv-img {
  position: relative; /* 子要素の absolute 位置指定に必要 */
}

.guideline-label {
  position: absolute;         /* 親要素（.sub-top-fv-img）内での絶対配置 */
  top: 50%;                   /* 上から50% */
  left: 50%;                  /* 左から50% */
  transform: translate(-50%, -50%); /* 自身の幅・高さの半分戻して中央へ */
  text-align: center;         /* テキストを中央揃え */
}

.guideline-label h2 {
  font-size: var(--fs-h1);
  font-weight: bold;
  color: #333;                /* 画像上で見づらい場合は #fff などに変更可 */
}


/* ------------------------
   スマホ対応（768px以下）
------------------------ */
@media screen and (max-width: 768px) {
  .sub-top-fv{
    display: none;
  }
  .sub-top-sp {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 60px;
}
  .voice-label {
    left: 5%;
    gap: 1rem;
  }
  .voice-label img {
    width: 80px;
  }
}


/* ------------------------
   先輩職員の声
------------------------ */
/* --- 上部ボタン --- */
.interview-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;             /* 高さ内で中央寄せ */
  flex-wrap: wrap;                /* スマホ時に折り返し */
  max-width: 1200px;
  width: 90%;
  margin: 0 auto 100px;
  gap: 20px;
  padding-top: 80px;
}

.interview-nav a {
  width: calc((100% - 60px) / 4);
  text-align: center;
  display: flex;
  justify-content: center;        /* 横中央 */
  align-items: center;            /* 縦中央 */
  text-decoration: none;
  padding: 12px 16px;
  background-color: #F9E9EA;
  border-radius: 6px;
  color: #333;
  font-size:var(--fs-body);
  font-weight: 600;
  height: 90px;                   /* 高さ固定 */
  line-height: 1.4;               /* 折り返し時の行間 */
  transition: all 1.5s ease;
  letter-spacing: -0.01em;
}

.interview-nav a:hover,
.interview-nav a.active{
  background-color: #EE869A;
  color: #fff;
  
}


/* --- 区切り線 --- */
.interview-divider {
  border: none;
  border-top: 1px solid #EE869A;
  margin: 20px auto;
   max-width: 1200px;
  width: 90%;
}

/* --- 見出し --- */
.interview-title {
  text-align: center;
  font-size: var(--fs-h2);
  font-weight: 700;
  margin: 25px 0;
  color: #333;
}

/* --- インタビュー全体 --- */
.interview {
  max-width: 1200px;
  width: 90%;
  background-color: #FFFAEF;
  border-radius: 10px;
  padding: 50px;
  margin: 40px auto 150px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.interview-header {
  margin-bottom: 35px;
  font-size: var(--fs-body);
  color: #333;
  border-bottom: 1px solid #333;
  display: flex;
  align-items: center;     /* ← 高さ揃える */
  background: url(/recruit/upload/personal-icon.png) no-repeat center left 10px;
  background-size: 45px;
  padding: 20px 0 25px 70px;
}

.interview-job-date{
padding-left: 10px;
}

.interview-body h3 {
  color: #E25C70;
  border-left: 1px solid #E25C70;      /* 左ライン（メインカラー） */
  border-bottom: 1px solid #E25C70;    /* 下ライン（淡いピンク系） */
  padding: 10px 0 20px 30px;               /* 左右・下余白調整 */
  font-size: var(--fs-body);
  margin: 35px 0 20px;                /* 前後余白少し広めに */
  line-height: 1.6;
}


.interview-body p {
  font-size: var(--fs-body);
  line-height: 1.8;
  color: #333;
  margin-bottom: 60px;
  padding: 0 30px;
  text-align: justify;
  
}

.sub-fv-container {
    max-width: 1200px;
    width: 90%;
    margin: 10px auto 10px;
}



/* ------------------------
   スマホ対応（768px以下）
------------------------ 
*/@media screen and (max-width: 768px) {

  /* --- 上部ボタン --- */
  .interview-nav {
    flex-direction: column;      /* 縦並び */
    align-items: stretch;        /* 幅を100%に */
    gap: 12px;
    padding-top: 40px;
    margin-bottom: 60px;
  }

  .interview-nav a {
    width: 100%;
    height: auto;                /* 高さ自動（折り返しに対応） */
    padding: 16px 12px;
    line-height: 1.6;
  }

  /* --- 区切り線 --- */
  .interview-divider {
    margin: 16px auto;
    width: 90%;
  }

  /* --- 見出し --- */
  .interview-title {
    margin: 20px 0;
    line-height: 1.5em;
    padding: 0 20px;
  }

  /* --- インタビュー全体 --- */
  .interview {
    width: 90%;
    padding: 30px 20px;
    margin: 30px auto 80px;
    box-shadow: none; /* ← スマホで影を非表示 */
  }

  .interview-header {
    margin-bottom: 25px;
  }

  .interview-job-date {
    padding-left: 6px;
  }

  /* --- 質問タイトル（h3） --- */
  .interview-body h3 {
    padding: 8px 0 14px 16px;
    margin: 28px 0 14px;
    border-left-width: 2px;
  }

  /* --- 回答テキスト --- */
  .interview-body p {
    line-height: 1.8;
    margin-bottom: 40px;
    padding: 0 10px;
    text-align: justify;
    padding-left: 16px;
  }

  .interview-body section:last-of-type p {
  margin-bottom: 15px;
}
}




/* ------------------------
   募集要項
------------------------ */


/* ──────────────────────────────
　グループ募集要項
────────────────────────────── */
.main{
  padding-bottom: 50px;
}
.guidelines-heading {
  max-width: 1585px;
  width: 90%;
  font-size: var(--fs-h1);
  font-weight: 700;
  text-align: center;
  margin: 60px auto 30px;
}

.debug,
.guidelines-wrap {
  max-width: 1200px;
  width: 90%;
  margin: 100px auto 0px;
  background: #fff;
  overflow: hidden;
  color: #333;
  line-height: 1.8;
}

.guidelines-wrap .more-center{
  margin-bottom: 100px;
}

/* ──────────────────────────────
　募集要項　基本レイアウト
────────────────────────────── */
.guidelines-head {
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-bottom: 50px;
  border-radius: 6px; 
}

.guidelines-facility {
  font-size: var(--fs-h2);
  font-weight: 700;
  margin: 0;
}

.guidelines-address {
  font-size: var(--fs-body);
  font-weight: 600;
}

/* ──────────────────────────────
　テーブル構成
────────────────────────────── */
.guidelines-tbl {
  display: flex;
  flex-direction: column;
}

.tbl-row {
  display: flex;
  border-top: 1px solid #333;
}

.tbl-row:last-child {
  border-bottom: 1px solid #333;
}

.tbl-label {
  font-size: var(--fs-body);
  background: #0071bc26;
  width: 15%;
  min-width: 200px;
  font-weight:700;
  padding: 20px 40px;
  box-sizing: border-box;
  display: flex;              /* フレックスボックスにする */
  align-items: center;        /* 縦方向に中央揃え */
}

.tbl-data {
  font-size: var(--fs-body);
  width: 85%;
  padding: 20px 35px;
  box-sizing: border-box;
}

.tbl-data label{
    width: 32%;
    display: inline-block;
    font-size: 0.9em;
}
.tbl-data p{
	margin-bottom: 1.5rem;
}
.tbl-data p:last-child{
	margin-bottom: 0;
}
.guidelines-tbl.facility .tbl-data label{
    width: 49%;
}
@media screen and (max-width: 768px) {
.tbl-data label{
    width: 49%;
    margin-bottom: 5px;
    vertical-align: top;
}
.guidelines-tbl.facility .tbl-data label{
    width: 100%;
}
}

.tbl-data .video {
  width: 100%;
}
.tbl-data .head02{
  font-weight: 800;
  font-size: 1.1em;
}

/* 募集要項　エントリーボタン */
.guidelines-entry{
  text-align: center;
  margin: 60px auto ;
}
.guidelines-entry .entry-btn{
  background: #FED3E2;
  background: linear-gradient(140deg,rgba(254, 211, 226, 1) 0%, rgba(252, 165, 187, 1) 100%);
  color: #4d4d4d;
  font-size: 1.4em;
  font-weight: 700;
  display: block;
  padding: 20px;
  border-radius: 80px;
  transition: .5s ease;
}
.guidelines-entry .entry-btn span{
  color: #fff;
  display: block;
}
.guidelines-entry .entry-btn:hover{
	opacity:0.7;
}
.guidelines-entry .entry-btn img {
  width: 180px; /* 丸画像サイズ */
  height: auto;
}

@media screen and (max-width: 768px) {
  .guidelines-entry .entry-btn {
    font-size: 1.2em;
    line-height: 1.6;
  }
}


/* 募集要項 */
.tbl-head .title {
  font-size: var(--fs-lead);
}
.tbl-head .tbl-row {
  font-size: var(--fs-lead);
  border-top: none;
  border-bottom: none;
  margin: 30px 0;
}
.tbl-head .pic-box {
  font-size: var(--fs-lead);
  margin-right: 30px;
  width: 30%;
  min-width: 300px;
}
@media screen and (max-width: 768px) {
  .tbl-head .pic-box {
    margin: 0 auto 30px;
  }
}
.tbl-head .pic-box img {
  width: 100%;
}
.tbl-head .catch-text {
  font-size: var(--fs-body);
}

/* ──────────────────────────────
　テーマカラー設定
────────────────────────────── */

/* 基本テーマ（白庭） */
.guidelines-theme-001 .guidelines-head,
.guidelines-theme-008 .guidelines-head,
.guidelines-theme-014 .guidelines-head,
.newsbox .guidelines-head,
.guidelines-theme-shiraniwa .guidelines-head {
  background: #005fa8;
}
.guidelines-theme-001 .tbl-label,
.guidelines-theme-008 .tbl-label,
.newsbox .tbl-label,
.guidelines-theme-shiraniwa .tbl-label{
  background: #0071bc26;
}
.newsbox .guidelines-head {
  display: block;
  width: 100%;
}

/* 東生駒 */
.guidelines-theme-002 .guidelines-head,
.guidelines-theme-010 .guidelines-head,
.guidelines-theme-higashiikoma .guidelines-head {
  background: #E95277;
}
.guidelines-theme-002 .tbl-label,
.guidelines-theme-010 .tbl-label,
.guidelines-theme-higashiikoma .tbl-label{
  background: #E9527715;
}

/* グランドファミリア */
.guidelines-theme-013 .guidelines-head,
.guidelines-theme-grandfamilia .guidelines-head {
  background: #FFA603;
}
.guidelines-theme-013 .tbl-label,
.guidelines-theme-grandfamilia .tbl-label{
  background: #FFA60330;
}

/* フットケア */
.guidelines-theme-003 .guidelines-head,
.guidelines-theme-004 .guidelines-head,
.guidelines-theme-005 .guidelines-head,
.guidelines-theme-007 .guidelines-head,
.guidelines-theme-015 .guidelines-head,
.guidelines-theme-fitcare .guidelines-head {
  background: #FABE00;
}
.guidelines-theme-003 .tbl-label,
.guidelines-theme-004 .tbl-label,
.guidelines-theme-005 .tbl-label,
.guidelines-theme-007 .tbl-label,
.guidelines-theme-015 .tbl-label,
.guidelines-theme-fitcare .tbl-label{
  background: #FABE0030;
}


/* エリクシール */
.guidelines-theme-006 .guidelines-head,
.guidelines-theme-012 .guidelines-head,
.guidelines-theme-elixir .guidelines-head {
  background: #379C2A
}
.guidelines-theme-006 .tbl-label,
.guidelines-theme-012 .tbl-label,
.guidelines-theme-elixir .tbl-label{
  background: #379C2A20;
}


/* 地域包括支援センター */
.guidelines-theme-011 .guidelines-head,
.guidelines-theme-houkatsu .guidelines-head {
  background: #4FD446;
}
.guidelines-theme-011 .tbl-label,
.guidelines-theme-houkatsu .tbl-label{
  background: #4FD44620;
}

/* 居宅介護支援 */
.guidelines-theme-009 .guidelines-head,
.guidelines-theme-kyotaku .guidelines-head {
  background: #924898;
}
.guidelines-theme-009 .tbl-label,
.guidelines-theme-kyotaku .tbl-label{
  background: #92489820;
}

/* 松下内科 */
.guidelines-theme-cat .guidelines-head,
.guidelines-theme-matsushita .guidelines-head {
  background: #FABE00;;
}
.guidelines-theme-cat .tbl-label,
.guidelines-theme-matsushita .tbl-label{
  background: #FFFFE6;
}


/* ──────────────────────────────
　項目	内容
色変更の方法	:  guidelines-wrap に .guidelines-theme-◯◯ を付ける
────────────────────────────── */


/* ──────────────────────────────
　レスポンシブ対応
────────────────────────────── */
@media (max-width: 768px) {
  .guidelines-head {
  color: #fff;
  text-align: center;
  padding: 10px;
  margin-bottom: 50px;
  border-radius: 6px; 
}
  .guidelines-heading {
    margin: 40px auto 20px;
    line-height: 1.5em;
  }

  .guidelines-wrap {
  margin: 50px auto 50px;
}

  .tbl-label {
  width: 100%;
  padding: 15px 20px;
  border-bottom: 1px solid #333;
}

  .tbl-row {
    flex-direction: column;
  }

.tbl-data {
  width: 100%;
  padding: 15px 20px;
  box-sizing: border-box;
  text-align: justify;
}

  .tbl-data {
    width: 100%;
  }
}

/* # =================================================================
   # 数字で見る松下会
   # ================================================================= */

.numbers-container {
  max-width: 1200px;
  width: 90%;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 100px auto;
  padding-left: 2%;
}

.numbers-inner{
  width: 29%;
    background-color: #FFFAEF;
      border-radius: 6px;
  padding: 35px 10px 25px;
  margin: 20px;
}
.numbers-item-title{
  font-size: var(--fs-h2);
  font-weight: bold;
  text-align: center;
  margin: 0 auto 8px;
}
.numbers-icon{
  margin: 16px auto 0px;
  width: 40%;
}
.numbers-number{
  font-size: clamp(3.75rem, 3.068rem + 3.41vw, 5.625rem);/* w320-60px w1200-90px */
  font-weight: 800;
  font-family: inter, sanserif;
  text-align: center;
  color: #EE869A;
}
.numbers-number-small{
  font-size: 60px;
  font-weight: 800;
  font-family: inter, sanserif;
  text-align: center;
  color: #EE869A;
}
.numbers-number-text{
  font-size: var(--fs-h2);
    font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  
}
.numbers-body{
    font-size: var(--fs-body);
    font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  text-align: center;
}
.numbers-caption{
    font-size: var(--fs-caption);
    font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  text-align: center;
}
.colon {
  margin-left: -0.3em; /* 左を詰める */
  margin-right: -0.3em; /* 右を詰める */
  display: inline-block; /* marginを効かせるため */
}


.numbers-row{
  width: 100%;
  display: flex;
    flex-wrap: wrap;
  justify-content: space-between;
  margin: 0px auto;
}
.numbers-row-item{
  width: 100%;
  margin-bottom: 8px;
}

/* ------------------------
   スマホ対応（767px以下）
------------------------ */
@media screen and (max-width: 767px) {

.numbers-container {
  max-width: 1200px;
  width: 90%;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 40px auto;
  padding-left: 0%;
}
.numbers-inner{
  width: 100%;
    background-color: #FFFAEF;
      border-radius: 6px;
  padding: 25px 5px 20px;
  margin: 10px;
}
.numbers-item-title{
  font-size: var(--fs-h2);
  font-weight: bold;
  text-align: center;
  margin: 0 auto 8px;
}

}

/* ------------------------
   768-1024px
------------------------ */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  
  .numbers-container {
  margin: 40px auto;
  padding-left: 2%;
}
.numbers-inner{
  width: 45%;
    background-color: #FFFAEF;
      border-radius: 6px;
  padding: 25px 5px 20px;
  margin: 15px;
}

}


/* # =================================================================
   # 保育園のご案内
   # ================================================================= */

.column {
  width:100%;
  margin: 0 auto;
  display: flex;
  gap:2em;
  margin-bottom: 60px;
}
.mt-be-columns.column {
    font-size: medium;
}

.row.w10_7,
.mt-be-column.row.w10_7 {
  width: 65%;
}
.mt-be-column.row.w10_7 {
  padding: 0;
}

.row.w10_7 h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.6em;
}

.row.w10_7 p {
  font-size: var(--fs-body);
  font-weight: 500;
  line-height: 1.8em;
  text-align: justify;
}

.row.w10_3,
.mt-be-column.row.w10_3 {
  width: 35%;
}
.mt-be-column.row.w10_3 {
  padding: 0;
}

.row.w10_3 img {
  width: 100%;
  height: auto;
  display: block;
}



/* -------- スマホ対応 ---------- */
@media (max-width: 768px) {
  .column {
    display: flex;
    flex-direction: column; /* 縦並び */
    gap: 20px;              /* テキストと画像の間隔 */
  }

  .row.w10_7,
  .row.w10_3,
  .mt-be-column.row.w10_7,
  .mt-be-column.row.w10_3 {
    width: 100%;     /* 両方とも全幅に */
  }

  .row.w10_3 {
    margin-top: 1.5em; /* テキストと画像の間に余白を追加 */
  }
  .mt-be-column.row.w10_3 {
    margin-top: 0;
  }
}
/* ========================================
左テキスト・右画像（5：5）
======================================== */
.mt-be-columns {
  width: 82%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 3em;
  margin: 60px auto;
  justify-content: space-between; /* 両端に配置して間を均等に */
}

.mt-be-column {
  width: 50%;
}

.mt-be-column p {
  font-size: var(--fs-body);
  font-weight: 500;
  line-height: 1.8em;
  text-align: justify;
}


.file_up {
  display: flex;
  align-items: center;
  gap: 0.5em;
padding: 1em 0;
}

.icon-pdf, .icon-word, .icon-excel, .icon-zip {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--color4); 
  text-decoration: underline;
  text-underline-offset: 6px;
}

.icon-pdf:hover ,
.icon-word:hover ,
.icon-excel:hover ,
.icon-zip:hover {
  text-decoration: none;
  opacity: 0.5;
}

.icon-pdf__badge,
.icon-word__badge,
.icon-excel__badge,
.icon-zip__badge {
  background-color: var(--color4);
  padding: 0.2em 0.5em;
  font-family: "Inter", sans-serif;
  font-weight:500;
  font-size: var(--fs-ruby);
  color: var(--white);
  border-radius: 4px;
  letter-spacing: -0.02em;
  text-decoration-skip-ink: auto;
  text-underline-offset: 6px;
}

.icon-pdf__icon img,
.icon-word__icon img,
.icon-excel__icon img,
.icon-zip__icon img {
  width: 1.3em;
  height: auto;
  display: block;
}

/* =================================================
お知らせ一覧 　news.html 
==================================================== */
/* 全体レイアウト（上書き） */
.newsbox {
  display: flex;
  flex-wrap: wrap;
  gap: 3em;
  box-sizing: border-box;
  width: 100%;
  padding: 25px 0;
  margin: 0 auto 60px;
  justify-content: center;
  max-width: 1200px;
}

.newsbox .newslist li {
    border: none;
    display: block;
    text-align: left;
    border-bottom: 1px solid #eeeeee;
    box-sizing: border-box;
    line-height: 20px;
}
#contents .newsbox .newslist ul > li {
  margin-bottom: 0;
}

/* 左：newslist */
.newslist {
  order: 1;
  width: 71%;
  box-sizing: border-box;
}
.newslist .news_head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.newslist .news_head .news-date {
  margin-left: 0;
}
.newslist .interview-divider {
    border: none;
    border-top: unset;
    margin: 20px auto;
    width: 100%;
}
.newslist .interview-title {
    font-size: var(--fs-h3);
    font-weight: 700;
    line-height: 1.6;
    padding: 0 0 4px 0;
    position: relative;
    margin: 60px auto 20px;
    text-align: left;
}

.newslist h3.head03 + ul > li:first-child {
  margin-top: 1.5em; /* 数値は調整してください */
}

.newslist time {
  font-family: Inter, sans-serif;
  font-size: var(--fs-h6);
  font-weight: 500;
  color: #333;
  background-color: var(--lightgray);
  padding: 0.3em 0.8em;
  display: inline-block;
  border-radius: 3px;
}
.newslist .text {
  font-size: var(--fs-body);
  font-weight: 500;
  padding: 1em;
  display: inline-block;
}
.newslist .news_text {
  font-size: var(--fs-body);
  line-height: 1.8;
  font-weight: 500;
  font-style: normal;
  color: #333;
  margin: 0;
  text-align: justify;
}
.newslist .news-date.date {
  margin-left: 0;
}
#contents .news-date.date ~ div > p:first-of-type img {
  margin: 0 auto 30px;
}

/* 右：sidebox */
.sidebox {
  order: 2;
  width: 25%;
  box-sizing: border-box;
  border-left: 1px solid var(--lightgray);
  padding-left: 2em;
  padding-top: 4.5em;
}
.sidebox ul li {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.sidebox .cate {
  font-size: var(--fs-h6);
  color: var(--base1);
  background-color: var(--lightblue);
  padding: 10px 20px;
  text-align: center;
  font-family: Inter, sans-serif;
}

.sidebox .arc,
.sidebox .widget-list-item {
  color: var(--base3);
  text-align: left;
  border-bottom: solid 1px var(--lightgray);
  transition: all 1s ease-in-out;
  font-family: Inter, sans-serif;
}
.sidebox .arc a,
.sidebox .widget-list-item a {
  padding: 10px 20px;
  display: block;
  text-decoration: none !important;
}
#contents .sidebox .arc,
#contents .sidebox .cate,
.sidebox .widget-list-item ul > li {
  margin-bottom: 0;
}

/* ホバー時：liに背景や角丸を適用 */
.sidebox .arc:hover,
.sidebox .widget-list-item:hover {
  background-color: var(--base4);
  border-radius: 3px;
}

/* 中のaの文字色を変える（hover時の親に反応） */
.sidebox .arc:hover a,
.sidebox .widget-list-item:hover  a {
  color: var(--white);
}

.newslist .pagination {
  display: flex;
  justify-content: center;  /* 中央揃え */
  align-items: center;
  gap: 0.8em;                /* 数字の間に余白 */
  margin-top: 2em;           /* 上にスペース */
  flex-wrap: wrap;           /* 長くなったとき折り返し */
  font-family: Inter, sans-serif;
}

/* ホバー効果 */
.newsbox .newslist a {
    display: block;
    padding-top: 25px ;
    padding-bottom: 25px;
    padding-left: 0;
    padding-right: 20px;
    text-decoration: none !important;
}
.newsbox .newslist span a {
    display: inline-block;
    border: 1px solid var(--lightgray);
    padding: 8px 12px;
    font-size: 0.9rem;
}
.newsbox .newslist a:hover{
    background-color: #f7f7f7;
    transition: all 500ms 0s ease;
}

.newsbox .newslist span.category {
    display: inline-block;
    border: 1px solid var(--lightgray);
    padding: 8px 12px;
    font-size: 0.9rem;
}

/* ▼ 共通スタイルとして必要な設定 ▼ */
.newslist ul li a {
  display: block;
  position: relative;
  padding: 1em;
  transition: background-color 1s ease;
  overflow: hidden;
}

/* ▼ 疑似要素：初期は透明 ▼ */
.newslist ul li a::before,
.newslist ul li a::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: background 1s ease;
  z-index: 0;
}

/* ::before ＝ 背景色（hover時に変化） */
.newslist ul li a::before {
  background: rgba(0, 0, 0, 0);
}

/* ::after ＝ 白いオーバーレイ（hover時に表示） */
.newslist ul li a::after {
  background: rgba(255, 255, 255, 0);
}

/* hover時：背景色と白オーバーレイ */
.newslist ul li a:hover::before {
  background: var(--base4);
}
.newslist ul li a:hover::after {
  background: rgba(255, 255, 255, 0.1);
}


/* --------- ページネーション --------- */
/* 数字やリンクの共通スタイル */
.newslist .pagination .current_page,
.newslist .pagination .link_page {
  font-size: 16px;
  padding: 10px 12px;
  text-decoration: none;
  border: 1px solid var(--lightgray);
  border-radius: 4px;
  color: var(--base3);
}

/* 現在のページ（強調表示） */
.newslist .pagination .current_page {
  background-color: var(--lightgray);
  font-weight: bold;
}

/* 次へのリンク */
.newslist .pagination .link_next a {
  margin-left: 1em;
  text-decoration: none;
  color: var(--base3);
  font-size: 14px;
}

/* ホバー効果 */
.newslist .pagination .link_page:hover {
  background-color: var(--lightblue);
  color: var(--base1);
  transition: all 0.3s ease;
}



/* スマホ対応 */
@media screen and (max-width: 768px) {
  .newsbox {
    flex-wrap: wrap; /* 折り返しを許可 */
    width: 100%;
    padding: 20px;
    margin: 0 auto 0;
    gap: 0;
  }

  .newslist,
  .sidebox {
    width: 100%;       /* 両方100%幅に */
    padding-left: 0;   /* 余白リセット */
    border-left: none; /* サイドボーダーを消す */
  }

  #contents .newslist ul,
  #contents .sidebox ul{
      padding: 0;
  }
  #contents .newsbox ul li a {
    display: block;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 5px;
    padding-right: 5px;
  }
  #contents .newsbox ul li a span {
    display: block;
    padding: 10px 0 0;
  }

  .sidebox {
    order: 2;          /* .sideboxは下に */
    padding-top: 4em;  /* 上余白を小さく */
    border-left: none;
  }

  .newslist {
    order: 1;          /* .newslistは上に */
  }
  .newslist .pagination {
    gap: 0.1em;
  }
  .newsbox .newslist .pagination a {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  #contents .newslist h3.head03 {
    margin-top: 0;
  }

}

/* =================================================
お知らせ詳細 　news.html　▶︎12/2　追加
==================================================== */
.newsbox.detail .news-date {
    margin-left: 0px;
    margin-bottom: 30px;
}
#contents .newsbox.detail .head02 {
	margin-bottom: 15px;
    background-color: transparent;
    padding: 0.6rem 1.5rem 0.6rem 0;
}
#contents .newsbox.detail .btn01 {
	text-align: right;
}


/* =================================================
数字で見る松下会　関連ページ
==================================================== */

.more-list{
    width: 86%;
    max-width: 1100px;
    margin: 0 auto 100px;
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 768px) {
	.more-list{
	    display: block;
	}
	.more-list li{
	    margin-bottom: 10px;
	}
}

.womens-container {
    max-width: 1100px;
    width: 90%;
    margin: 70px auto;
}

.womens-container p{
	margin: 0 0 20px;
	line-height: 1.8;
}

.womens-container p.title{
	font-size: 23px;
    font-weight: 700;
    line-height: 2.2;
}
.womens-container p.right{
    text-align: right;
}
.womens-container h3.mds-goal{
    font-size: var(--fs-h4);
    background: #FFFAEF;
    padding: 10px 20px;
    margin: 0 0 25px;
    border-radius: 4px;
}
.womens-container h3.mds-goal + p strong{
    font-size: var(--fs-h4);
}
.womens-container table {
    width: 100%;
    display: table;
    margin: 0 0 50px;
}
.womens-container td,
.womens-container th {
    border: 1px solid #999;
    padding: 15px;
    text-align: center;
}
@media screen and (max-width: 768px) {
.womens-container p.title {
    font-size: 20px;
    line-height: 2;
}
}


/* =================================================
 プライバシーポリシー
==================================================== */

.policy-container {
    max-width: 1100px;
    width: 90%;
    margin: 70px auto;
}
.policy-container p{
	margin: 0 0 20px;
	line-height: 1.8;
	font-size: var(--fs-body);
}
.policy-container h3.mds{
    color: #EE869A;
    margin: 50px 0 10px;
    font-size: var(--fs-h3);
}
.policy-container .list li{
    padding: 0 0 0 20px;
    position: relative;
    margin: 0 0 14px;
    line-height: 1.4;
    font-size: var(--fs-body);
}
.policy-container .list li::before{
	position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background: #d3d3d3;
    left: 0;
    top: 6px;
}

