@charset "utf-8";

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap'); */


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
	--base-color: #fff;					/*テンプレートの土台となる色（主に背景カラー）*/
	--base-inverse-color: #323232;		/*上のbase-colorの対となる色（主にテキストカラー）*/

	--primary-color: #a5d889;			/*テンプレートのメインまたはアクセントカラー*/
	--primary-inverse-color: #323232;	/*上のprimary-colorの対となる色*/

	--space-large: 6vw;			/*主に余白の一括管理用。画面幅100%＝100vwです。*/
}


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}

html,body {
	font-size: 16px;	/*基準となるフォントサイズ*/
	height: 100%;
	background-color: #F6F7F8;
}

	/*画面幅1200px以上の追加指定*/
	@media screen and (min-width:1000px) {

	html, body {
		font-size: 14px;
		scroll-behavior: smooth;
	}

	}/*追加指定ここまで*/

	/*画面幅1600px以上の追加指定*/
	@media screen and (min-width:1600px) {

	html, body {
		font-size: 1vw;
	}

	}/*追加指定ここまで*/


body {
	margin: 0;padding:0;
	font-family: "Noto Sans JP", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;	/*フォント種類*/
	font-optical-sizing: auto;
	font-weight: 500;
	-webkit-text-size-adjust: none;
	background: var(--base-color);		/*varは背景色のことで冒頭のbase-colorを読み込みます。*/
	color: var(--base-inverse-color);	/*文字色。冒頭で指定しているbase-inverse-colorを読み込みます。*/
	line-height: 2;		/*行間*/
}

/*リセット他*/
figure {margin: 0;}
dd {margin: 0;}
nav ul {list-style: none;}
nav,ul,li,ol {margin: 0;padding: 0;}
section li {margin-left: 1rem;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*input*/
input {font-size: 1rem;}

/*section*/
section {
	overflow-x: hidden;
	padding: var(--space-large);	
}

/*h2*/
h2{
	font-size: 3.5rem;
	line-height: 1.5;
	font-family: "Orbitron", serif;
	font-optical-sizing: auto;
	font-weight: bold;
	font-style: normal;
}
h2 span{
	font-size: 1.3rem;
	display: block;
	font-family: "Noto Sans JP", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	font-weight: bold;
	font-style: normal;
}


/*topに戻るボタン
---------------------------------------------------------------------------*/
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 4px;
    bottom: 10px;
    background: #dbffdd;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #000;
    border-right: 3px solid #000;
    transform: translateY(20%) rotate(-45deg);
}

/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: inherit;
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
}

/*マウスオン時*/
a:hover {
	text-decoration: none;	/*下線を消す*/
	opacity: 0.9;			/*色を90%だけ出す*/
}


/*container（サイト全体を囲むボックス）
---------------------------------------------------------------------------*/
#container {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	position: absolute;z-index: 1;
	left: 0px;
	top: 0px;
	width: 100%;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 60px;	/*ヘッダーの高さ*/
}

	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {

	header {
		height: 90px;	/*ヘッダーの高さ*/
	}

	}/*追加指定ここまで*/

/*ロゴ画像*/
#logo img {
	display: block;
	width: 150px;	/*ロゴの幅*/
}
#logo {
	margin: 0;padding: 0;
	padding-left: 3vw;	/*ロゴの左側に空ける余白*/
}

	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {

	/*ロゴ画像*/
	#logo img {
		width: 200px;	/*ロゴの幅*/
	}

	}/*追加指定ここまで*/


/*ヘッダー内メニュー
---------------------------------------------------------------------------*/
/*900px未満では非表示*/
header nav ul {display: none;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
		
	/*メニューブロック全体の設定*/
	header > nav > ul {
		margin-right: 100px;	/*ハンバーガーアイコンに重ならないように余白*/
		display: flex;			/*横並びにする*/
	}

	/*メニュー１個あたりの設定*/
	header nav li a {
		display: block;text-decoration: none;
		font-size: 0.9rem;		/*文字サイズ90%*/
		padding: 0.5rem 1rem;	/*メニュー内の余白。上下、左右へ。*/
	}
	
	/*ドロップダウンメニュー冒頭の矢印アイコン*/
	header nav i {
		padding-right: 0.5rem;	/*右に空ける余白*/
	}

	}/*追加設定ここまで*/


