@charset "utf-8";
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400&display=swap");
* {
  padding: 0;
  margin: 0;
box-sizing:border-box;
}
body {
 font-family: Montserrat,Hiragino Sans;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  color: #2f2725;
  word-wrap: break-word;
  height: 100%;
background-color: rgba(247, 247, 247, 0.5);
background-image: url(image/noise.png);
background-repeat: repeat;
letter-spacing: 1px;
font-size:14px;
}

.eiji-font{
 font-family: Montserrat,Hiragino Sans;
}

:root {
  --main-blue: #0079c0;
  --bg-gray: #f8f9fa;
  --border-color: #0079c0;
  --card-bg: #ffffff;
--mv-blue: #0079c0; /* メインビジュアル指定色 */
  --btn-dark: #333333;
--footer-bg-blue: #0079c0;
  --text-white: #ffffff;
}

li {
  list-style-type: none;
}


/* リンク色 */
a {
  color: #2f2725;
  text-decoration: none;
}
a:hover {
  color: #2f2725;
  text-decoration: none;
}
/* テーブル基本設定 */
table {
  border-collapse: collapse;
}
table td {
  border-collapse: collapse;
}


/* ヘッダーメニュー */


/* 追加するボタンのスタイル */
.nav-btn {
margin-left: 50px;
    margin-right: 0px;
    display: inline-block;
    background-color: #2C2C2F;
    padding: 15px 55px;
    width: auto;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    white-space: nowrap;
    flex-shrink: 0;
 font-family: Montserrat,Hiragino Sans;
letter-spacing: 0.05em;
will-change: transform; /* ブラウザに動きを最適化させ、ガタつきを防ぐ */
transition: all 0.3s ease;
}
.nav-btn:hover { transform: translateY(-3px); }
.main-nav{
  width: auto;
}
/* ============================================================
   調整
   ============================================================ */
.u-fade-type-up{
    transform: translateY(120px);
    opacity: 0;
}

.u-fade-type-up.is-active{
    transition: 1s;
    transform: translateY(0);
    opacity: 1;
}
section::before {
  content:'';
  display: block;
  padding-top: 90px;
  margin-top: -90px;
}
@media (max-width: 1024px) {
section::before {
  content:'';
  display: block;
  padding-top: 70px;
  margin-top: -70px;
}
}
/* ============================================================
   ヘッダーメニュー(PC)
   ============================================================ */

/* ヘッダーの基本スタイル */
.site-header {
  position: fixed;      /* 画面に固定 */
  top: 0;               /* 一番上に配置 */
  left: 0;              /* 左端から配置 */
  width: 100%;          /* 横幅いっぱい */
  height: 100px;
  background-color: #fff;
  z-index: 1000;        /* 他の要素より手前に表示させる */
display: flex;
  align-items: center;
}

/* コンテナ（ロゴとナビを包む枠） */
.header-inner {
display: flex;
  /* justify-content: center; を以下に変更 */
  justify-content: space-between; /* ロゴとナビを両端に広げる */
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ロゴのサイズ調整 */
.logo {
width:20%;
padding-left:10px;
}
.logo img {
  height: 60px; /* ロゴの高さに合わせて調整 */
  display: block;
}
/* --- レスポンシブ対応（スマホサイズ） --- */
@media (max-width: 768px) {
.logo img {
  height: 40px; /* ロゴの高さに合わせて調整 */
  display: block;
}}

/* ナビゲーションのリスト */
.main-nav ul {
  display: flex; /* メニューを横並びにする */
  list-style: none;
align-items: center; /* これで横並びの要素の「中心」を揃える */
}

.main-nav li {
  margin-left: 30px; /* メニュー間の余白 */
display: flex;
  align-items: center; /* 中のテキストやボタンを上下中央に固定 */
}

.main-nav a {
text-decoration: none;
    color: #5D5D62;
    font-weight: 500;
    font-size: 14px;
}
.nav-btn-item a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
font-size:14px;
}

/* --- レスポンシブ対応（スマホサイズ） --- */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column; /* 縦並びにする */
    gap: 15px;              /* ロゴとメニューの間の隙間 */
  }

  .main-nav li {
    margin: 0 10px;         /* スマホでは左右の余白を均等に */
  }
}





/*-- ヘッダー表示  --*/
.header-pc{
  display:block;
}
.header-sp{
  display:none;
}
@media screen and (max-width: 1100px){
  .header-pc{
    display:none;
  }
  .header-sp{
    display:block;
  }}






/*-- PCSP版表示CSS  --*/
.pc_area{
  display:block;
}
.phone_area{
  display:none;
}
@media screen and (max-width: 1024px){
  .pc_area{
    display:none;
  }
  .phone_area{
    display:block;
  }}


/* PCメニュー文字サイズ */

.header .nav .item a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 0 10px; 
font-size:14px;
color:#2F2725;
}

@media screen and (max-width: 1680px){
.header .nav .item a {
font-size:14px;
}
}

@media screen and (max-width: 1366px){
.header .nav .item a {
font-size:12px;
}
}

@media screen and (max-width: 1280px){
.header .header__menu {
left: 300px;
top:10px;
}
.header .nav .item a {
font-size:10px;
}
}

@media screen and (max-width: 1024px){
.header .nav .item a {
font-size:9px;
}}



.header .btn a {
  display: block;
  text-align: center;
  margin: 0 auto;
  padding: 6px 28px;
  color: #fff;
  background: #444;
  box-shadow: 0 3px 5px rgb(0 0 0 / 50%);
  border-radius: 50px;
} 


