@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
/**********************************/
/* 骨組み（全体背景）****************/
/**********************************/
*, *::before, *::after {
  box-sizing: border-box;
}
/* 画像 */
img {
	max-width: 100%;
  	height: auto;
  	vertical-align: middle; 
}
/* サイト全体の共通設定（色の辞書） */
:root {
	/* メインカラーの定義 */
	--color-Guidance: #f3869a;		/* 企業・事業主向け支援プログラム 	*/
	--color-Online: #00b6bc; 		/* 求職者向け支援プログラム 		*/
	--color-Delivery: #fcb814;		/* 就職促進支援プログラム 			*/
	--color-Invalid: #707070; 		/* マスク（終了・準備中） 			*/
	--main-color: #18becd;			/* 事業メインカラー					*/
	--base-color: #002059;			/* ベースの文字色					*/
	--btn-color: #f05b7e;			/* 申込ボタン						*/
}
body{
	margin: 0;
  	padding: 0;
	font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-size: 1.2em;
  	color: var(--base-color);
	width: 100%;
	height: 100%;
	text-align: center;
	overflow-x: hidden;
  	-webkit-text-size-adjust: 100%;
}
/* すべての入力要素に親（body）と同じフォントを強制する */
button, input, select, textarea {
  font-family: inherit;
}
/* 各イベントカラー設定 */
.event-color-Guidance { --event-color: var(--color-Guidance) }
.event-color-Online { --event-color: var(--color-Online) }
.event-color-Delivery { --event-color: var(--color-Delivery) }
.event-color-Invalid { --event-color: var(--color-Invalid) }
/* チラシのボタンカラー */
.flyer-top-color{ --flyer-color: var(--main-color)}