/*ヘッダー内メニュー、開閉メニュー、共通のドロップダウン設定
---------------------------------------------------------------------------*/
header nav ul ul,
.small-screen #menubar ul ul {
	animation: fadeIn 0.5s 0.1s both;	/*0.1秒待機後、0.5秒かけてフェードイン表示*/
}	


/*ヘッダー内メニューのドロップダウン
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
header nav ul ul {
	position: absolute;z-index: 100;
	margin-left: 1rem;
}

/*メニュー１個あたりの設定*/
header nav ul ul a {
	padding: 0.3em 1em;					/*上下、左右へのメニュー内の余白*/
	margin-top: 4px;					/*上に空けるスペース。ドロップダウン同士の隙間。*/
	background: var(--base-color);		/*背景色。冒頭のbase-colorを読み込みます。*/
	color: var(--base-inverse-color);	/*文字色。冒頭のbase-inverse-colorを読み込みます。*/
	border: 1px solid var(--base-inverse-color);	/*枠線の幅、線種、varは色の指定で冒頭のbase-inverse-colorを読み込みます。*/
	border-radius: 3px;					/*角を少し丸くする指定*/
}


/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#menubar {display: none;}
#menubar ul {list-style: none;margin: 0;padding: 0;}
#menubar a {display: block;text-decoration: none;}

/*上で非表示にしたメニューを表示させる為の設定*/
.large-screen #menubar {display: block;}
.small-screen #menubar.display-block {display: block;}

/*3本バーをデフォルトで非表示*/
#menubar_hdr.display-none {display: none;}

/*ドロップダウンをデフォルトで非表示*/
.ddmenu_parent ul {display: none;}

/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::before {
	font-family: "Font Awesome 6 Free";	/*Font Awesomeを使う指示*/
	content: "\f078";		/*使いたいアイコン名（Font Awesome）をここで指定*/
	font-weight: bold;		/*この手の設定がないとアイコンが出ない場合があります*/
	margin-right: 0.5em;	/*アイコンとテキストとの間に空けるスペース*/
}

/*メニューブロック内のロゴ画像の幅*/
#menubar .logo {
	width: 200px;
}


/*開閉メニュー
---------------------------------------------------------------------------*/
/*animation1のキーフレーム設定*/
@keyframes animation1 {
	0% {right: -100vw;}
	100% {right: 0px;}
}

/*メニューブロック設定*/
.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	right: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 90px 10vw 50px;	
	background: #eef5ea;
	color: #333;
	animation: animation1 0.2s both;
}

/*メニュー１個あたりの設定*/
.small-screen #menubar li {
	margin: 1rem 0;	
}
.small-screen #menubar a {
    padding: 1rem 2rem;
    text-align: center;
    border-bottom: 1px solid;
    width: 50%;
    margin: 0 auto;
}
.small-screen #menubar a:hover {
	opacity: .8;
}


@media screen and (max-width: 768px) {
	.small-screen #menubar a {
		width: 80%;
	}
}

/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	animation: fadeIn 0s 0.2s both;
	position: fixed;z-index: 101;
	cursor: pointer;
	right: 0px;				/*右からの配置場所指定*/
	top: 0px;				/*上からの配置場所指定*/
	padding: 15px;		/*上下、左右への余白*/
	width: 50px;			/*幅（３本バーが出ている場合の幅になります）*/
	height: 50px;			/*高さ*/
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transform-origin: right top;
	background: var(--base-inverse-color);	/*背景色。冒頭のbase-inverse-colorを読み込みます。*/
	border-radius: 0px 0px 0px 10px;		/*角を丸くする指定。左上、右上、右下、左下への順番。*/
}

	/*画面700px以上の追加指定*/
	@media screen and (min-width:700px) {

	#menubar_hdr {
		transform: scale(1.5);	/*1.5倍のサイズに。お好みで。*/
	}

	}/*追加指定ここまで*/


/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;	/*アニメーションにかける時間。0.3秒。*/
	border-top: 1.5px solid var(--base-color);	/*線の幅、線種、varは色のことで冒頭のbase-colorを読み込みます。*/
}

