@charset "UTF-8";
/** -----------------------------------------------
  共通
------------------------------------------------**/
body {
	font-size: 16px;
	line-height: 1.6;
	color: #555252;
	font-family: "Zen Maru Gothic", "Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体", "Osaka", "Verdana", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: 500;
  text-align: justify;
  text-justify: inter-ideograph;
}

* {
  padding: 0;
  margin: 0;
}

a {
	text-decoration: none;
  color: #555252;
  transition: all .4s ease-in-out; /* ホバー時のアニメーション */
}

ul {
  list-style: none;
}

.jost {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
}

/* pc,sp表示
----------------------------------------------- */
.pc { display: block; }
.sp { display: none; }

/* h2,h3,h4
----------------------------------------------- */
h2,
h3 {
  text-align: center;
  margin-bottom: 40px;
}

h2 { font-size: 36px; }
h3 { font-size: 32px; }

h2 > .catch {
  width: 100%;
  display: block;
  font-size: 18px;
}

h4 { 
  font-size: 24px; 
  margin-bottom: 20px;
}

/* container
----------------------------------------------- */
.container {
  width: 960px;
  margin: 0 auto;
}

.container .text {
  text-align: center;
  margin-bottom: 40px;
}

/* lead
----------------------------------------------- */
.lead p {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 40px;
}

/** -----------------------------------------------
  CTA
------------------------------------------------**/
.btn-more01,
.btn-more02 {
  width: 100%;
  cursor: pointer;
}
.btn-more01 { margin-top: 24px; }
.btn-more02 { margin-top: 40px; }

.btn-more01 a,
.btn-more02 a {
  box-sizing: border-box;
  display: block;
	border: 1px solid #555252;
	color: #555252;
  padding: 15px 0;
  text-align: center;
	border-radius: 50px;
}

.btn-more01 a { font-size: 14px; }
.btn-more02 a { font-size: 16px; }

.btn-more01 a:hover,
.btn-more02 a:hover {
	background: #555252;
	color: #FFF;
}

/* 募集要項＋エントリー
----------------------------------------------- */
.btn-recuit,
.btn-entry {
	width: 100%;
  cursor: pointer;
}

.btn-recuit a,
.btn-entry a {
  box-sizing: border-box;
  display: block;
	border: 3px solid #C4AB80;
	font-weight: bold;
  padding: 15px 0;
  text-align: center;
	border-radius: 50px;
}

.btn-recuit a {
	background: #FFF;
	color: #C4AB80;
}

.btn-recuit a:hover {
	color: #555252;
  border-color: #555252;
}

.btn-entry a {
	background: #C4AB80;
	color: #FFF;
}

.btn-entry a:hover {
  background: #555252;
  border-color: #555252;
}

/* 黒背景
----------------------------------------------- */
.btn-black {
  width: 40%;
  margin: 40px auto 0;
}

.btn-black .btn {
  width: 100%;
  cursor: pointer;
}

.btn-black .btn a {
  box-sizing: border-box;
  display: block;
  background:#555252;
	color: #FFF;
  font-weight: bold;
  padding: 15px 0;
  text-align: center;
	border-radius: 50px;
}

.btn-black .btn a:hover {
	background: rgba(85, 82, 82, 0.5);
}

/** -----------------------------------------------
  fadein
------------------------------------------------**/

/* 1. 初期状態 (非表示) */
.fadein {
  opacity: 0; /* 初期状態は透明 */
  transform: translateY(20px); /* 20px下にずらしておく */
  transition: opacity 1s ease-out, transform 1s ease-out; /* アニメーションの時間と種類 */
  /* opacityは透明度、transformは移動をアニメーションさせる */
}

/* 2. 表示状態 (ふわっと表示) */
.fadein.is-visible {
  opacity: 1; /* 不透明にして表示 */
  transform: translateY(0); /* 元の位置に戻す */
}

/** -----------------------------------------------
  header
------------------------------------------------**/
header {
  width: 100%;
  position: sticky; /* スクロールに応じて固定/解除 */
  top: 0;/* 画面の上端から0の位置に達したら固定を開始 */
  padding: 20px 0;
  background: #FFF;
  z-index: 1;
}

#head-inner {
  width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* header-left