/* ============================================================
   ハンバーガーメニューデザイン
   ============================================================ */
.drawer__button {
position: relative;     /* 内部の span の基準点としてのみ使用 */
  top: auto;              /* absolute 時の設定をリセット */
  right: auto;            /* absolute 時の設定をリセット */
  width: 40px;            /* クリックしやすいサイズ */
  height: 30px;
  margin: 0;              /* 余計なマージンをリセット */
  background-color: transparent;
  border: none;
  flex-shrink: 0;
    z-index: 999;
    cursor: pointer;
}
/* ハンバーガーボタン内の線 */
.drawer__button > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 2px;
background-color: #000000;
  transform: translateX(-50%);
}
.drawer__button > span:first-child {
  transform: translate(-50%, calc(-50% - 0.5rem));
  transition: transform 0.3s ease;
}
.drawer__button > span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.drawer__button > span:last-child {
  transform: translate(-50%, calc(-50% + 0.5rem));
  transition: transform 0.3s ease;
}
/* 1本目の棒の位置（少し上に配置） */
.drawer__button > span:nth-of-type(1) {
    top: 15px; /* 元の10pxから少し下げる */
}

/* 2本目の棒の位置（少し下に配置） */
.drawer__button > span:nth-of-type(2) {
    top: 15px; /* 元の20pxから少し下げる */
}
/* 展開時のデザイン */
.drawer__button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
background-color: #ffffff; /* ★ここを白に変更 */
}
.drawer__button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
background-color: #ffffff; /* ★ここを白に変更 */
}



/* メニューのデザイン */
.drawer__nav {
  position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
overflow: auto;
  -webkit-overflow-scrolling: touch;

}
.drawer__nav.active {
  opacity: 1;
  visibility: visible;
}
.drawer__nav__inner {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #007abf;
  padding: 4rem 1.5rem 1rem;
  margin: 0 0 0 auto;
/*  overflow: scroll; */
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.drawer__nav__inner {

}
.drawer__nav.active .drawer__nav__inner {
  transform: translateX(0);
}
.drawer__nav__menu {
display: block;
    color:#ffffff;
    text-decoration: none;
    padding: 30px;
    color: #ffffff;
    font-size: 18px;
}
.drawer__nav__link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 2rem;
    text-align: center;
    letter-spacing: 2px;
 font-family: Montserrat,Hiragino Sans;
}
.drawer__nav__link a{
  display: block;
color:#ffffff;
}

/* ハンバーガーメニュー展開時、背景を固定 */
body.active {
  height: 100%;
  overflow: hidden;
}



/* ============================================================
   スマホヘッダー
   ============================================================ */
.sp-header {
  position: fixed;
  z-index: 99333;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px; /* 高さを固定 */
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
}

.sp-header__inner {
  display: flex;
  justify-content: space-between; /* 左右に分散配置 */
  align-items: center;           /* これで「上下の中央」が完全に揃います */
  height: 100%;                  /* 70pxいっぱいに使う */
  padding: 0 15px;               /* 左右の端の余白 */
}

/* --- 1. ロゴの調整 --- */
.header__splogo {
  margin: 0;         /* 余計なマージンをリセット */
  line-height: 0;    /* 下の隙間を消す */
  flex-shrink: 0;    /* ロゴが潰れないように固定 */
}

.header__splogo img {
  width: auto;
  height: 40px;      /* ヘッダーの高さに合わせてバランス調整 */
  max-width: 300px;
}

/* --- 2. 問い合わせボタンの調整 --- */
.header__contact-btn {
  margin-left: auto;
    margin-right: 10px;
    display: inline-block;
    background-color: #2c2c2f;
    color: #fff;
    transition: background 0.3s;
    padding: 10px 25px;
    width: auto;
    max-width: 300px;
    height: auto;
    cursor: pointer;
    vertical-align: middle;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    flex-shrink: 0;
}

.header__contact-btn:hover {
  color: #ffffff !important;    /* 文字色を白にする */
  text-decoration: none;        /* 下線を消す（念のため） */
  opacity: 0.8;                 /* 少し透明にして「押した感」を出す（お好みで） */
}

/* ============================================================
   メインビジュアル
   ============================================================ */

.reskilling-banner {
    display: flex;
    width: 100%;
    min-height: 100vh; /* PCでは全画面表示 */
    flex-direction: row; /* 初期値：横並び */
margin-top:100px;
}