/*×印が出ている状態の3本バーの背景色*/
#menubar_hdr.ham {
	background: #ff0000;
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;	/*変形の起点。センターに。*/
}

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(6px, 5.8px);	/*回転45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(7px, -7px);	/*回転-45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2){
	display: none;	/*２本目は使わないので非表示にする*/
}



/*メイン画像
---------------------------------------------------------------------------*/
.firstview{
	background-image: url('../images/mainvisual.webp');
	background-size: cover;
	background-position: center;
	min-height: 360px;
  }
  .container{
	position: relative;
	width: 100%;
	height: 100%;
  }
  .text-white{
	color: #FFFFFF;
  }
  .firstview-lead{
	width: 200px;
	position: absolute;
	bottom: 0;
	left: 0;
	text-shadow: 0 0 5px #ccc;
	color: #333;
	font-weight: bold;
  }
  a.btn-more{
	display: inline-block;
	background-color: #16b320;
	padding: 0.5em 2em;
	text-decoration: none;
	border-radius: 50px;
  }


@media screen and (min-width: 600px) {
	.firstview{
		min-height: 506px;
	}
	
	.firstview-lead{
		font-size: 42px;
	}
	
	.firstview-lead{
		width: 320px;
		font-size: 25px;
	}
	
	.firstview-lead a.btn-more{
		font-size: 25px;
	}
}

@media (min-width: 1024px) {
	.firstview{
	  min-height: 1080px;
	}
	.firstview-lead{
		width: 500px;
		font-size: 50px;
	}
	
	.firstview-lead a.btn-more{
		font-size: 36px;
	}
}

/*事業内容
---------------------------------------------------------------------------*/
#business {
	background-image: repeating-linear-gradient(90deg, hsla(298,16%,68%,0.06) 0px, hsla(298,16%,68%,0.06) 1px,transparent 1px, transparent 21px,hsla(298,16%,68%,0.06) 21px, hsla(298,16%,68%,0.06) 22px,transparent 22px, transparent 72px),repeating-linear-gradient(0deg, hsla(298,16%,68%,0.06) 0px, hsla(298,16%,68%,0.06) 1px,transparent 1px, transparent 21px,hsla(298,16%,68%,0.06) 21px, hsla(298,16%,68%,0.06) 22px,transparent 22px, transparent 72px),repeating-linear-gradient(135deg, hsla(298,16%,68%,0.06) 0px, hsla(298,16%,68%,0.06) 1px,transparent 1px, transparent 21px,hsla(298,16%,68%,0.06) 21px, hsla(298,16%,68%,0.06) 22px,transparent 22px, transparent 72px),linear-gradient(90deg, hsl(275,3%,97%),hsl(275,3%,97%));
	background-size: contain;
	background-repeat: no-repeat;
    background-position: center;
}

@media screen and (max-width: 768px) {
	/* #business {
		background-image: url(../images/business_bg_sp.png);
	} */
}

/*メッセージ
---------------------------------------------------------------------------*/
#message{
	background: url(../images/message_bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
	position: relative;
}
#message::before{
	content: "";
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAAXNSR0IArs4c6QAAACBJREFUGFdjZEAC/////88I44M5IAASgHFAbEZkDkgAACAGEAEsi3uLAAAAAElFTkSuQmCC) 0% 0% / auto repeat;
	z-index: 0;
}
#message::after{
	content: "";
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(210, 255, 211, .6);
	z-index: 0;
}
#message .c {
	z-index: 2;
    position: relative;
}
#message .message-fl{
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 2;
}
.message-fl .ms-img{
	width: 45%;
	text-align: right;
}
.message-fl .ms-img img{
	border-radius: 10px;
	
}
.message-fl .ms-img img:nth-child(1){
	width: 100%;
}
.message-fl .ms-img img:nth-child(2){
	width: 65%;
	margin-top: -4rem;
	margin-right: -2rem;
}
.message-fl .ms-txt{
	width: 50%;
	line-height: 3;
	font-size: 1.2rem;
}
.message-fl .ms-txt h3{
	font-size: 1.8rem;
	border-bottom: 3px solid;
	padding: 1rem 0;
}

@media screen and (max-width: 768px) {
	#message .message-fl{
		display: block;
	}
	.message-fl .ms-img{
		width: 80%;
		margin: 0 auto;
	}
	.message-fl .ms-txt{
		width: 100%;
		line-height: 2.5;
	}
	.message-fl .ms-txt h3{
		padding: 0;
	}
}