----------------------------------------------- */
.header-left {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

.head-logo a {
  display: flex;
}

.head-logo img {
  height: 30px;
}

.head-name {
  font-size: 14px;
}

/* header-right
----------------------------------------------- */
.header-right {
  display: flex;
  align-items: center; /* ボタン類を垂直方向の中央に揃える */
  gap: 20px; /* ボタンとメニューアイコンの間のスペース */
}

.header-right .cta {
	width: 240px;
}

/** -----------------------------------------------
  menu-wrapper
------------------------------------------------**/
.menu-wrapper {
  position: relative;
}

.menu-icon {
  width: 40px;
  height: 30px;
  position: sticky;
  position: -webkit-sticky;
  top: 20px;
  right: 80px;
  cursor: pointer;
  z-index: 2;
  display: inline-block;
}

/* 3本の線（初期状態） */
.menu-icon span {
  display: block;
  height: 4px;
  margin: 6px 0;
  background: #555252;
  border-radius: 2px;
  transition: 0.4s;
}

/* ハンバーガーがXに変形 */
#menu-toggle:checked + .menu-icon span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
#menu-toggle:checked + .menu-icon span:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked + .menu-icon span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

#menu-toggle:checked ~ .overlay {
  opacity: 1;
  pointer-events: auto;
}

/* メニュー本体
------------------------------------------------**/
.menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background: #FFF9F0;
  transform: translateY(-100%); 
  transition: transform 0.4s ease-out;
  padding-top: 40px;
  z-index: 1;
}

#menu-toggle:checked ~ .menu {
  transform: translateY(0);
}

/* メニュー中身
------------------------------------------------**/
.menu-inner {
  display: flex;
  width: 960px;
  margin: 40px auto;
  gap: 24px;
  flex-wrap: wrap;
}

.menu-box {
  width: 222px;
}

.menu-box .menu-cta {
  margin-bottom: 10px;
}

.menu ul {
  list-style: none;
}

.menu li {
  font-size: 14px;
  margin-bottom: 10px;
}

.menu li a:hover {
  opacity: 0.5;
}

.title {
	pointer-events: none;
}

/** -----------------------------------------------
  mainvisual
------------------------------------------------**/
#mainvisual {
  width: 100%;
  height: 100vh;
  max-height: 1000px;
  background: url(../images/mainvisual_pc.png) center center / cover no-repeat;
  position: relative;
}

.maincopy {
  position: absolute;
  top: 350px;
  left: 80px;
}

.maincopy img {
  height: 150px;
}

/** -----------------------------------------------
  news 最新情報
------------------------------------------------**/
#news {
  position: relative;
  width: 1280px;
  margin: 0 auto;
}

.news-inner {
  width: 960px;
  background: #FFF;
  box-sizing: border-box;
  padding: 40px;
  box-shadow: 0px 0px 20px rgba(85, 82, 82, 0.1);
  display: flex;
  justify-content: space-between;
  margin: -100px 0 0 auto;
}

#news .ttl {
  width: 160px;
}

#news .ttl h2 {
  font-size: 22px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 0;
}

#news .content {
  width: 630px;
}

#news .content a:hover {
  color: #C4AB80;
}

#news .content .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #555252;
  font-size: 14px;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

#news .content .box:last-child {
  margin-bottom: 0;
}

#news .content .box .data {
  display: flex;
  align-items: center;
}

#news .content .box .icon01,
#news .content .box .icon02,
#news .content .box .icon03 {
  width: 80px;
  box-sizing: border-box;
  padding: 3px;
  color: #FFF;
  text-align: center;
  margin: auto 40px;
}

#news .content .box .icon01 { background: #D0BB9A; }
#news .content .box .icon02 { background: #C4AB80; }
#news .content .box .icon03 { background: #AAA9A9; }

/** -----------------------------------------------
  concept 世界をやさしさでつつむ
------------------------------------------------**/
.concept {
  width: 960px;
  margin: 120px auto 0;
}

/** -----------------------------------------------
  about わたしたちについて
------------------------------------------------**/
.about {
  background: url(../images/about_bg_pc.png) top center / cover no-repeat;
  width: 100%;
  padding: 240px 0 120px;
}

/* about-mvv
----------------------------------------------- */
.about-mvv {
  /* 親要素を相対配置の基準にする */
  position: relative; 
  background: url(../images/about_bg_tri.svg) top center / 560px 720px no-repeat;
  /* 任意のサイズを設定 */
  width: 790px; 
  height: 712px;
  margin: 0 auto;
}

.about-mvv .circle {
  position: absolute; /* 絶対配置で三角形の頂点に配置 */
  width: 304px;
  height: 304px;
  display: flex;
  border-radius: 50%; /* 画像を円形にクリップ */
  overflow: hidden; /* 画像がはみ出すのを防ぐ */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* シャドウや背景色の設定 */
}

.about-mvv .circle img {
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

.about-mvv .circle a {
  display: block;
  position: relative;
}

.about-mvv .circle a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #C4AB80;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all .4s ease-in-out;
}