/* 文字装飾（全般）   **************/
.textcolor_green{ color:#008000; }
.textcolor_pink{ color:#e7467d; }
.textcolor_red{ color:#e83428; }
.textcolor_wine{ color:#931d23; }

.textsize_large{ font-size: 2rem !important; }
.textsize_middle{ font-size: 1.3rem !important; }
.textsize_small{ font-size: 0.8rem !important; }

.textwait_bold{	font-weight: bold; }

@media screen and (max-width: 768px) {
	body{
	  	font-size: 18px;
	}
}

/**********************************/
/* 基礎部分 ************************/
/**********************************/
.container {
	background-image: url(../img/bg_img.png);
	background-size: 100% auto;
	background-position: center bottom;
	background-repeat: no-repeat;
	background-attachment: fixed;
  	z-index: -99;
}
.wapper{
	max-width: 1800px;
	margin: 0 auto;
}
.sec_main{
	margin: 0 5%;
}
.sec_pglist{
	margin: 0 20px 100px;
	padding: 20px;
	background-color:rgba(255, 255, 255, 0.9);
	border-radius: 20px;
	z-index: -9;
}
.pc_only {
	display: block;
}
.sp_only {
	display: none;
}
@media screen and (max-width: 768px) {
	.container {
		background-image: url(../img/bg_img_sp.png);
		background-repeat: repeat;
		background-attachment: cover;
		z-index: -99;
	}
	.sec_main{
		margin: 0 2%;
	}
	.sec_pglist{
		margin: 0 10px 10px;
		padding: 0;
		border-radius: 20px;
	}
	.pc_only {
		display: none;
	}
	.sp_only {
		display: block;
	}
}
/**********************************/
/* ヘッダー ***********************/
/**********************************/
header{
	z-index: 10;
	width: 100%;
	top: 0;
	left: 0;
}
/* トップページのヘッダー */
.toppage_header{
	text-align: right;
	background: rgba(78, 195, 200, 0.95);
	box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.header_img {
	right: 0;
	width: 40%;
	height: auto;
}
/* 各イベントページのヘッダー全体の固定 */
.main-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(78, 195, 200, 0.95);
	box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.header-inner {
	max-width: 100%;
	margin: 0 auto;
	padding: 10px 20px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.header-logo img { 
	height: 60px; 
	width: auto; 
}

.header-inner .header-title{
	padding: 10px 20px;
	color: #ffffff;
	font-size: 1.5em;
	font-weight: bold;
	text-align: left;
}

/* ナビゲーション（PC） */
.nav-list {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 1rem;
  padding: 5px 0;
  position: relative;
}

/* 各メニューの下にボタンと連動した色線を出す（ホバー時） */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  transition: width 0.3s;
}
.line-Findwork:hover::after { width: 100%; background: var(--color-Findwork); }
.line-Company:hover::after { width: 100%; background: var(--color-Company); }
.line-Jobseeker:hover::after { width: 100%; background:var(--color-Jobseeker) }

/* トップボタンだけ目立たせる */
.nav-btn {
  background: #333;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 25px;
}
.nav-btn:hover {
  background: #fff;
  color: #333 !important;
  border: 2px solid;
  border-color: #333;
}

/* ハンバーガーボタン（初期は非表示） */
.menu-trigger { 
	display: none; 
}

/* --- スマホ表示（レスポンシブ） --- */
@media screen and (max-width: 768px) {
	.header_img {
		width: 70%;
	}
	.header-inner {
		padding: 10px;
	}
	.header-inner .header-title{
		font-size: 1.1em;
		padding: 10px 5px;
	}
	.header-logo img { 
		width: auto;
		height: 50px; 
	}
}

/* --- PCヘッダーのメニューが歪まないように早めに --- */
@media (max-width: 768px) {
  .menu-trigger {
    display: block;
    background: none;
    border: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
  }
  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #333;
    transition: all 0.4s;
  }
  .menu-trigger span:nth-child(1) { top: 0; }
  .menu-trigger span:nth-child(2) { top: 10px; }
  .menu-trigger span:nth-child(3) { top: 20px; }

  /* スマホメニュー（初期は画面外に隠す） */
  .nav-list {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 80%;
    height: calc(100vh - 60px);
    background: #fff;
    flex-direction: column;
    padding-top: 50px;
    transition: right 0.3s;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  }
  /* メニューが開いたとき */
  .nav-list.is-active { right: 0; }
  
  /* ハンバーガーが「×」に変わる動き */
  .menu-trigger.is-active span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
  .menu-trigger.is-active span:nth-child(2) { opacity: 0; }
  .menu-trigger.is-active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }
}

/**********************************/
/* ロゴ固定表示          ***********/
/**********************************/
/* 申込ボタンのコンテナ */
.fixed-logo-container {
	position: fixed;
	right: 0;
	top: 0x;
	z-index: 999;
	display: flex;
	flex-direction: column;
}
.fixed-logo-img {
	width: 100px;
	height: auto;
	border : var(--main-color) 2px solid;
}
@media (max-width: 768px) {
	.fixed-logo-container {
		display:none;
	}
}
/**********************************/
/* フッター ***********************/
/**********************************/
footer{
	margin-top: 30px;
	border-top: 30px solid #41c1c6;
}
.footer_inner{
	display: flex;
	padding:50px 0 50px 0 ;
	position:relative;
	color: #ffffff;
	background: #41c1c6;
	justify-content: center;
	align-items: center;
	text-align: center;
	flex-direction: column;
}
.footer_inner .logo_img{
	width: 100%;
	max-width: 450px;
	display: block;
}
.footer_inner img:hover{
  transform: scale(1.1);
}
.footer_shusai{
	font-size:200%;
	font-weight: bold;
}
.footer_jimu{
	font-size:110%;
}
.footer_copyright{
	font-size:80%;
}
@media screen and (max-width: 768px) {
	footer{
		margin-bottom: 50px;
	}
	.footer_inner{
		padding:20px 0 50px 0 ;
		position:relative;
	}
	.footer_inner .logo_img{
		max-width: 300px;
	}
	.footer_shusai{
		font-size:140%;
	}
	.footer_jimu{
		font-size:80%;
	}
}
/**********************************/
/* パンくず ***********************/
/**********************************/
.breadcrumb-area {
	padding: 10px;
	text-align: left;
	background-color: #efefef;
}
.breadcrumb-border {
    font-size: 0.9em;
    color: var(--event-color);
}
.breadcrumb-border a {
    color: var(--event-color);
}

.breadcrumb-border a:hover {
    color: var(--event-color);
	font-weight: bold;
}
.breadcrumb-border .divider {
    margin: 0 12px;
    color: var(--event-color);
}


/**********************************/
/* ボディ             **************/
/**********************************/
/* キャッチフレーズの文言 */
.catch_info_block{
	margin: 20px auto;
	padding: 10px;
}
.catch_label_img{
	width: 100%;
	height: auto;
}
@media screen and (max-width: 768px) {
	.catch_info_block{
		margin: 0;
		padding: 0;
	}
}
/* できることのボックス */
.cando_box_container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 20px;
	width: 100%;
	margin: 30px auto;
	padding: 10px;
	box-sizing: border-box;
	align-items: stretch;
}
.cando_box {
	display: flex;
	width: 310px;
	min-width: 310px;
	box-sizing: border-box;
	overflow: hidden; 
	box-shadow: 2px 2px 4px rgba(0,0,0,0.5);
	border: 10px solid var(--event-color);
	background-color: #ffffff;
	justify-content: center;
	flex-direction: column;
}
.cando_box .box_title{
	background-color: var(--event-color);
	color: #ffffff;
	font-weight: bold;
	font-size: 1.5rem;
	text-align: center;
	padding: 0 0 10px;
}
.cando_box .box_body{
	font-size: 1rem;
	padding: 5px;
	text-align: center;
	flex-grow: 1;
}
.cando_box .box_img{
	width: 100%;
	height: auto;
}
@media screen and (max-width: 768px) {
	.cando_box_container {
		margin: 0 auto;
		padding: 0;
	}
}
/* 利用登録案内のコンテナ */
.entry_guide_container {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 20px;
	width: 100%;
	margin: 30px auto;
	padding: 10px;
	box-sizing: border-box;
	align-items: stretch;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 20px;
}
/* LINEの登録ボタン */
.line_btn{
	width:500px;
}
.line_btn:hover{
  transform: scale(1.1);
}
@media screen and (max-width: 768px) {
	.entry_guide_container {
		flex-wrap: wrap;
		margin: 10px auto;
	}
	.line_btn{
		width:100%;
	}
}
/**********************************/
/* 申込ボタン（各ページ） ***********/
/**********************************/
/* 申込ボタンのコンテナ */
.fixed-apply-container {
	position: fixed;
	right: 0;
	top: 210px;
	z-index: 99;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* 申込のボタンデザイン */
.fixed-apply-btn {
	display: flex;
	align-items: center;
	color: #fff;
	text-decoration: none;
	padding: 12px 15px;
	border-radius: 30px 0 0 30px;
	box-shadow: -2px 2px 10px rgba(78, 195, 200, 0.7);
	transition: all 0.3s ease;
	overflow: hidden;
	white-space: nowrap;
	width: 80px;
	background-color: var(--btn-color);
	border: 2px solid #ffffff;
	flex-direction: column;
}

.fixed-apply-btn:hover {
  transform: scale(1.1);
}

/* アイコンの調整 */
.btn-icon {
	font-size: 2.5rem;
	min-width: 40px;
	display: inline-block;
	text-align: center;
}

/* テキストの調整 */
.btn-text {
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.2;
	writing-mode: vertical-rl;
}
@media (max-width: 768px) {
	.fixed-apply-container {
		top: auto;
		bottom: 5px;
		right: 0;
		width: 100%;
		flex-direction: row;
		transform: none;
		gap: 0;
	}
	.fixed-apply-btn {
		flex: 1;
		border-radius: 10px;
		width: auto;
		justify-content: center;
		padding: 10px 5px;
		height: 60px;
		margin: 0 10px;
		flex-direction: row;
	}
	.btn-text { 
		font-size: 1.3rem; 
		writing-mode: horizontal-tb;
	} 
}


/**********************************/
/* チラシダウンロード ***************/
/**********************************/
.download-section {
	display: flex;
	justify-content: center;
	padding: 20px 20px;
}

.btn-download {
	display: flex;
	align-items: center;
	background-color: #fff;
	border: 2px solid var(--flyer-color);
	color: var(--flyer-color);
	text-decoration: none;
	padding: 20px 30px;
	border-radius: 15px;
	transition: all 0.3s;
	max-width: 480px;
	align-items: stretch;
}

/* ホバー時の挙動 */
.btn-download:hover {
	background-color: var(--flyer-color);
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* アイコン */
.dl-icon {
	display: flex;
	flex-direction: column;
	align-items: center;
	align-content: center;
	margin-right: 20px;
	padding-right: 20px;
	border-right: 1px solid #ccc;
	justify-content: center;
}
.dl-arrow { 
	font-size: 2rem; 
}
/* PDFのアイコン */
.file-type {
	font-size: 0.75rem;
	font-weight: bold;
	background: #ff3333;
	color: #fff;
	padding: 2px 6px;
	border-radius: 4px;
	margin-top: 2px;
}
/* ボタン内のテキスト */
.dl-text { 
	text-align: center; 
	align-content: center;
}
.dl-label { 
	display: block; 
	font-size: 1.25rem; 
	font-weight: bold;  
}
.dl-info { 
	display: block; 
	font-size: 0.9rem; 
	color: inherit; 
}

/**********************************/
/* 事業説明               **********/
/**********************************/
.bis_discription{
	margin: 20px 90px;
	padding: 20px;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 20px;
}
.bis_discription_detail{
	margin: 0 auto;
	padding: 20px;
	width:100%;
	text-align: left;
	font-weight: bold;
}
@media screen and (max-width: 768px) {
	.bis_discription{
		margin: 20px 10px;
		padding: 0 10px;
	}
	.bis_discription_detail{
		padding: 0;
		margin-bottom:10px;
	}
}

/**********************************/
/* 見出し                **********/
/**********************************/
h1 {
	/*
	font-size: 2em;
	font-weight: bold;
	color: var(--base-color);
	*/
	padding: .5em 0 .5em .2em;
	border-left: solid 20px var(--main-color) ;
	border-bottom: solid 2px var(--main-color) ;
	font-size: 2em;
	font-weight: bold;
	color: var(--main-color);
	background-color: #ffffff;
	text-align: left;
}
h2 {
	font-size: 1.5em;
	font-weight: bold;
	color: var(--base-color);
}
.pg_main_theme {
	font-size: 2em;
	font-weight: bold;
	color: var(--base-color);
}
.pg_sub_theme {
	font-size: 1.2em;
	font-weight: bold;
	color: var(--base-color);
}
@media screen and (max-width: 768px) {
	.pg_main_theme {
		font-size: 1.5em;
	}
	.pg_sub_theme {
		font-size: 1em;
	}

}