/*写真リスト
---------------------------------------------------------------------------*/
.photo_list {
	width: 100%;
    display: flex;
	align-items: stretch;
    list-style-type: none;
}
.photo_list li{
	width: 25%;
	border: 1px solid #ccc;
	box-sizing: border-box;
}
.photo_list li img {
	border: 20px solid #fff;
}
@media screen and (max-width: 768px) {
	.photo_list {
		flex-wrap: wrap;
	}
	.photo_list li{
		width: 50%;
	}	
	.photo_list li img {
		border: 10px solid #fff;
	}
}
/*先輩社員の声
---------------------------------------------------------------------------*/
#koe {
	position: relative;
    overflow: hidden;
    z-index: 0;
	background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)),
	linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
	background-size: 16px 16px;
	background-repeat: repeat;
	background-position: center center;
}
.senpai{
	justify-content: space-between;
	border: 1px solid #908d8d;
    border-radius: 10px;
    margin-bottom: 2rem;
}
.senpai .ttl{
	display: flex;
	position: relative;
	align-items: center;
	margin-bottom: 2rem;
	background: linear-gradient(138deg, rgb(255 255 251), rgb(219 255 221));
}
.senpai .ttl-bg{
	padding: 30px;
}
.senpai .ttl h3 {
	font-size: 2rem;
	border-bottom: 2px solid #fff;
	padding: 0 1rem 1rem;
	margin-top: 0;
	font-weight: 400;
}
.senpai .ttl h3::first-letter {
	font-size: 3rem;
	color: #16b320;
	font-weight: 500;
}
.senpai figure{
	width: 35%;
	margin-right: 1.5rem;
}
.senpai .name {
	font-size: 1.5rem;
}
.senpai h4{
	color: #16b320;
	font-size: 1.2rem;
	margin-bottom: 0;
}
.senpai h4::before {
	content: "ー";
	margin-right: .7rem;
}
.senpai .text p {
	margin-top: 0;
}

/* タブ */

.tab-wrap {
	width: 85%;
	margin: 0 auto;
}
.tab-list {
	display: flex;
	padding-left: 1rem;
  }
  .tab-item {
	width: 19%;
	padding: 10px 0;
	border-radius: 6px 6px 0 0;
	background-color: #e28194;
	color: #999;
	text-align: center;
	cursor: pointer;
	transition: .4s ease-in-out;
  }
  .tab-item {
	background-color: #ededed;
    border: 1px solid;
    border-bottom: none;
  }
  /* タブをクリックした時 ホバーした時 */
  .tab-item:hover, .tab-item.is-active {
	color: #333;
  }
  .tab-item:hover, .tab-item.is-active {
	background-color: #16b320;
    border: 1px solid #333;
    border-bottom: none;
}

  /* パネル */
  .panel-list {
	background-color: #fff;
  }
  .panel-item {
	display: none;
	width: 100%;
	padding: 40px 30px;
	background-color: #fff;
  }
  .panel-item.is-active {
	display: block;
	animation: panel-show .9s ease-in-out forwards;
	background: #fcfffc;
  }
  
  /* パネル切り替えのアニメーション */
  @keyframes panel-show {
	from {
	  opacity: 0;
	}
	to {
	  opacity: 1;
	}
  }

@media screen and (max-width: 768px) {
	.tab-wrap {
		width: 100%;
	}
	.senpai .ttl{
		flex-wrap: wrap;
	}
	.senpai .ttl h3 {
		font-size: 1.3rem;
		line-height: 1.5;
	}
	.senpai .ttl h3::first-letter {
		font-size: 2rem;
	}
	.senpai .name {
		font-size: 1rem;
		text-align: center;
	}
	.senpai figure{
		width: 100%;
		margin: 0 auto;
	}
	.tab-item {
		width: 31%;
		line-height: 1.5;
	  }
	  .senpai .ttl-bg{
		padding: 15px;
	}
}


/*忍工業の強み
---------------------------------------------------------------------------*/
.bg_pattern {
	background-color: rgba(144,245,154,0.15);
	position: relative
  }