/* --- ビジュアルエリア --- */
.visual-pane {
    flex: 1;
    position: relative;
    background-image: url('image/header-pc.png');
    background-size: cover; /* 枠いっぱいに広げる */
    background-position: center top; 
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

/* スマホ用の設定も同様に修正 */
@media (max-width: 768px) {
    .visual-pane {
        flex: none;
        height: 400px; /* 少し高さを広げるとより上が切れにくくなります */
        background-position: center top; 
    }
}

.visual-text {
    color: #fff;
    text-align: center;
    font-weight: bold;
    letter-spacing: 12px;
    line-height: 1.4;
    /* 画像上の文字を読みやすくするための影（必要に応じて） */
    text-shadow: 0 0 15px rgba(0,0,0,0.2); 
 font-family: Montserrat,ヒラギノ角ゴ ProN W3;
}

.text-reskilling { font-size:70px; }
.text-service { font-size: 60px; }

@media (max-width: 768px) {
.text-reskilling { font-size:18px; }
.text-service { font-size: 14px; }
}
/* --- コンテンツエリア --- */
.content-pane {
    flex: 1;
    background-color: #007bc3; /* 特徴的なブルー */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.content-inner {
    width: 100%;
    max-width: 550px;
    text-align: center;
}

.catchphrase {
color: #fff;
    font-size: 30px;
    line-height: 2;
    font-weight: 400;
    margin-bottom: 40px;
    text-align: left;
    letter-spacing: 0.1em;

}

.btn-consult {
    display: block;
    background-color: #2C2C2F; /* 濃いグレー */
    color: #fff;
    text-decoration: none;
    padding: 20px;
    font-size: 20px;
font-family: Montserrat, Hiragino Sans;
    letter-spacing: 0.05em;
    will-change: transform;
    transition: all 0.3s ease;
}

.btn-consult:hover {
    background-color: #2c2c2f;
color:#ffffff;
}


.c-btn.big {
  transition-duration: .4s;
}
.c-btn.big:hover {
  transform: scale(1.1);
}





/* ============================================================
   スマホ表示用 (タブレット以下)
   ============================================================ */
@media (max-width: 1280px) {
.text-reskilling {
    font-size: 50px;
}
.text-service {
    font-size: 40px;
}
}
@media (max-width: 1080px) {
.content-inner {
    width: 90%;
}
}
@media (max-width: 1100px) {
.reskilling-banner {
margin-top:70px;
}
.text-reskilling {
    font-size: 50px;
}
.text-service {
    font-size: 40px;
}
.content-inner {
    width: 90%;
}

.catchphrase {
    font-size: 26px;
}
}


@media (max-width: 768px) {
    .reskilling-banner {
        flex-direction: column; /* 縦並びに変更 */
    }

    .visual-pane {
        flex: none;
        height: 50vh; /* 画面の半分を画像に */
    }

    .content-pane {
        flex: 1;
        padding: 60px 20px;
    }

.catchphrase {
    font-size: 20px;
    text-align: center;
}

.btn-consult {
    font-size: 14px;
}

.text-reskilling {
    font-size: 30px;
}
.text-service {
    font-size: 20px;
}
}



























/* ボタンのスタイル */
.main-btn {
    display: inline-block;
    background: linear-gradient(#0079c0, #54a2d4);
    color: #ffffff;
    padding: 25px 75px;
    width: 100%;
    max-width: 530px;
    height: auto;
    border-radius: 100px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(102, 126, 234, 0.4);
    border: 3px solid #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 26px;
    margin: 20px auto 0px auto;
  transition: transform 0.3s ease; /* 迫るアニメーション用 */
}

/* ボタンのホバー（迫る動き） */
.main-btn:hover {
  transform: scale(1.1);
color:#ffffff;
}

.main-title {
  color: #0079c0;
width:100%;
height:auto;
  font-size: 24px;
  font-weight: 600;
}

/* ============================================================
   Selection内共通
   ============================================================ */

.container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 3; /* 文字を装飾より前面に出す */
}

/* タイトル周り */
.sub-title {
  color: #0079c0;
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 5px;
  letter-spacing: 2px;
 font-family: Montserrat,ヒラギノ角ゴ ProN W3;

}

.main-heading {
  color: #0079c0;
  font-size: 32px;
  margin-bottom: 50px;
  letter-spacing: 2px;
}

.description p {
  color: #2f2725;
  line-height: 1.8;
  margin-bottom: 25px;
font-size:18px;
}


/* ============================================================
   1社1社に合わせて最適化する～ABOUT RESKILLING SERVICE
   ============================================================ */

.about-section {
  padding: 90px 10px;
  overflow: hidden;
border-bottom:1px solid #0079c0;
}

.about-container {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center; /* 縦方向中央揃え */
  gap: 40px;
}

/* --- テキスト側 --- */
.about-text-content {
  flex: 1;
}

.about-label {
  font-weight: 600;
  letter-spacing: 3px;
color: #0079c0;
    font-size: 16px;
  margin-bottom: 20px;
}

.about-title {
color: #0079c0;
    font-size: 36px;
  line-height: 1.5;
  margin-bottom: 30px;
  font-weight: bold;
  letter-spacing: 4px;
font-family: Montserrat, Hiragino Sans;
    font-weight: 500;
}

.about-description {
font-size: 14px;
    line-height: 1.7;
    color: #5D5D62;
    text-align: left;
}

.about-catchphrase {
  margin-top: 40px;
}

/* --- 画像側 --- */
.about-image-content {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-img {
  width: 100%;
  max-width: 500px; /* PCでの最大サイズ */
  height: auto;
  object-fit: contain; /* 画像を見切れさせない */
  display: block;
}

/* --- スマホ表示 (メディアクエリ) --- */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 20px;
  }

  .about-container {
    flex-direction: column; /* 上下並びに変更 */
    text-align: left;
    gap: 60px;
  width: 95%;
  }

  .about-text-content {
    width: 100%;
  }
.about-label {
    font-size: 14px;
}
  .about-title {
    font-size: 24px;
margin-bottom: 20px;

  }

  .about-image-content {
    width: 100%;
    order: 2; /* テキストの後に画像を配置 */
  }

  .about-img {
    max-width: 100%; /* スマホでは横幅いっぱいに */
  }
.about-description {
font-size: 14px;
}
}
/* ============================================================
   よくあるお悩み
   ============================================================ */