.about-mvv .circle a:hover {
  transform: scale(1.1);
}
.about-mvv .circle a:hover::before {
  opacity: .6;
}

/* 各要素を具体的な位置に配置 */
.mission {
  top: 0;
  left: 50%;
  transform: translateX(-50%); /* 中央寄せ */
}

.vision {
  bottom: 0;
  left: 0;
}

.value {
  bottom: 0;
  right: 0;
}

/* about-message
----------------------------------------------- */
.about-message {
  box-sizing: border-box;
  background: #FFF;
  display: flex;
  gap: 24px;
  padding: 40px;
  margin-top: 40px;
}

.about-message img,
.about-message dl {
  width: 50%;
}

.about-message dl dt {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
}

/** -----------------------------------------------
  biz わたしたちのおしごと
------------------------------------------------**/
.biz {
  background: #C4AB80;
  color: #FFF;
  width: 100%;
  padding: 120px 0;
}

.biz ul li {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.biz ul li img {
  width: 60%;
}

.biz dl {
  width: 40%;
}

.biz dl dt {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 32px;
}

.biz .btn-biz {
  width: 40%;
  margin: 0 auto;
}

.biz .btn-biz .more {
  width: 100%;
  cursor: pointer;
}

.biz .btn-biz .more a {
  box-sizing: border-box;
  display: block;
  background: #FFF;
	color: #C4AB80;
  font-weight: bold;
  padding: 15px 0;
  text-align: center;
	border-radius: 50px;
}

.biz .btn-biz .more a:hover {
	background: #555252;
	color: #FFF;
}

/** -----------------------------------------------
  env 私たちのいきかた
------------------------------------------------**/
.env {
  background: url(../images/env_bg.png) center center / cover no-repeat;
  width: 100%;
  padding: 120px 0;
}

.env-list {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.env-list li {
  width: 304px;
}

.env-list li img {
  width: 100%;
  border-radius: 50%; /* 画像を円形にクリップ */
  overflow: hidden; /* 画像がはみ出すのを防ぐ */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* シャドウや背景色の設定 */
}

.env-list li p {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}

.env-number {
  box-sizing: border-box;
  background: #FFF;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.env-number li {
  width: 202px;
}

.env-number li img {
  width: 100%;
}

/** -----------------------------------------------
  mem 私たちのなかま
------------------------------------------------**/
.mem {
  width: 100%;
  padding: 120px 0 80px;
}

/* ------------------------------------
  Slickとカードの基本的なスタイル
------------------------------------ */
.staff-slider {
  margin: 40px 0;
}

.staff-card {
  /* 左右の余白を確保するために padding を適用 */
  padding: 0 10px; /* カード間のスペースを作る */
}

/* ------------------------------------
  Slickとカードの中身
------------------------------------ */
.staff-card_img img {
  width: 100%;
}

.staff-card_info {
  font-size: 14px;
  margin: 16px 0 8px;
}

.staff-card_info h4.name {
  font-size: 22px;
  font-weight: bold;
  border-bottom: 1px solid #555252;
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.staff-card_info .link {
  text-align: right;
}

.staff-card_info .link a {
  display: flex;
  align-items: center;
  justify-content: end;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 8px; /* 線と文字の距離 */
  text-decoration-color: #C4AB80;
  text-decoration-thickness: 1px; /* 線の太さ */
  text-decoration-skip-ink: none;
}

.staff-card_info .link a:hover {
  opacity: 0.7;
}

.staff-card_info .link img {
  width: 14px;
  height: 14px;
}

/* ------------------------------------
  Slickの矢印デザイン (画像に合わせる)
------------------------------------ */
.slick-prev, 
.slick-next {
  position: absolute;
  top: 35%!important;
  transform: translate(0, -50%);
  cursor: pointer;
}

.slick-prev {
  left: -50px !important; /* スライダーの左外に配置 */
}

.slick-next {
  right: -25px !important; /* スライダーの右外に配置 */
}

/* 矢印アイコンの表示 (contentプロパティを使用) */
.slick-prev:before {
  content: '' !important;
  background: url(../images/arrow-l-cir.svg) center center /contain no-repeat;
  display: inline-block;
  width: 40px;
  height: 40px;
}

.slick-next:before {
  content: '' !important;
  background: url(../images/arrow-r-cir.svg) center center /contain no-repeat;
  display: inline-block;
  width: 40px;
  height: 40px;
}

/* mem-cta
----------------------------------------------- */
.mem-cta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mem-cta-btn {
  width: 49%;
  background: #C4AB80;
  box-sizing: border-box;
  display: flex; /* アイコンとテキストを横並びにするためにFlexboxを適用 */
  align-items: center; /* 垂直方向の中央に揃える */
  justify-content: center; /* 水平方向の中央に揃える */
  font-size: 20px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  padding: 15px 0;
  border-radius: 20px; /* 角を丸くする */
  transition: all .4s ease-in-out; /* ホバー時のアニメーション */
}

.mem-cta-btn:hover {
  background:#555252;
}

.mem-cta-btn .icon {
  margin-right: 20px;
  display: flex; /* アイコン画像などを中央に配置するため */
  align-items: center;
  justify-content: center;
  height: 60px;
}

.mem-cta-btn .icon img {
  height: 100%;
}

/** -----------------------------------------------
  rct つつむ活動の募集
------------------------------------------------**/
.rct {
  background: url(../images/rct_bg_pc.png) top center / cover no-repeat;
  width: 100%;
  padding: 120px 0;
}

.rct-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.rct-list li {
  width: 172px;
  text-align: center;
}

.rct-list li img {
  width: 100%;
}

.rct-list li p {
  margin-top: 16px;
  font-size: 22px;
  font-weight: bold;
}

/* rct-cta
----------------------------------------------- */
.rct-cta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px 0;
}

.rct-cta-btn {
  width: 49%;
  border-top: 1px solid #555252;
  border-bottom: 1px solid #555252;
}

.rct-cta-btn a {
  width: 100%;
  box-sizing: border-box;
  display: flex; /* アイコンとテキストを横並びにするためにFlexboxを適用 */
  align-items: center; /* 垂直方向の中央に揃える */
  font-size: 20px;
  font-weight: bold;
  padding: 20px 0;
}

.rct-cta-btn a:hover {
  opacity: 0.7;
}

.rct-cta-btn a::after {
  content: '';
  background: url(../images/arrow-r-cir.svg) center center /contain no-repeat;
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-left: auto;
  margin-right: 0;
}

.rct-link {
  width: 40%;
  margin: 0 auto;
}

/** -----------------------------------------------
  ety 私たちとつつむ活動
------------------------------------------------**/
.ety {
  background: url(../images/ety_bg.png) top center / cover no-repeat;
  width: 100%;
  padding: 120px 0;
}

.ety .thumb {
  width: 100%;
  margin-bottom: 40px;
}

.ety .thumb img {
  width: 100%;
}

.ety-link {
  width: 40%;
  margin: 0 auto;
}

/** -----------------------------------------------
  footer フッター
------------------------------------------------**/
.foot-menu {
  display: flex;
  width: 960px;
  margin: 40px auto;
  gap: 24px;
  flex-wrap: wrap;
}

.foot-menu h4 {
  color: #C4AB80;
}

/* footer-info
----------------------------------------------- */
.footer-info {
  box-sizing: border-box;
  width: 100%;
  background: #555252;
  padding-top: 40px;
}

.footer-info .inner {
  width: 960px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #FFF;
}

.footer-info .inner a {
  color: #FFF;
}

.footer-info .inner a:hover {
  opacity: 0.7;
}

/* footer-left
----------------------------------------------- */
.footer-left {
  display: block;
}

.foot-logo {
  display: flex;
  align-items: flex-end;
  gap: 32px; 
}

.foot-logo .logo img {
  height: 30px;
}

.foot-logo .sns {
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.foot-name {
  margin-top: 8px;
  font-size: 12px;
}

/* header-right
----------------------------------------------- */
.footer-right {
  font-size: 14px;
}

.footer-right ul {
	display: flex;
}

.footer-right ul li {
  border-right: 1px solid #FFF;
  padding: 0 10px;
}

.footer-right ul li:first-child {
  padding: 0 10px 0 0;
}

.footer-right ul li:last-child {
  border-right: 0;
  padding: 0 0 0 10px;
}

.footer-right .corporate {
  margin-top: 8px;
}

.footer-right .corporate a::after {
  content: '';
  background: url(../images/icon_corporate.svg) center center /contain no-repeat;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: auto;
  margin-right: 0;
  padding-left: 24px;
}

/* small
----------------------------------------------- */
.copyright {
  background: #FFF;
  text-align: center;
  padding: 3px 0;
}

small {
  font-size: 10px;
}


/*ここからメディアクエリで各デバイスサイズに書き分けます。
今回の課題で考慮するのはPCとスマホのみでOKですが、タブレットサイズでのスタイルを書いてもOK！
また、CSSは上から下に継承されるので、変化させ
/** -----------------------------------------------
  PC :  1280px
------------------------------------------------**/
@media screen and (max-width:1280px) {
  .btn-recuit a,
  .btn-entry a {
    padding: 10px 0;
  }

  /**
  header ヘッダー
  ----------------------------------------------- */
  header {
    box-sizing: border-box;
    padding: 20px;
  }

  #head-inner {
    width: 100%;
  }

  /**
  menu ハンバーガーメニュー
  ----------------------------------------------- */
  .menu-inner {
    width: 90%;
    gap: 3;
  }

  .menu-box {
    width: 23%;
  }

  /**
  news 最新情報
  ----------------------------------------------- */
  #news {
    width: 100%;
    box-sizing: border-box;
    padding: 0 40px;
  }

  .news-inner {
    width: 80%;
  }

  #news .ttl {
    width: 20%;
  }

  #news .content {
    width: 75%;
  }

  /* container
  -----------------------------------------------*/
  .container {
    width: 90%;
  }
  
  /*
  concept 世界をやさしさでつつむ
  ----------------------------------------------- */
  .concept {
    box-sizing: border-box;
    width: 100%;
    padding: 0 40px;
  }
}