.Paper {
	background-color: #f8fff9;
  }

  #number h2{
	position: relative;
	font-family: "Noto Sans JP", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	letter-spacing: 2px;
  }
  #number h2::before{
	font-family: "Orbitron", serif;
	content: "Strength";
	font-size: 12rem;
	opacity: .05;
	position: absolute;
	top: 0;
	left: -50px;
	line-height: 0;
	letter-spacing: .1px;
	color: #16b320;
  }

  .st-wrapper{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  }
  .st-wrapper .st-item{
	width: 49%;
    background-color: #fcfcf8;
    border-radius: 10px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 2px 2px 15px #ccc;
    border: 1px solid #afc6b0;
    box-sizing: border-box;
    margin-bottom: 2rem;
  }
  .st-wrapper .st-item .st-ttl{
	margin-bottom: 2rem;
  }
  .st-wrapper .st-item h3{
	font-size: 1.6rem;
    line-height: 1;
    color: #003003;
    margin: 1rem 0;
    font-weight: 500;
    text-align: left;
	position: relative;
    padding-left: 30px;
  }
  .st-wrapper .st-item h3 span {
	background: linear-gradient(transparent 70%, #ffed4d 30%)
  }
  .st-wrapper .st-item h3::before {
	content: "";
    background-image: url(../images/bg_strength.png);
    display: inline-block;
    width: 50px;
    height: 50px;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: -40px;
    left: 0;
  }
  .st-item_cont {
	display: flex;
	justify-content: space-between;
	align-items: center;
  }
  .st-wrapper .st-item img {
	max-width: 25%;
	max-height: 300px;
  }
  .st-wrapper .st-item p{
	width: 70%;
	text-align: left;
  }
  @media screen and (max-width: 1024px) {
	.st-item_cont {
		flex-wrap: wrap;
	}
	.st-wrapper .st-item img {
		max-width: 50%;
		display: block;
		margin: 0 auto;
	}
	.st-wrapper .st-item p {
		width: 100%;
	}

  }


  @media screen and (max-width: 768px) {
	#number h2{
		font-size: 2.3rem;
		font-weight: bold;
	  }
	  #number h2::before{
		font-size: 6.5rem;
		top: 0;
		left: -10px;
	  }
		
	.st-wrapper{
		display: flex;
		flex-wrap: wrap;
	}
	.st-wrapper .st-item{
		width: 100%;
		margin-bottom: 1rem;
	}
	.st-wrapper .st-item .st-ttl{
		height: auto;
		padding-bottom: 1rem;
		margin-bottom: 0;
	  }
	.st-wrapper .st-item .st-ttl h4{
		margin-bottom: 0;
		line-height: 1.5;
		font-size: 1.3rem;

	}
	
   
  }

/*テキストスライド
---------------------------------------------------------------------------*/
.text-slide-wrapper {
	overflow-x: hidden;
	margin-top: calc(-1 * (1.6 * var(--space-large)));
	margin-bottom: -100px;
}
.text-slide {
	font-family: "Jost", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	display: flex;
	white-space: nowrap;
    font-size: 12vw;
	opacity: 0.05;
}
.text-slide span {
	padding: 0 40px;
}

@media screen and (max-width: 768px) {
	.text-slide-wrapper {
		margin-bottom: -50px;
	}
}	

  
	
/*選考の流れ
---------------------------------------------------------------------------*/
#flow {
	padding: 0;
}
.flow_design04 {
	width: 80%;
	margin: 0 auto;
}
.flow04 {
	padding-left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
  }
  
  .flow04 > li {
	list-style-type: none;
	width: 100%;
	max-width: 350px;
	display: flex;
  }
  
  .flow04 > li .icon04 {
	line-height: 2;
	width: 2em;
	height: 2em;
	text-align: center;
	color: #fff;
	background: #16b320;
	margin: 0 auto 10px;
	display: block;
	border-radius: 100vh;
	position: relative;
  }
  
  .flow04 > li .icon04::before {
	content: "";
	border: solid transparent;
	border-width: 7px;
	border-top-color: #16b320;
	position: absolute;
	top: calc(100% - 2px);
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
  }
  
  .flow04 > li dl {
	padding: 30px 20px;
	margin: 0;
	border: 3px solid #16b320;
	position: relative;
	width: 100%;
	background-color: #ffffff;
    border-radius: 10px;
  }
  
  .flow04 > li:not(:first-child) dl::before {
	content: "";
	width: 14px;
	height: 14px;
	margin-right: 10px;
	display: inline-block;
	border-top: 4px solid #16b320;
	border-right: 4px solid #16b320;
	position: absolute;
	top: calc(50% - 14px);
	left: -45px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
  }
  
  .flow04 > li dl dt {
	font-size: 1.3em;
	font-weight: 600;
	color: #16b320;
	-ms-flex-preferred-size: 20%;
	flex-basis: 20%;
	margin-bottom: 10px;
	text-align: center;
  }
  
  .flow04 > li dl dd {
	margin-left: 0;
	text-align: center;
  }
  .flow04 > li dl dd img{
	max-width: 150px;
  }
  
  @media(max-width: 768px){
	.flow04 {
	  gap: 20px;
	}
	.flow04 > li {
	  max-width: unset;
	  display: block;
	}
	.flow04 > li:not(:first-child) dl::before {
	  display: none;
	}
	
	.flow04 > li dl dd img{
		max-height: 100px;
	  }
  }