.problems-section {
  padding: 90px 10px;
  overflow: hidden;
border-bottom:1px solid #0079c0;
}

.problems-container {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.problems-label {
  font-weight: 600;
  letter-spacing: 3px;
color: #0079c0;
    font-size: 16px;
  text-align: left;
margin-bottom: 5px;
}

.problems-title {
color: #0079c0;
    font-size: 36px;
  line-height: 1.5;
  margin-bottom: 40px;
  letter-spacing: 4px;
font-family: Montserrat, Hiragino Sans;
    font-weight: 500;
text-align: left;
}

/* カードを横に並べるコンテナ */
.problems-card-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    width: 100%;
}

/* 個別のカード設定 */
.problem-card {
background: rgba(255, 255, 255, 0.5);
border: 1px solid #AAABB7;
  padding: 30px;
flex-direction: column;
box-sizing: border-box;
flex-basis: 32%;
}



.problem-card-img {
  width: 100%;
  margin-bottom: 20px;
text-align: center;
}

.problem-card-img img {
  max-width: 100%; /* イラストのサイズ調整 */
  height: auto;
}

.card-number {
  font-weight: bold;
  letter-spacing: 3px;
color: #0079c0;
    font-size: 14px;
  text-align: left;
    font-family: Montserrat, Hiragino Sans;
}
.card-text {
  font-size: 14px;
    line-height: 1.6;
    color: #5D5D62;
    text-align: left;
    font-family: Montserrat, Hiragino Sans;
}

/* ============================================================
   よくあるお悩み(SP)
   ============================================================ */
/* レスポンシブ（スマホで縦並びにする） */
@media (max-width: 768px) {
  .problems-section {
    padding: 60px 10px;
  }

.problems-container {
  width: 95%;
  }

.problems-card-wrapper {
    flex-direction: column; /* 縦に並べる */
    align-items: center;
  }
  .problem-card {
    width: 100%;
    max-width: 400px;
margin-bottom: 20px;
  }
  .problems-text-content {
    width: 100%;
  }



.problems-label {
    font-size: 14px;
}
  .problems-title {
    font-size: 24px;
margin-bottom: 30px;
  }

  .card-img {
    max-width: 100%; /* スマホでは横幅いっぱいに */
  }
.card-text {
font-size: 14px;
}
}


/* ============================================================
   プロ人材による解決
   ============================================================ */
.solution-section {
  padding: 90px 10px;
  overflow: hidden;
border-bottom:1px solid #0079c0;
}

.solution-container {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.solution-label {
  font-weight: 600;
  letter-spacing: 3px;
color: #0079c0;
    font-size: 16px;
  text-align: left;
margin-bottom: 5px;
}

.solution-title {
color: #0079c0;
    font-size: 36px;
  line-height: 1.5;
  margin-bottom: 40px;
  letter-spacing: 4px;
  text-align: left;
font-family: Montserrat, Hiragino Sans;
    font-weight: 500;
}

.solution-description {
font-size: 14px;
    line-height: 1.7;
    color: #2f2725;
    text-align: left;
}

.solution-catchphrase {
  margin-top: 40px;
}

/* カードを横に並べるコンテナ */
.solution-card-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
margin: 0 auto;
    width: 100%;
}
/* 個別のカード設定 */
.solution-card {
background: rgba(255, 255, 255, 0.5);
border: 1px solid #AAABB7;
  padding: 30px;
box-sizing: border-box;
flex-basis: 32%;
}

.solution-card-img {
  width: 100%;
  margin-bottom: 20px;
text-align: center;
}

.solution-card-img img {
  max-width: 100%; /* イラストのサイズ調整 */
  height: auto;
}

/* ============================================================
   プロ人材による解決(SP)
   ============================================================ */
/* レスポンシブ（スマホで縦並びにする） */
@media (max-width: 768px) {
  .solution-section {
    padding: 60px 10px;
  }
.solution-container{
  width: 95%;
}
.solution-card-wrapper {
    flex-direction: column; /* 縦に並べる */
    align-items: center;
  }
.solution-card {
    width: 100%;
    max-width: 400px;
margin-bottom:20px;
  }
.solution-label {
    font-size: 12px;
font-weight:400;
}
.solution-title {
    font-size: 24px;
margin-bottom: 20px;
font-weight:500;
  }

}













/* ============================================================
   プロジェクト事例紹介
   ============================================================ */
.projects-section {
  padding: 90px 10px;
  overflow: hidden;
border-bottom:1px solid #0079c0;
width:100%;
height:auto;
}

.projects-container {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.projects-label {
  font-weight: 600;
  letter-spacing: 3px;
color: #0079c0;
    font-size: 16px;
  text-align: left;
margin-bottom: 5px;
}

.projects-title {
color: #0079c0;
    font-size: 36px;
  line-height: 1.5;
  margin-bottom: 40px;
  letter-spacing: 4px;
  text-align: left;
font-family: Montserrat, Hiragino Sans;
    font-weight: 500;
}

.project-list {
width:100%;
  max-width: 1200px;
  margin: 0 auto;
}


/* 個別のリストカード */
.project-item-top {
  display: flex;
    align-items: center;
    border-top: 1px solid #AAABB7;
    border-bottom: 1px solid #AAABB7;
    padding: 15px 0px;
}

.project-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #a9a8b1;
  padding: 15px 0px;
}