/** -----------------------------------------------
  PC :  1024px
------------------------------------------------**/
@media screen and (max-width:1024px) {
  /** 
  header ヘッダー
  --------------------------------------------- **/
  .header-right .cta {
   width: 200px;
  }

  /** 
  mainvisual メインビジュアル
  --------------------------------------------- **/
  #mainvisual {
    max-height: 800px;
  }
  
  .maincopy {
    top: 300px;
    left: 40px;
  }

  .maincopy img {
    height: 100px;
  }

  /** 
  news 最新情報
  --------------------------------------------- **/
  .news-inner {
    width: 100%;
  }
}

/** -----------------------------------------------
  タブレット :  768px
------------------------------------------------**/
@media screen and (max-width:768px) {
  .jost {
    text-align: center;
  }

  /** 
  header ヘッダー
  --------------------------------------------- **/
  .header-left {
    display: block;
    flex-direction: column-reverse;
  }

  .head-name {
    margin-top: 4px;
  }

  .header-right {
    gap: 10px; /* ボタンとメニューアイコンの間のスペース */
  }

  .header-right .cta {
   width: 180px;
  }

  /**
  menu ハンバーガーメニュー
  ----------------------------------------------- */
  .menu-inner {
    width: 95%;
  }

  .menu-box {
    width: 31%;
  }

  /** 
  mainvisual メインビジュアル
  --------------------------------------------- **/
  #mainvisual .pc { display: none; }
  #mainvisual .sp { display: block; }

  .maincopy img {
    height: 200px;
  }

  /** 
  news 最新情報
  --------------------------------------------- **/
  .news-inner {
    width: 100%;
    display: block;
  }

  #news .ttl {
    width: 100%;
    margin-bottom: 24px;
  }

  #news .ttl h2 {
    text-align: center;
  }

  #news .content {
    width: 100%;
    display: block;
  }

  #news .content .box {
    width: 100%;
    display: block;
  }

  /** 
  about わたしたちについて
  --------------------------------------------- **/
  
  /* about-mvv
  --------------------------------------------- */
  .about-mvv {
    background: url(../images/about_bg_tri.svg) top center / 560px 720px no-repeat;
    width: 100%;
  }

  /* about-message
  --------------------------------------------- */
  .about-message {
    display: block;
    gap: 0;
  }
  
  .about-message img,
  .about-message dl {
    width: 100%;
  }
  .about-message img {
    margin-bottom: 40px;
  }

  /** 
  env 私たちのいきかた
  --------------------------------------------- **/
  .env-list li {
    width: 100%;
  }

  .env-number {
    gap: 1;
  }

  .env-number li {
    width: 20%;
  }

  /** 
  mem 私たちのなかま
  --------------------------------------------- **/
  .staff-card_info .link {
    margin-top: 8px;
  }

  .slick-prev { 
    left: -30px !important; 
    z-index: 1;
  }

  .slick-next { 
    right: -20px !important; 
  }
  
  /* 矢印アイコンの表示 (contentプロパティを使用) */
  .slick-prev:before {
    width: 30px;
    height: 30px;
  }

  .slick-next:before {
    width: 30px;
    height: 30px;
  }
  
  .mem-cta-btn {
    border-radius: 15px;
    padding: 15px;
    font-size: 18px;
   }

  .mem-cta-btn .icon {
    margin-right: 10px;
    height: 40px;
  }

  /** 
  rct つつむ活動の募集
  --------------------------------------------- **/
  .rct-list li {
    width: 19%;
  }

  /**
  footer フッター
  --------------------------------------------- **/
  .foot-menu {
    box-sizing: border-box;
    width: 100%;
    padding: 0 40px;
    gap: 1;
  }

  .foot-menu .menu-box {
    width: 31%;
  }

  /* footer-info
  --------------------------------------------- */
  .footer-info .inner {
    box-sizing: border-box;
    width: 100%;
    padding: 0 40px;
    display: block;
  }

  /* footer-left
  --------------------------------------------- */
  .footer-left {
    display: block;
  }
  
  .foot-logo {
    display: block;
    gap: 0; 
  }
  
  .foot-logo .logo {
    text-align: center;
    margin-bottom: 16px;
  }
  
  .foot-logo .sns {
    justify-content: center;
  }
  
  .foot-name {
    margin: 16px 0 24px;
    text-align: center;
  }

  /* footer-right
  --------------------------------------------- */
  .footer-right {
    width: 80%;
    margin: 0 auto;
  }
}