/*募集要項
---------------------------------------------------------------------------*/
#entry{
	position: relative;
}
.table-wrap {
	padding: 2rem;
	background-color: #fff;
    width: 100%; /* table幅を100%に指定 */
	margin: 0 auto;
	border-radius: 10px;
	box-shadow: 2px 2px 15px #ccc;
	box-sizing: border-box;
}
.table {
    border-collapse: collapse;
    table-layout: fixed;
    background: #fff;
    border: none;
}
.table th,
.table td {
    display: block; /* セルをブロック要素に指定 */
    width: 100%; /* セルを親要素いっぱいの幅に指定 */
    border: none;
    font-size: 14px;   
    padding: 10px;
    text-align: left;
    box-sizing: border-box;
}
.table th {
    font-weight: 700;
    background: #dbffdd; /* thの背景色 */
}

@media screen and (min-width: 768px) {
	
    .table th,
    .table td {
        display: table-cell; /* デフォルト値に指定 */
        border-bottom: 1px solid #ccc;
        color: #000;
        background: #fff;
		font-size: .9rem;
    }
    .table th {
		width: 30%;
        color: #000;
        background: #fff; /* thの背景色 */
    }
	.table td {
		width: 70%;
	}	
    .table tr th:first-child {
        width: 200px; /* thの固定幅 */
    }
	
}


.btn-gradient-radius {
	display: block;
    width: 25%;
    padding: 15px 20px;
    border-radius: 40px;
    text-decoration: none;
    color: #FFF;
    background-image: linear-gradient(45deg, #FFC107 0%, #ff8b5f 100%);
    transition: .4s;
    margin: 2rem auto;
    text-align: center;
    font-size: 1.3rem;
	min-width: 200px;
  }
  
  .btn-gradient-radius:hover {
	background-image: linear-gradient(45deg, #FFC107 0%, #f76a35 100%);
	transition: .5s;

  }

.ab-img{
	position: absolute;
	bottom: 0;
	right: 2rem;
	width: 500px;
	max-width: 30%;
	height: auto;
}

@media screen and (max-width: 1024px) {
	.ab-img{
		max-width: 30%;
	}
}

@media screen and (max-width: 767px) {
	.btn-gradient-radius {
		width: 80%;
		margin-bottom: 15rem;
	}
	.ab-img{
		max-width: 60%;
	}
}

/*フッター
---------------------------------------------------------------------------*/
footer {
	background: #fff;
	color: var(--primary-inverse-color);
	padding: 2rem;
	text-align: center;
	border-top: 1px solid #ccc;
}

/*Copyright部分*/
footer small {
	display: block;
}

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ff0000 !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb-space-large {margin-bottom: var(--space-large) !important;}
.look {line-height: 1.5 !important; display: inline-block;padding: 5px 10px;background: rgba(0,0,0,0.1);border: 1px solid rgba(0,0,0,0.3);border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}
.inline-block {display: inline-block !important;}
.relative {position: relative;}
.marker {background: linear-gradient(transparent 50%, yellow);}
pre {white-space: pre-wrap;word-wrap: break-word;overflow-wrap: break-word;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	.ws {width: 48%;display: inline;}
	.sh {display: none;}
	.pc {display: block;}
	.sp {display: none;}

	}/*追加指定ここまで*/