/* 左側のラベル部分 */
.label {
    flex-shrink: 0;
    width: 240px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #5c6166;
    font-weight: 500;
    font-size: 14px;
    margin-right: 30px;
    padding: 5px 30px;
letter-spacing: 0.2em;
}
.label-bottom {
    flex-shrink: 0;
    width: 240px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    margin-right: 30px;
    padding: 5px 30px;
}
.label.blue { background-color: #E4E9EE; }
.label-bottom.orange { background-color: #0079c0; }

/* 右側の説明テキスト */
.content {
  font-size: 14px;
  line-height: 1.6;
  color: #5D5D62;
  text-align: left;
    letter-spacing: 0.1em;
}


.project-lead-text {
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 50px;
text-align:left;
color:#5D5D62;
}




.roadmap-container {
  width: 100%;
  max-width: 1200px; /* PC版最大幅 */
  margin: 40px auto;
    padding: 20px 0px 30px 0px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.roadmap-scroll-wrapper {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  align-items: stretch;
  min-width: 1080px; /* PCで収まる最小幅 */
}




/* --- カード比率の調整 --- */
.roadmap-card.single {
 /*  flex: 1;比率1 */
flex: 0 0 260px;
}

.roadmap-card.double {
/*   flex: 2.5; 比率2.5（情報の多いDAY2,3,5,6を広くする） */
flex: 0 0 540px;
}


/* スマホ・タブレット時は固定幅に切り替えてスクロールさせる */
@media (max-width: 1080px) {
  .roadmap-container {
    padding: 20px 0px 30px 0px;
    margin: 0;
  }
  .roadmap-scroll-wrapper {
    min-width: max-content;
  }
  .roadmap-card.single { flex: 0 0 360px; }
  .roadmap-card.double { flex: 0 0 640px; }
}

.roadmap-card {
  display: flex;
  flex-direction: column;
background: rgba(255, 255, 255, 0.5);
border: 1px solid #AAABB7;
padding: 15px 5px;
}

/* ヘッダー：高さを統一し下線を配置 */
.card-header-area {
  height: auto; /* 全カード共通 */
  display: flex;
    margin: 12px 12px 0px 12px;
  justify-content: space-around;
  gap: 15px;
    align-items: center;
}

.card-header-unit {
  text-align: center;
  color: var(--main-blue);
  padding-bottom: 6px;
  flex: 1;
  border-bottom: 1px solid var(--main-blue); /* 個別下線 */
}

.day {
    font-weight: 500;
    letter-spacing: 2px;
    color: #0079c0;
    font-size: 14px;
    text-align: center;
    font-family: Montserrat, Hiragino Sans;
}
.duration{
    letter-spacing: 2px;
    color: #0079c0;
    font-size: 14px;
    text-align: center;
    font-family: Montserrat, Hiragino Sans;
}
/* タイトル帯：高さを統一 */
.card-title {
  background-color: #e9ecef;
  margin:10px 10px 5px 10px;
  padding: 12px 5px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--main-blue);
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}

/* コンテンツ */

.card-content {
  padding: 0 12px 20px;
  font-size: 14px;
  line-height: 1.5;
  flex-grow: 1;
}

.card-content.split {
  display: flex;
  gap: 15px;
}

.content-left, .content-right {
  flex: 1;
}

.content-right {
  border-left: 1px solid #ced4da;
  padding-left: 15px;
}

dt {
  color: var(--main-blue);
  font-weight: 400;
  margin-top: 10px;
text-align: left;
line-height:1.6;
letter-spacing: 0px;
}

dt span {
  font-weight: normal;
text-align: left;
line-height:1.6;
letter-spacing: 0px;
}

dd {
  margin: 0;
  color: #5D5D62;
text-align: left;
line-height:1.6;
letter-spacing: 0px;
}

.highlight-text {
  color: var(--main-blue);
  font-weight: 400;
  margin-top: 10px;
text-align:left;
}


.day-arrow {
    flex: 0 0 40px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.project-area{
width: 100%;
    max-width: 450px;
    text-align: center;
margin: 0 auto 30px auto;
}
.btn-project {
    display: block;
    background-color: #2c2c2f; /* 濃いグレー */
    color: #fff;
    text-decoration: none;
    padding: 20px;
will-change: transform;
    transition: all 0.3s ease;
    font-size: 20px;
}
.btn-project:hover {
    background-color: #2c2c2f;
color:#ffffff;
}

/* ============================================================
   プロジェクト事例紹介(SP)
   ============================================================ */

/* レスポンシブ：スマホ対応 */
@media (max-width: 768px) {
.projects-section {
    padding: 60px 10px;
}
.projects-container{
  width: 95%;
}

.projects-label {
    font-size: 14px;
font-weight:400;
}

.projects-title {
    font-size: 24px;
margin-bottom: 20px;
font-weight:400;
}

.project-list {
width:100%;
height:auto;
  margin: 0 auto;
}
.project-item-top {
    flex-direction: column; /* 縦並びに変更 */
    align-items: flex-start;
padding: 15px 0px;
}
  .project-item {
    flex-direction: column; /* 縦並びに変更 */
    align-items: flex-start;
padding: 15px 0px;
  }
  .label {
    width: 100%;  /* スマホではラベルを少し小さく */
    height: 40px;
    font-size: 14px;
    margin-right: 0;
margin-bottom:20px;
  }
.label-bottom {
    width: 100%;  /* スマホではラベルを少し小さく */
    height: 40px;
    font-size: 14px;
    margin-right: 0;
margin-bottom:20px;
padding: 15px 0px;
}

.project-area {
    margin: 0 auto 10px auto;
}
.btn-project {
    padding: 20px;
    font-size: 14px;
}
}
/* ============================================================
   選ばれる理由セクション（画像6枚目）専用
   ============================================================ */
/* セクション全体の背景と余白 */
.reasons-section {
  padding: 90px 10px;
  overflow: hidden;
border-bottom:1px solid #0079c0;
}

.reasons-container{
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}


.reasons-label {
  font-weight: 600;
  letter-spacing: 3px;
color: #0079c0;
    font-size: 16px;
  text-align: left;
margin-bottom: 5px;
}

.reasons-title {
color: #0079c0;
    font-size: 36px;
  line-height: 1.5;
  margin-bottom: 40px;
  letter-spacing: 4px;
  text-align: left;
font-family: Montserrat, Hiragino Sans;
    font-weight: 500;
}

.reasons-list {
width:100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* リード文（研修の事務局対応?） */
.lead-text {
  font-size: 14px;
  color: #333333;
  margin-bottom: 50px;
text-align:left;
}

/* カードを横に並べるコンテナ */
.reasons-card-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    width: 100%;
}

/* 個別のカード本体 */
.reason-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #AAABB7;
    padding: 30px;
    flex-direction: column;
    box-sizing: border-box;
    flex-basis: 32%;
  display: flex;
}

.reason-card-content {
  line-height: 1.5;
  flex-grow: 1;
}

/* 「選ばれる理由 01」等の番号 */
.reason-number {
  font-weight: bold;
  letter-spacing: 3px;
color: #0079c0;
    font-size: 14px;
  text-align: left;
font-family: Montserrat, Hiragino Sans;
}

/* カード内のイラストエリア */
.reason-card-img {
  width: 100%;
  margin-bottom: 10px;
}

.reason-card-img img {
width: 100%;
  height: auto;
}

/* カード内タイトル（実務経験豊富な?） */
.reason-card-title {
color: #0079c0;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: left;
    font-family: Montserrat, Hiragino Sans;
    letter-spacing: 0.1em;
}

/* 箇条書きリスト */
.reason-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.reason-card-list li {
  position: relative;
  padding-left: 1.2em; /* ドットの分の余白 */
  font-size: 14px;
  line-height: 1.6;
  color:#5D5D62;
  margin-bottom: 10px;
text-align: left;
 font-family: Montserrat,Hiragino Sans;
}

/* 箇条書きの青いドット */
.reason-card-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 3px;
  color: #5D5D62;
  font-size: 14px;
}
/* ============================================================
   選ばれる理由セクション（レスポンシブ：タブレット・スマホ対応）
   ============================================================ */
@media (max-width: 768px) {
/* レスポンシブ（スマホで縦並びにする） */
  .reason-section {
    padding: 60px 10px;
  }

.reason-container {
  width: 95%;
  }

  .reasons-card-wrapper {
    flex-direction: column; /* ★横並びから縦並びに変更 */
    align-items: center;    /* 中央寄せ */
    gap: 20px;              /* カード間の隙間 */
  }
  .reason-card {
    width: 100%;
    max-width: 400px;
flex:1;
  }
  .reason-text-content {
    width: 100%;
  }

.reasons-label {
    font-size: 14px;
font-weight:400;
}
.reasons-title {
    font-size: 24px;
font-weight:400;
margin-bottom: 20px;
}

  .reasons-card-img {
    max-width: 100%; /* スマホでは横幅いっぱいに */
  }
.reason-card-text {
font-size: 12px;
}

.lead-text {
  font-size: 14px;
  color: #333333;
  margin-bottom: 30px;
text-align:left;
}
.reason-card-list {
    font-size: 14px;
}
.reason-card-list li {
    font-size: 14px;
}
}


/* ============================================================
   ご利用の流れ
   ============================================================ */
.flow-section {
  padding: 90px 10px;
  overflow: hidden;
border-bottom:1px solid #0079c0;
width:100%;
height:auto;
}

.flow-section-container{
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.flow-section-label {
  font-weight: 600;
  letter-spacing: 3px;
color: #0079c0;
    font-size: 16px;
  text-align: left;
margin-bottom: 5px;
}

.flow-section-title {
color: #0079c0;
    font-size: 36px;
  line-height: 1.5;
  margin-bottom: 40px;
  letter-spacing: 4px;
  text-align: left;
font-family: Montserrat, Hiragino Sans;
    font-weight: 500;
}
/* --- ご利用の流れ 基本（PC版）設定 --- */

.flow-group {
background: rgba(255, 255, 255, 0.5);
border: 1px solid #AAABB7;
  max-width: 1200px;
  margin: 0 auto 20px auto;
  overflow: hidden;
}
.flow-group-header {
    background: rgba(235, 240, 246, 1);
  color: #0079c0;
    letter-spacing: 0.1em;
  font-size: 18px;
padding: 15px 0px;
}

/* PC版の並び：Flexbox */
.flow-item-wrapper {
display: flex;
  justify-content: center;
  gap: 5px; /* ボックス間の隙間 */
  max-width: 1000px; /* ここを3つ並びに最適な幅にする */
  padding: 40px; /* 画面端との余白を確保 */
  width: 100%;
margin:0 auto;
}
.flow-item-wrapper.row-last {
  max-width: 666px; /* (280px * 2) + 矢印 + gap 程度の幅に制限する */
}
.flow-item {
position: relative;
flex: 0 1 280px; 
  width: 280px; /* 明示的な固定幅 */
    padding: 35px 5px;
    background: rgba(235, 240, 246, 1);
    display: flex;
    flex-direction: column;
  align-items: center;
  text-align: center;
}

.flow-step-label {
color: #0079c0;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 5px;
    letter-spacing: 1px;
    font-family: Montserrat, Hiragino Sans;
}

.flow-box {
width: 170px;
    height: 85px;
    color: #0079c0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
}

.flow-img img {
  width: 100%;
  height: 90px;
}

/* PC用矢印の設定 */
.flow-arrow {
flex: 0 0 30px;
width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
margin: 0 auto 20px auto;
}


/* PCではスマホ用矢印を隠す */
.pc-only { display: block; }



/* ============================================================
   ご利用の流れ（スマホサイト用）
   ============================================================ */
@media (max-width: 1024px) {
  /* PC専用の矢印（STEP3後・STEP4前）を完全に消す */
  .pc-only { display: none !important; }


  /* 縦並びに変更 */
  .flow-item-wrapper {
    flex-direction: column;
    gap: 0;
    max-width: 1000px;
    padding: 20px;
    width: 95%;
    margin: 0 auto;
  }

  .flow-item {
    width: 100%;
    flex: none;
    margin-bottom: 0;
    padding: 20px;
max-width: none
  }

  /* スマホ版の中身レイアウト（横並び） */
  .flow-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
  }

  .flow-box {
    flex: 1;
    width: auto;
    margin-bottom: 0;
    min-height: 70px;
  }

  .flow-img {
    width: 40%;
  }

  /* スマホ用下向き矢印に画像を差し替え */
  .flow-arrow {
display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto !important;
  }

  /* グループ間の大きな下矢印 */
  .flow-group-connector-sp {

    width: 25px;
    height: 25px;
    background-image: url("img/arrow-orange-sp.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 15px auto;
  }
.flow-group {
    margin-bottom: 0;
  }

.flow-section-label {
  font-weight: 400;
    font-size: 14px;
}

.flow-section-title {
        font-size: 24px;
        font-weight: 400;
        margin-bottom: 10px;
}}
/* ============================================================
   フッター背景画像
   ============================================================ */

/* 背景画像エリア */
.footer-visual {
  width: 100%;
  height: 600px;       /* ★高さを固定（px指定）することで中央がズレなくなります */
  background-image: url("https://sw-style.jp/sample-001/image/footer-pc.png");
  background-size: 1920px auto;
  background-position: center center; /* 画像自体の中心を合わせる */
  background-repeat: no-repeat;
  display: flex;
  justify-content: center; /* 左右中央 */
  align-items: center;     /* 上下中央 */
  position: relative;
}

/* 白いボックス */
.footer-visual-center {
  width: 1100px;           /* ご希望の幅 */
  padding: 50px 40px;      /* ボックス内の余白 */;
  text-align: center;      /* 中の文字とボタンを中央寄せ */
}


.footer-title {
  color: #ffffff;
width:100%;
height:auto;
  font-size: 24px;
  font-weight: 600;
}

.footer-text {
  color: #ffffff;
width:100%;
height:auto;
  font-size: 14px;
  font-weight: 600;
}






/* ============================================================
   よくある質問
   ============================================================ */

.faq-section {
  padding: 90px 10px;
  overflow: hidden;
width:100%;
height:auto;
}

.faq-section-label {
  font-weight: 600;
  letter-spacing: 3px;
color: #0079c0;
    font-size: 16px;
  text-align: left;
margin-bottom: 5px;
}

.faq-section-title {
color: #0079c0;
    font-size: 36px;
  line-height: 1.5;
  margin-bottom: 40px;
  letter-spacing: 4px;
  text-align: left;
font-family: Montserrat, Hiragino Sans;
    font-weight: 500;
}

.faq-container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.faq-item {
  border: none;
  margin-bottom: 20px;
  overflow: hidden;
}

/* 質問エリア */
.faq-question {
  display: flex;
  align-items: center;
  padding: 20px 25px;
background-color:#EBF0F6;
  border-top: 1px solid #AAABB7;
text-align:left;
}

.faq-q-icon {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #0079c0;
  margin-right: 20px;
}

.faq-q-text {
  font-size: 16px;
  font-weight: 500;
  color: #0079c0;
  flex: 1;
}

/* 回答エリア */
.faq-answer {
display: flex;
    padding: 25px;
    border-bottom: 1px solid #AAABB7;
text-align: left;

}

.faq-a-icon {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #0079c0; /* 回答はアクセントカラーのオレンジ */
  margin-right: 20px;
}

.faq-a-text {
  font-size: 14px;
  line-height: 1.6;
color: #5D5D62;
}

/* ============================================================
   よくある質問(スマホ表示)
   ============================================================ */
/* --- スマホ表示 (max-width: 768px) --- */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 10px;
  }

.faq-container {
    width: 95%;
}

  .faq-question {
flex-direction: column; /* 要素を縦に並べる */
    align-items: flex-start; /* 左寄せにする */
    padding: 20px 15px;      /* 余白の微調整 */
  }

  .faq-q-icon, .faq-a-icon {
margin-right: 0;        /* 横の余白を消す */
    margin-bottom: 10px;    /* 下に隙間を作って改行させる */
    font-size: 14px;
  }

.faq-section-label {
font-weight: 400;
    font-size: 14px;
}

.faq-section-title {
font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;

}

  .faq-q-text {
font-size: 14px;
    padding-right: 20px;    /* 右側のアイコンに被らないように */
    line-height: 1.5;
  }

  .faq-answer {
flex-direction: column; /* 要素を縦に並べる */
    align-items: flex-start; /* 左寄せにする */
    padding: 20px 15px;      /* 余白の微調整 */
text-align: left;
  }

  .faq-a-text {
font-size: 14px;
    padding-right: 20px;    /* 右側のアイコンに被らないように */
    line-height: 1.5;
  }
/* プラスマイナスアイコンの位置調整（縦並びになっても右端に固定） */
  .faq-toggle-icon {
    top: 25px; /* 上からの位置を調整（Qの高さに合わせるなど） */
  }
}












