@charset "UTF-8";

/* ==========================================================================
   企業情報ページ 共通・リセット設定
   ========================================================================== */
.cp-page-wrapper {
  width: 100%;
  background-color: #ffffff;
  box-sizing: border-box;
  margin-top: 0 !important;
  padding-top: 0.1px !important; /* マージンの折り畳み（隙間発生）を防止 */
  overflow: hidden;
}
.cp-page-wrapper *, 
.cp-page-wrapper *::before, 
.cp-page-wrapper *::after {
  box-sizing: border-box;
}

/* ==========================================================================
   メインタイトルエリア（横幅100%）
   ========================================================================== */
.cp-main-header {
  background-color: #003366; /* 画像に合わせた濃紺 */
  width: 100%;
  padding: 80px 0 60px 0;
  text-align: center; /* 親要素を中央揃えに指定 */
}
.cp-main-title {
  color: #ffffff;
  font-size: 34px;
  font-weight: 900;
  font-family: "Times New Roman", "Yu Mincho", "游明朝", "MS Mincho", serif;
  letter-spacing: 0.2em;
  margin: 0 0 55px 0;
  line-height: 1.2;
  text-align: center; /* タイトルテキスト自体を中央揃えに指定 */
  display: block;
}


/* ==========================================================================
   サブタイトルエリア（横幅100%）
   ========================================================================== */
.cp-sub-header {
  background-color: #ffffff; /* 画像に合わせた濃紺 */
  width: 100%;
  padding: 60px 0 35px 0;
  text-align: center; /* 親要素を中央揃えに指定 */
}
.cp-sub-title {
  font-size: 32px;
  font-weight: bold;
  color: #0b316a;
  margin: 0 0 10px 0;
  letter-spacing: 0.05em;
  font-family: "Arial Black", "Impact", "Noto Sans JP", "Hiragino Sans", "Segoe UI Black", "Meiryo UI", sans-serif;
}
.cp-sub-subtitle {
  font-size: 15px;
  color: #777777;
  margin: 0;
  font-weight: bold;
  color: #4a72b2;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}



/* ==========================================================================
   レスポンシブ対応（タブレット・スマホ：768px以下）
   ========================================================================== */
@media (max-width: 768px) {
  .cp-main-header {
    padding: 70px 0 45px 0;
  }
  .cp-main-title {
    font-size: 26px;
  }
  .cp-submenu-list {
    flex-direction: column;
    gap: 12px;
    margin: -25px 10% 0 10%;
    padding: 0;
    width:80%;
    
  }
  
	.cp-sub-header {
	  padding: 40px 0 15px 0;
	  text-align: center; /* 親要素を中央揃えに指定 */
	}
	.cp-sub-title {
	  font-size: 20px;
	}
	.cp-sub-subtitle {
	  font-size: 12px;
	}
}




/* [PC] MV全体の設定 */
.ctc-mv {
  margin-top:50px;
  width: 100%;
  height: 330px;
  background: linear-gradient(100deg, #4daae3 0%, #3083d2 45%, #2365bf 100%);
  overflow: hidden;
}

/* [PC] 中央揃えのコンテンツコンテナ（最大1100px） */
.ctc-mv__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  height: 100%;
  margin: 0 auto;
  padding: 0 60px;
}

/* [PC] 左側：タイトルエリア */
.ctc-mv__content {
  flex: 1;
}

/* [PC] 「よくある質問」タイトル */
.ctc-mv__title {
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1;
  letter-spacing: 0.08em;
  text-shadow: 2px 3px 4px rgba(16, 56, 119, 0.6); 
}

/* [PC] 右側：画像エリア */
.ctc-mv__image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.ctc-mv__image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* ==========================================================================
   レスポンシブ対応（ブレイクポイント：768px以下）
   ========================================================================== */
@media screen and (max-width: 768px) {
  /* スマホ時は高さを固定せず、上下パディングで綺麗な余白を確保 */
  .ctc-mv {
    height: auto;
    padding: 50px 0;
  }

  /* 縦並び（column）にし、要素を中央揃えに配置 */
  .ctc-mv__inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 32px; /* タイトルとイラストの間の絶妙な距離感 */
    padding: 0 24px; /* 画面端に文字がくっつかないための余白 */
  }

  /* テキストエリアの横幅をいっぱいまで広げる */
  .ctc-mv__content {
    width: 100%;
  }

  /* スマホ画面に合わせて文字サイズを少し縮小、視認性を維持 */
  .ctc-mv__title {
    font-size: 32px;
    letter-spacing: 0.06em;
    /* 画面サイズに合わせて、影の落ちる距離も微調整 */
    text-shadow: 1.5px 2px 3px rgba(16, 56, 119, 0.6);
  }

  /* 画像エリアを中央寄せに変更 */
  .ctc-mv__image {
    width: 100%;
    justify-content: center;
  }

  /* イラストがスマホ画面を圧迫しないよう、最大幅をきれいに制限 */
  .ctc-mv__image img {
    max-width: 220px;
  }
}