/** -----------------------------------------------
  Smartphone :  画面の横幅が640pxまで
------------------------------------------------**/
@media screen and (max-width: 640px) {

  /** 
  共通
  --------------------------------------------- **/
  body {
    font-size: 14px;
    line-height: 1.5;
    padding-bottom: 90px; 
  }

  /* pc,sp表示
  --------------------------------------------- */
  .pc { display: none; }
  .sp { display: block; }

  /* h2,h3,h4
  --------------------------------------------- */
  h2,
  h3 {
    margin-bottom: 24px;
  }
  
  h2 { font-size: 3.2vh; }
  h3 { font-size: 2.4vh; }
  
  h2 span.catch {
    font-size: 16px;
  }
  
  h4 { 
    font-size: 22px; 
    margin-bottom: 16px;
  }

  /* lead
  --------------------------------------------- */
  .lead p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  /* btn
  --------------------------------------------- */
  .btn-more01 a,
  .btn-more02 a {
    padding: 10px 0;
    font-size: 14px; 
  }

  .btn-black {
    width: 100%;
    margin: 24px auto 0;
  }

  /* btn-recuit,entry
  --------------------------------------------- */
  .btn-recuit a,
  .btn-entry a {
    padding: 20px 0;
  }

  /** 
  header ヘッダー
  --------------------------------------------- **/
  header {
    box-sizing: border-box;
    padding: 0 4% 2%;
  }

  .header-left {
    padding-top: 4%;
  }

  #head-inner {
    width: 100%;
  }

  .head-logo img {
    height: 20px;
  }

  .head-name {
    font-size: 8px;
  }

  /** 
  menu ハンバーガーメニュー
  --------------------------------------------- **/
  .menu-icon {
    width: 30px;
    height: 20px;
    top: 0;
    right: 0;
  }

  .menu {
    position: fixed;
    top: 0;
    right: 0; /* 右揃え */
    width: 100%;
    height: 100vh; /* SPでは全画面をカバー */
    overflow: scroll;
    background: #FFF9F0;
    /* SPデフォルト：右外に隠す */
    transform: translateX(100%);
    transition: transform 0.4s ease-out;
    padding-top: 40px;
    z-index: 1;
  }

  .menu li {
    font-size: 16px;
  }

  /* SP：チェックされたら右から出現 */
  #menu-toggle:checked ~ .menu {
    transform: translateX(0);
  }

  .menu-inner {
    box-sizing: border-box;
    width: 100%;
    padding: 0 4%;
    gap: 0;
  }

  .menu-box {
    width: 100%;
    border-top: 1px solid #555252;
    padding-top: 16px;
  }

  .menu-box h4.title {
    cursor: pointer;
    position: relative;
  }

  .menu-box h4.title::after {
    content: "";
    display: block;
    position: absolute;
    border-right: 2px solid #555252;
    border-top: 2px solid #555252;
    width: 12px;
    height: 12px;
    right: 4%;
    top: 12%;
    transform: rotate(135deg);
    transition: transform .3s ease-in-out, top .3s ease-in-out;
  }
  
  .menu-box h4.title.open::after {
    top: 45%;
    transform: rotate(-45deg);
  }

  .menu-box .btn-more01 {
    margin: 16px 0;
  }
	.title {
		pointer-events: all;
	}
	
	.toggle {
		display: none;
	}

  /** 
  mainvisual メインビジュアル
  --------------------------------------------- **/
  #mainvisual {
    background: url(../images/mainvisual_sp.png) center center / cover no-repeat;
    max-height: 500px;
  }

  .maincopy {
    top: 50%;
    left: 4%;
  }

  .maincopy img {
    width: 100%;
    height: auto;
  }

  /** 
  news 最新情報
  --------------------------------------------- **/
  #news {
    padding: 0 4%;
  }

  .news-inner {
    padding: 5%;
    margin: -50px 0 0 0;
  }

  #news .content .box .data {
    margin-bottom: 8px;
  }

  #news .content .box .icon01,
  #news .content .box .icon02,
  #news .content .box .icon03 {
    width: 70px;
    font-size: 12px;
    margin: auto 0 auto 16px;
  }

  /**
  container
  --------------------------------------------- **/
  .container {
    box-sizing: border-box;
    width: 100%;
    padding: 0 4%;
  }

  .container .text {
    margin-bottom: 24px;
  }
  
  /**
  concept 世界をやさしさでつつむ
  --------------------------------------------- **/
  .concept {
    padding: 0 4%;
    margin: 80px auto 0;
  }

  /**
  about わたしたちについて
  --------------------------------------------- **/
  .about {
    background: url(../images/about_bg_sp.png) top center / cover no-repeat;
    padding: 120px 0 40px;
  }
  
  /* about-mvv
  ----------------------------------------------- */
  .about-mvv {
    position: static;
    background: url(../images/about_bg_line.svg) top center /  88px 100% no-repeat;
    width: 100%; 
    height: auto;
    padding: 36px 0 24px;
  }
  
  .about-mvv .circle {
    position: static;
    width: 70%;
    height: 70%;
    display: block;
    margin: 0 auto 24px;
  }
  
  /* 各要素を具体的な位置に配置 */
  .mission {
    top: 0;
    left: 0%;
    transform: translateX(0%); /* 中央寄せ */
  }

  /* about-message
  --------------------------------------------- */
  .about-message {
    padding: 5%;
    margin-top: 24px;
  }

  .about-message img {
    margin-bottom: 16px;
  }
  
  .about-message dl dt {
    font-size: 2.3vh;
    margin-bottom: 16px;
  }

  /**
  biz 私たちのおしごと
  --------------------------------------------- **/
  .biz {
    padding: 40px 0;
  }

  .biz ul li {
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }
  
  .biz ul li:nth-of-type(1),
  .biz ul li:nth-of-type(3) {
    flex-direction: column-reverse;
  }

  .biz ul li img,
  .biz dl {
    width: 100%;
    margin-top: 8px;
  }

  .biz dl dt {
    font-size: 2.1vh;
    margin-bottom: 8px;
  }
  
  .biz .btn-biz {
    width: 100%;
  }
  
  .biz .btn-biz .more {
    width: 100%;
  }
  
  .biz .btn-biz .more a {
    padding: 20px 0;
  }

  /**
  biz 私たちのいきかた
  --------------------------------------------- **/
  .env {
    padding: 40px 0; 
  }
  
  .env-list {
    display: block;
    gap: 0;
    width: 85%;
    margin: 0 auto 24px;
  }

  .env-list li {
    width: 100%;
    margin-bottom: 24px;
  }

  .env-number {
    padding: 5%;
    gap: 0;
  }

  .env-number li {
    width: 48%;
    margin-bottom: 3%;
  }

  .env-number li:nth-of-type(n+7) {
    margin-bottom: 0;
  }

  /**
  mem 私たちのなかま
  --------------------------------------------- **/
  .mem {
    width: 100%;
    padding: 40px 0 0;
  }

  .staff-slider {
    margin: 24px 0;
  }
  
  .staff-card {
    padding: 0 30px;
  }

  .staff-card_info .link {
    font-size: 12px;
  }

  .slick-prev { 
    left: -5px !important; 
    z-index: 1;
  }

  .slick-next { right: 0px !important; }

  /* 矢印アイコンの表示 (contentプロパティを使用) */
  .slick-prev:before {
    width: 24px;
    height: 24px;
  }
  
  .slick-next:before {
    width: 24px;
    height: 24px;
  }

  /* mem-cta
  --------------------------------------------- */
  .mem-cta {
    display: block;
  }
  
  .mem-cta-btn {
    width: 100%;
    font-size: 16px;
    border-radius: 10px;
    margin-bottom: 16px;
  }
  
  .mem-cta-btn .icon {
    margin-right: 10px;
    height: 40px;
  }

  /**
  rct つつむ活動の募集
  --------------------------------------------- **/
  .rct {
    background: url(../images/rct_bg_sp.png) top center / cover no-repeat;
    width: 100%;
    padding: 100px 0 40px;
  }
  
  .rct-list {
    flex-wrap: wrap; /* 要素の合計幅が超えたら自動で改行させる */
    justify-content: center; /* 要素をコンテナ内で中央寄せにする */
  }

  /* 最初の2つの要素（上段）の幅を設定 */
  /* 2つ並べるので、コンテナ幅の約50%弱になるように設定 */
  .rct-list li:nth-child(1),
  .rct-list li:nth-child(2) {
    width: calc(100% / 2 - 40px); /* 50%から左右のmargin分を引く */
    /* 上段の項目を少し大きく見せるために、この幅設定で要素間のスペースを調整しています */
    /* 2つ並べた時に綺麗に並ぶ幅にしてください */
  }
  
  /* 3つ目以降の要素（下段）の幅を設定 */
  /* 3つ並べるので、コンテナ幅の約33.3%弱になるように設定 */
  .rct-list li:nth-child(n + 3) {
    width: calc(100% / 3 - 0px); /* 33.333%から左右のmargin分を引く */
    margin-top: 10px; /* 上段との縦のスペースを広くする */
  }

  .rct-list li img {
    max-width: 110px;
    width: 100%;
  }

  .rct-list li p {
    margin-top: 8px;
    font-size: 16px;
  }

  /* rct-cta
  --------------------------------------------- */
  .rct-cta {
    display: block;
    margin: 24px 0 8px;
  }
  
  .rct-cta-btn {
    width: 100%;
    margin-bottom: 16px;
  }
  
  .rct-cta-btn a {
    font-size: 16px;
  }
  
  .rct-cta-btn a::after {
    width: 24px;
    height: 24px;
  }
  
  .rct-link {
    width: 100%;
  }

  /**
  ety 私たちとつつむ活動
  --------------------------------------------- **/
  .ety {
    padding: 40px 0;
  }
  
  .ety .thumb {
    width: 100%;
    margin-bottom: 24px;
  }
  
  .ety-link {
    width: 100%;
  }

  /**
  footer フッター
  --------------------------------------------- **/
  .foot-menu {
    padding: 0 4%;
    justify-content: space-between;
    margin: 24px auto;
    gap: 0;
  }

  .foot-menu .menu-box {
    width: 100%;
    border-top: 1px solid #555252;
    padding-top: 16px;
  }

  .foot-menu h4 {
    font-size: 20px;
    color: #555252;
  }

  .footer-menu ul {
    width: 100%;
  }

  .foot-menu ul li{
    margin-bottom: 10px;
  }
  
  /* footer-info
  --------------------------------------------- */
  .footer-info .inner {
    padding: 0 4%;
    margin: 0 auto 24px;
    display: block;
    justify-content: space-between;
    align-items: flex-end;
  }
  
  /* footer-left
  --------------------------------------------- */
  .foot-logo .logo {
    margin-bottom: 4px;
  }
  
  .foot-logo .logo img {
    height: 20px;
  }
  
  .foot-name {
    margin: 4px 0 16px;
  }
  
  /* footer-right
  --------------------------------------------- */
  .footer-right {
    font-size: 12px;
  }

  .footer-right ul {
    display: block;
  }
  
  .footer-right ul li {
    border-right: none;
    padding: 0;
    margin-bottom: 4px;
  }
  
  .footer-right ul li:first-child,
  .footer-right ul li:last-child {
     padding: 0;
  }

  /**
  footer フッター固定ボタン
  --------------------------------------------- **/
  /* 固定ボタンコンテナの初期スタイル（非表示） */
  /* セレクタを .fixed-bottom-buttons から .js-fixed-ps に変更 */
  .js-fixed-ps { 
    box-sizing: border-box;
    position: fixed; 
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100; 
    display: flex;
    justify-content: space-between;
    padding: 10px; 
    background: #FFF; /* 背景色 */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); 
    opacity: 0; /* 初期状態は透明にしておく */
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out; /* アニメーションの準備 */
    transform: translateY(100%); /* 最初は画面外に隠しておく */
  }
  
  /* JavaScriptで追加するクラス：固定表示状態 */
  /* セレクタを .fixed-bottom-buttons .is-active から .js-fixed-ps.is-active に変更 */
  .js-fixed-ps.is-active {
    opacity: 1; /* スクロールしたら表示させる */
    transform: translateY(0); /* 画面内にスライドインさせる */
  }
  
  /* --- ボタンの個別スタイル --- */
  /* セレクタを .fixed-bottom-buttons から .js-fixed-ps に変更 */
  .js-fixed-ps .btn-foot-cta {
    width: 49%;
    border-radius: 50px;
  }
}