/* ============================================================
   フッター前
   ============================================================ */

.mv-split {
  display: flex;
  width: 100%;
  height: 500px; /* PC版の高さ */
  overflow: hidden;
}

.mv-left {
  flex: 1;
  background-color: #eee;
}

.mv-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-right {
  flex: 1;
  background-color: #0079c0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.mv-text-content {
  color: #fff;
  width: 100%;
  max-width: 450px;
}

.mv-sub {
font-size: 28px;
    line-height: 1.6;
    margin: 0 0 15px 0;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.mv-main {
font-size: 16px;
    font-weight: normal;
    margin: 0 0 30px 0;
    letter-spacing: 0.1em;
}

.mv-btns {
  display: flex;
  flex-direction: column;
}

.btn-mv {
  display: block;
  background-color: var(--btn-dark);
  color: #fff;
  text-decoration: none;
  padding: 20px;
  text-align: center;
  font-weight: 400;
    width: 80%;
    will-change: transform;
    transition: all 0.3s ease;
}

.btn-mv:hover {
    background-color: #2c2c2f;
color:#ffffff;
}

.bottom{
margin-bottom:10px;
}

/* --- スマホ表示用設定 (画像の通りに縦並び) --- */
@media (max-width: 768px) {
  .mv-split {
    flex-direction: column; /* 縦に並べる */
    height: auto;
  }

  .mv-left {
    width: 100%;
    height: 350px; /* 上側の画像の高さ */
flex: none;
  }

  .mv-right {
    width: 100%;
    padding: 60px 10px; /* 下側の青い部分の余白 */
    text-align: center; /* テキストを中央寄せ */
  }

  .mv-text-content {
    max-width: 95%;
  }

  .mv-sub {
    font-size: 20px;
    margin-bottom: 20px;
text-align: left;
  }

  .mv-main {
    font-size: 14px;
    margin-bottom: 40px;
text-align: left;
  }

  .mv-btns {
    align-items: center; /* ボタンを中央に配置 */
  }

  .btn-mv {
    width: 100%;
    height:auto;
  }
}

/* ============================================================
   フッター
   ============================================================ */
/* --- パソコン用設定 (基本のスタイル) --- */
.site-footer {
  background-color: var(--footer-bg-blue);
  color: var(--text-white);
  padding: 60px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start; /* 左寄せの基準 */
  align-items: flex-start;
}

.footer-logo {
  text-align: left;
  width: 160px; /* ロゴの幅を固定 */
  margin-right: 40px; /* ★ロゴと右側テキストの余白（約1cm） */
}

.footer-logo img {
  max-width: 150px;
  height: auto;
}

.footer-right-content {
  flex: 1; /* 残りの幅を使い切る */
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left; /* 右側のテキストリンクを左寄せ */
  display: flex;
  flex-direction: column;
  gap: 15px; /* リンク同士の縦幅 */
}

.footer-nav a {
  color: var(--text-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
}

.copyright {
  font-size: 0.75rem;
  margin-top: 40px; /* リンクエリアとの間隔 */
  text-align: right; /* PC版ではコピーライトも左寄せ */
  opacity: 0.9;
  font-family: 'Montserrat', sans-serif;
}

/* --- スマホ用設定 (画面幅が767px以下の場合) --- */
@media (max-width: 767px) {
  .site-footer {
    padding: 40px;
  }

  .footer-inner {
    flex-direction: column; /* 縦並びに変更 */
margin: 20px 0px;
  }


.footer-logo {
  text-align: left !important; /* 他の設定より優先させる */
    margin-bottom: 30px;
}

.footer-logo img {
  display: block;  /* 画像をブロック要素にする */
  margin: 0;       /* 左右の中央寄せを解除 */
}


  .footer-right-content {
    text-align: center;
    width: 100%;
  }

  .footer-nav ul {
    text-align: left; /* リンクを中央寄せ */
  }

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

  .copyright {
    margin-top: 30px;
    text-align: left; /* コピーライトを中央寄せ */
  }
}


/* ============================================================
   page top
   ============================================================ */
.pagetop_pc_outer{
  padding: 10px 10px 30px 10px;
    overflow: hidden;
    width: 98%;
    height: auto;
    display: flex;
    justify-content: flex-end;
    margin: 0 auto;
}
.pagetop_pc {
    height: 60px;
    width: 60px;
    background-color: rgba(44, 44, 47, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    color: #ffffff;
    font-family: Montserrat, Hiragino Sans;
    font-size: 14px;
}

.pagetop_sp {
    height: 60px;
    width: 60px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background-color: rgba(44, 44, 47, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    color: #ffffff;
    font-family: Montserrat, Hiragino Sans;
    font-size: 14px;
}