@charset "utf-8";

/*全体の設定
---------------------------------------------------------------------------*/
* {
  font-feature-settings: "palt";
  letter-spacing: 1px;
}
html {
  font-size: 62.5%; /* -> 10px */
}
html, body, #container {
  height: 100%;
}
body {
  color: #555; /*全体の文字色*/
  font-family: 'Lato', 'M PLUS 1 Code', "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif; /*フォント種類*/
  -webkit-text-size-adjust: none;
  /*letter-spacing: 0.05em;*/
  background: #fff; /*背景色*/
  font-size: 1.6rem; /*基準となるフォントサイズ。下の方にある「画面幅900px以上」で基準を大きなサイズに再設定しています。*/
  line-height: 2; /*行間*/
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
.tmp {
    /* 現在使用してるテンプレートファイル名を表示 */
    display: none;
    position: absolute;
    z-index: 100;
    left: 25%;
    color: #FFF;
}

/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
  color: #57524b; /*文字色*/
  transition: 0.3s;
}

/*sectionタグと、詳細ページの共通設定
---------------------------------------------------------------------------*/
section, main > article {
  margin: 0 auto;
  padding: 5%; /*ボックス内の余白*/
}

/*2カラムブロック（※900px未満では１カラム）
---------------------------------------------------------------------------*/
/*２カラムを囲むブロック*/
.c2 {
	display: flex;			/*flexボックスを使う指定*/
	flex-direction: column;	/*子要素を縦並びにする*/
}

/*c2内のh2見出し*/
.c2 h2 {
	font-size: 2rem;
}

/*小さい端末で見た場合（１カラムになった際）に、画像を常に先頭に持ってくる*/
.c2 .image {
	order: -1;
}


/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
headerど {
  display: flex; /*flexボックスを使う指定*/
  justify-content: space-between; /*並びかたの種類の指定*/
  align-items: center; /*垂直揃えの指定。天地中央に配置されるように。*/
  background: #4d770b; /*背景色*/
  position: fixed;
  z-index: 1; /*スクロールしても動かないようにする指定*/
  width: 100%;
  padding: 0 3%; /*上下、左右へのヘッダー内の余白*/
  height: 50px; /*ヘッダーの高さ。変更する場合、数行下にある#mainimgのtopの数値も合わせて変更して下さい。*/
}
header {
  display: flex; /*flexボックスを使う指定*/
  justify-content: space-between; /*並びかたの種類の指定*/
  align-items: center; /*垂直揃えの指定。天地中央に配置されるように。*/
  background: #89CE1E; /*背景色*/
  position: fixed;
  z-index: 1; /*スクロールしても動かないようにする指定*/
  width: 100%;
  padding: 0 3%; /*上下、左右へのヘッダー内の余白*/
  height: 50px; /*ヘッダーの高さ。変更する場合、数行下にある#mainimgのtopの数値も合わせて変更して下さい。*/
}

/*ヘッダーのリンクテキストの文字色*/
header a {
	color: #fff;
}

/*ロゴ画像*/
header #logo img {
  display: block;
}
header #logo {
  margin: 0;
  width: 250px; /*幅*/
}

/*トップページのメイン画像
---------------------------------------------------------------------------*/
/*全体を囲むブロック*/
#mainimgど {
	width: 100%;
	height: 0;
	padding: 0;
	padding-top: 56.25%;
	position: relative;
	top: 50px;	/*headerのheightの数値と合わせて下さい。*/
	overflow: hidden;
	background: #4d770b url(../images/mainimg.png) no-repeat center center / 100%;	/*背景色、背景画像の読み込み、最後の100%は画像幅。*/
	color: #fff;	/*文字色*/
}
#mainimg {
  width: 100%;
  min-height: 100%;
  padding: 0;
  position: relative;
  top: 50px; /*headerのheightの数値と合わせて下さい。*/
  overflow: hidden;
  background: #89CE1E url(../images/mainimg.png) no-repeat center center / 100%; /*背景色、背景画像の読み込み、最後の100%は画像幅。*/
  color: #fff; /*文字色*/
}

/*テキストブロック*/
#mainimg #text {
	position: absolute;
	left: 3%;		/*mainimgに対して左からの配置場所指定*/
	top: 50px;		/*mainimgに対して上からの配置場所指定*/
	width: 100%;	/*幅*/
	height: 100%;	/*高さ*/
    
	display: flex;			/*flexボックスを使う指定*/
	align-items: center;	/*垂直揃えの指定。天地中央に配置されるように。*/
}

/*h2見出し*/
#mainimg #text h2 {
  margin: 0;
  font-weight: 500; /*文字の太さ。数値が大きいほど太くなります。*/
  font-size: 3.8vw; /*文字サイズ。画面幅に対する単位です。*/
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /*テキストの影。右へ、下へ、ぼかし幅。0,0,0は黒の事で0.3は色が30%出た状態。*/
    
  line-height: 1.2;
}

/*pタグ。小文字の説明文。*/
#mainimg #text p.text {
  font-size: 1.6rem; /*文字サイズ*/
  margin: 0 10px 30px; /*上、左右、下へのpタグ内の余白*/
}
div.text p, div.text ul {
  font-size: 1.6rem;
  line-height: 1.8;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
/* スマホ */
@media screen and (max-width:600px) {
  div.text p, div.text ul {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

/*トップページのメイン画像（別バージョン）
---------------------------------------------------------------------------*/
#mainimg_02 {
  width: 100%;
  min-height: 100%;
  padding: 0;
  position: relative;
  top: 50px; /*headerのheightの数値と合わせて下さい。*/
  overflow: hidden;
  color: #fff; /*文字色*/
  background-color: #89CE1E;
}
#flexwrap_02 {
  display: flex;
  justify-content: center;
  align-items: center;
  /*天地左右中央に表示*/
  /*position: fixed;
  inset: 0;
  margin: auto;*/
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#text_02, #img_02 {
  width: 48%;
}
#img_02 img {
  max-width: 100%;
  height: auto;
  text-align: center;
  margin: 0 auto;
}
/*h2見出し*/
#mainimg_02 #text_02 h2 {
  margin: 0;
  font-weight: 500; /*文字の太さ。数値が大きいほど太くなります。*/
  font-size: 3.8vw; /*文字サイズ。画面幅に対する単位です。*/
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /*テキストの影。右へ、下へ、ぼかし幅。0,0,0は黒の事で0.3は色が30%出た状態。*/
  line-height: 1.2;
}
/*pタグ。小文字の説明文。*/
#mainimg_02 #text_02 p.text {
  font-size: 1.8rem; /*文字サイズ*/
  line-height: 1.6;
  margin: 0 0 30px; /*上、左右、下へのpタグ内の余白*/
}
/* スマホ */
@media screen and (max-width:600px) {
  #flexwrap_02 {
    flex-direction: column;
  }
  #text_02, #img_02 {
    width: 100%;
    padding: 1em;
  }
  #img_02 {
    order: 1;
  }
  #text_02 {
    order: 2;
  }
  #img_02 img {
    width: 80%;
  }
  /*h2見出し*/
  #mainimg_02 #text_02 h2 {
    font-size: 6vw;
  }
}

/*menubarブロック初期設定
---------------------------------------------------------------------------*/
#menubar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#menubar ul li {
    border-bottom: 1px #666 dotted;
}
#menubar ul li:first-child {
    border-top: 1px #666 dotted;
}


/*メニューを非表示にしておく*/
#menubar {
  display: none;
}
/*開閉用のスタイル*/
#menubar.db {
  display: block;
}
#menubar.dn {
  display: none;
}
/*メニュー１個あたりの設定*/
#menubar a {
  display: block;
  text-decoration: none;
  text-align: center; /*テキストを中央に*/
  letter-spacing: 0.1em; /*文字間隔を少しだけ広くする指定*/
  padding: 10px; /*メニュー内の余白*/
}

/*小さな端末用の設定（開閉ブロック）
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.s #menubar.db {
	position: fixed;overflow: auto;z-index: 100;
	left: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 70px 20px;	/*上下、左右へのブロック内の余白*/
	background: rgba(0,0,0,0.9);		/*背景色。0,0,0は黒の事で0.9は色が90%出た状態の事。*/
	animation: animation1 0.2s both;	/*animation.cssの、animation1を実行する。0.2sは0.2秒の事。*/
	text-align: center;	/*内容をセンタリング*/
	color: #fff;		/*文字色*/
}
.s #menubar.db a {
	display: block;
	color: #fff;	/*リンクテキストの文字色*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*開閉用のスタイル*/
#menubar_hdr.db {display: flex;}
#menubar_hdr.dn {display: none;}

/*３本バーを囲むブロック*/
#menubar_hdr {
	position: fixed;z-index: 101;
	cursor: pointer;
	right: 5px;			/*右からの配置場所指定*/
	top: 2px;			/*上からの配置場所指定*/
	padding: 16px 14px;	/*上下、左右への余白*/
	width: 46px;		/*幅（３本バーが出ている場合の幅になります）*/
	height: 46px;		/*高さ*/
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素（３本バー）を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	background: rgba(0,0,0,0.5);	/*背景色*/
	border-radius: 50%;				/*円形にする*/
}

/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;	/*アニメーションにかける時間。0.3秒。*/
	border-top: 2px solid #fff;	/*線の幅、線種、色*/
}

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

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

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

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


/*mainブロック設定
---------------------------------------------------------------------------*/
/*mainブロック*/
main {
	padding-top: 50px;
}

/*mainブロック内のh2タグ*/
main h2 {
	margin: 0 0 1em;		/*上、左右、下へのタグの外にとるスペース*/
	line-height: 1.5;		/*行間を少し狭く*/
	font-size: 3rem;
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.2em;	/*文字間隔を少しだけ広くとる設定*/
	color: #4d770b;			/*文字色*/
	font-family: "丸フォーク M", "Maru Folk Medium", sans-serif;
	font-weight: 500;
}
main h2.wp-block-heading {
    text-align: left;
}

/*h2内のsupanタグ。小文字部分です。*/
main h2 span {
	display: block;
	font-weight: normal;
	color: #777;		/*文字色*/
	font-size: 1.6rem;
}

/*mainブロック内のh3タグ*/
main h3 {
	margin: 0 0 1em;		/*上、左右、下へのタグの外にとるスペース*/
	color: #4d770b;			/*文字色*/
}

/*mainブロックのpタグ*/
main p {
  /*margin: 0 20px 30px;*/ /*上、左右、下へ空けるスペース*/
}
main p + p {
  /*margin-top: -15px;*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer small {
  font-size: 100%;
}
footer {
  font-size: 1.2rem; /*文字サイズ*/
  text-align: center; /*内容をセンタリング*/
  padding: 20px; /*ボックス内の余白*/
  background: #666; /*背景色*/
  color: #fff; /*文字色*/
}
/*リンクテキスト*/
footer a {
  text-decoration: none;
  color: #fff;
}
/*著作部分*/
footer .pr {
  display: block;
}


/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
	background: #333;	/*背景色*/
	color: #999;		/*文字色*/
	font-size: 0.7rem;	/*文字サイズ*/
	padding: 20px;		/*ボックス内の余白*/
	display: flex;		/*flexボックスを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	align-items: flex-start;		/*垂直揃えの指定。上に配置されるように。*/
}

/*ボックス内のリンクテキスト設定*/
#footermenu a {
	text-decoration: none;
	color: #999;	/*文字色*/
}

/*リンクテキストのマウスオン時*/
#footermenu a:hover {
	color: #ccc;	/*文字色*/
}

/*ulタグ（メニューの列単位）*/
#footermenu ul {
	margin: 0;
	padding: 0 2px;
	flex: 1;
	list-style: none;
}

/*title*/
#footermenu .title {
	font-weight: bold;		/*太字にする*/
	color: #ccc;			/*文字色*/
	padding-bottom: 5px;	/*下に空けるスペース*/
}


/*「お知らせ」「実績」ブロック（トップページ）
---------------------------------------------------------------------------*/
.flexwrap{
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
    
    background-color: #FFF;
}
.flexwrap section {
	width: 100%;
}
.flexwrap section.nt {
	border-right: none;
	border-bottom: 2px dashed #CCC;
}

/*お知らせブロック*/
#new {
  margin: 0;
	padding: 0;
  display: flex; /*flexボックスを使う指定*/
  flex-wrap: wrap; /*折り返す指定*/
}
/*日付(dt)、記事(dd)共通設定*/
#new dt, #new dd {
  padding: 5px 0; /*上下、左右へのボックス内の余白*/
}
/*日付(dt)設定*/
#new dt.dt_n {
  width: 8em; /*幅。8文字(em)分。※下の「900px以上」の端末用の設定に再設定があります。*/
}
/*記事(dd)設定*/
#new dd.dd_n {
  width: calc(100% - 8em); /*「8em」は上の「#new dt」のwidthの値です。※下の「900px以上」の端末用の設定に再設定があります。*/
}
#new dt.dt_a {
  width: 7em; /*幅。5文字(em)分。※下の「900px以上」の端末用の設定に再設定があります。*/
}
/*記事(dd)設定*/
#new dd.dd_a {
  width: calc(100% - 7em); /*「7em」は上の「#new dt」のwidthの値です。※下の「900px以上」の端末用の設定に再設定があります。*/
}
#new .new-icon {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    color: #FF0000;
    padding: 0 4px;
    margin-right: 0.3em;
}


/*listブロック
---------------------------------------------------------------------------*/
.list-container .list {
	margin-bottom: 30px;	/*ボックス同士の上下間に空けるスペース*/
	padding: 20px;			/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	color: #999;			/*文字色*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
	position: relative;
}

/*ボックス内のh4タグ*/
.list-container .list h4 {
	margin: 0;
	color: #666;	/*文字色*/
}
.list-container .list h4 a {
	color: #666;	/*リンクテキストの文字色*/
}

/*ボックス内のpタグ*/
.list-container .list p {
	margin: 0;
	font-size: 0.8rem;	/*文字サイズを80%に*/
}

/*list内のNEWマーク*/
.list-container .list .new {
	font-size: 0.6rem;		/*文字サイズ*/
	background: #ff0000;	/*背景色*/
	color: #fff;			/*文字色*/
	width: 50px;			/*幅*/
	line-height: 50px;		/*高さ*/
	border-radius: 50%;		/*角丸のサイズ。円形になります。*/
	text-align: center;		/*テキストをセンタリング*/
	position: absolute;
	left: -10px;			/*listブロックに対して左からの配置場所の指定*/
	top: -10px;				/*listブロックに対して上からの配置場所の指定*/
	transform: rotate(-30deg);	/*回転。まっすぐ表示させたいならこの１行を削除。*/
}


/*求人一覧ページ（ist2　横長ブロックタイプ）
---------------------------------------------------------------------------*/
/*list2ボックス。１個あたりのボックスの指定です。*/
.list2 {
	display: flex;	/*flexボックスを使う指定*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding: 25px 0;	/*上下、左右へのボックス内の余白*/
}

.list2 div {
	flex: 1;
}

/*１つ目のボックスにのみ上に線を入れる*/
.list2:nth-of-type(1) {
	border-top: 1px solid #ccc;	/*上の線の幅、線種、色*/
}

/*ボックス内のfigure画像*/
.list2 figure {
	width: 20%;			/*画像の幅*/
	margin-right: 20px;	/*画像の右側に空けるスペース*/
}

/*ボックス内のh4タグ*/
.list2 h4 {
	margin: 0;				/*デフォルトマージンを一旦リセット*/
	margin-bottom: 10px;	/*下に少し余白を作る*/
	color: #4d770b;			/*文字色*/
}

.list2 h4 a {
	color: #4d770b;			/*リンクテキストの文字色*/
}

.list2 h4 a:hover {
	color: #333;			/*マウスオン時の文字色*/
}

/*ボックス内のpタグ*/
.list2 p {
	margin: 0;
	font-size: 0.7rem;		/*文字サイズを70%に。*/
}


/*求人一覧ページのlistボックス内の情報詳細欄（tableっぽく見える所）
---------------------------------------------------------------------------*/
/*ボックス全体*/
dl.line {
	margin: 0;
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	font-size: 0.7rem;	/*文字サイズを70%に。*/
	border-top: 1px solid #ccc;	/*上の線の幅、線種、色*/
}

/*左右のボックス*/
dl.line dt, dl.line dd {
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding: 0 5px;					/*上下、左右へのボックス内の余白*/
}

/*左のボックス*/
dl.line dt {
	width: 8em;				/*幅。8文字(em)分。*/
	background: #f0f0f0;	/*背景色*/
}
/*右のボックス*/
dl.line dd {
	width: calc(100% - 8em);	/*「8em」は上の「dl.line dt」のwidthの値です。*/
}

/*list2ブロック内でのline設定*/
.list2 dl.line dt:nth-of-type(1), .list2 dl.line dd:nth-of-type(1),
.list2 dl.line dt:nth-of-type(2), .list2 dl.line dd:nth-of-type(2) {
	border-top: none;
}


/*サムネイルスライドショー
---------------------------------------------------------------------------*/
/*画像１枚あたりの設定*/
.list-slide .list {
	margin: 10px;	/*画像の外側に空けるスペース*/
}
.list img {
	transition:0.3s;
	display: block;
	margin-bottom: 10px;
}
.list a {
	text-decoration: none!important;
}
.list a:hover img {
	opacity:0.8;
}
.list_date {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
}
.updated:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  padding-right: 5px;
  color: #4d770b;/*アイコンの色*/
}
	
.list_title {
	line-height: 1.5;
	font-family: sans-serif;
	color: #000;
}

/*FAQ
---------------------------------------------------------------------------*/
/*FAQボックス全体*/
.faq {
	padding: 0 5px;	/*上下、左右へのボックス内の余白*/
}

/*質問*/
.faq dt {
	border-radius: 3px;		/*枠を角丸にする指定*/
	margin-bottom: 20px;	/*下に空けるスペース*/
	background: linear-gradient(#fff, #f7f7f7);	/*背景グラデーション*/
	text-indent: -2em;				/*テキストのインデント。質問が複数行になった際に、テキストの冒頭を揃える為に設定しています。*/
	padding: 5px 1em 5px 3em;		/*ボックス内の余白。ここを変更する場合、上のtext-indentも調整します。*/
	border: 1px solid #e4e2d7;		/*枠線の幅、線種、色*/
}

/*アイコン（Font Awesome）*/
.faq dt::before {
	font-family: "Font Awesome 5 Free";	/*Font Awesomeを使う指定*/
	content: "\f059";		/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	color: #4d770b;			/*アイコンの色*/
	padding-right: 1em;		/*アイコンとテキストの間の余白*/
}

/*回答*/
.faq dd {
	padding: 5px 1em 30px 3em;		/*ボックス内の余白**/
}

/*opencloseを適用した要素のカーソル*/
.openclose {
	cursor: pointer;	/*カーソルの形状。リンクと同じスタイルにしてクリックできると認識してもらう。*/
}

.faq dt span {text-indent: 0;}


/*icon
---------------------------------------------------------------------------*/
.icon {
	display: inline-block;
	margin: 1px;
	line-height: 1.5;
	padding: 0px 10px;
	border: 1px solid #999;
	color: #999;
	font-weight: normal;
	font-size: 0.8rem;
}
.icon.newicon {
	border-color: transparent;
	background: #f00;
	color: #fff;
}
.icon.upicon {
	border-color: transparent;
	background: #54b1ff;
	color: #fff;
}

/*btnの設定
---------------------------------------------------------------------------*/
a.btn1, a.btn2 {
  display: inline-block;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 3px;
  padding: 5px 30px;
  font-size: 1.6rem;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2);
    
    margin-right: 0.5em;
    margin-bottom: 1em;
}
a.btn1 {
  background: #ffce2b;
  color: #444;
}
a.btn2 {
  background: #308396;
  color: #fff;
}
.radius {
  border-radius: 100px !important;
}
a.btn1 i, a.btn2 i {
  margin-left: 20px;
}
a:hover.btn1, a:hover.btn2 {
  transform: scale(1.03);
  filter: brightness(1.1);
}


/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;		/*太字に*/
	padding: 10px 5px;		/*上下、左右へのボックス内の余白。基本的に数行下の「.ta1 th, .ta1 td」のpaddingと揃えておけばOKです。*/
	background: #eee;		/*背景色*/
	margin-bottom: 15px;	/*下に空けるスペース*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	border-top: 1px solid #ccc;	/*テーブルの一番上の線。幅、線種、色*/
	width: 100%;
	margin: 0 auto 30px;		/*最後の「30px」がテーブルの下に空けるスペースです*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid #ccc;	/*テーブルの下線。幅、線種、色*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 10px 5px;		/*上下、左右へのボックス内の余白*。基本的に数行上の「.ta1 caption」のpaddingと揃えておけばOKです。*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;			/*幅*/
	text-align: left;	/*左よせにする*/
}


/*背景色パターン
---------------------------------------------------------------------------*/
.bg1 {
	background: #eee;
}
.bg2 {
	background: #fef3d9;
}
.bg3 {
	background: #ffce2b;
}
.bg3 h2 {
	color: #555;
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5rem;	/*文字サイズ*/
	background: rgba(0,0,0,0.2);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.color-theme, .color-theme a {
  color: #4d770b !important;
}
.color-check, .color-check a {
  color: #f00 !important;
}
.c {
  text-align: center !important;
}
.ws {
  width: 95%;
  display: block;
}
.wl {
  width: 95%;
  display: block;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.look {
  display: inline-block;
  padding: 0px 10px;
  background: #eee;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin: 2px 0;
  word-break: break-all;
}
.small {
  font-size: 0.6rem;
  letter-spacing: normal !important;
}
.large {
  font-size: 1.8rem !important;
}
.block {
  display: block !important;
}
.sh {
    display: none;
  /* display: block; */
}
.pc {
  display: none;
}
.hidden {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

/* 会社案内 */
ul.information {
    font-size: 1.4rem!important;
    margin: 0!important;
    padding: 0!important;
    list-style-position: inside!important;
}
ul.information li {
    margin-bottom: 0.5em!important;
}
ul.information li span {
    font-size: 1.5rem!important;
    font-weight: 700;
}

/* 事業内容 */
ul.business {
    font-size: 1.4rem!important;
}
ul.business li {
    margin-bottom: 0.5em!important;
}
ul.business li span {
    font-size: 1.5rem!important;
    font-weight: 700;
}

/*---------------------------------------------------------------------------
ここから下は画面幅400px以下の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width:400px) {
  a.btn1, a.btn2 {
    padding: 0px 15px;
  }
  a.btn1 i, a.btn2 i {
    margin-left: 10px;
  }
}

/*---------------------------------------------------------------------------
ここから下は画面幅900px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:900px) {
  /*2カラムブロック
---------------------------------------------------------------------------*/
  /*２カラムを囲むブロック*/
  .c2 {
    flex-direction: row; /*子要素を横並びにする*/
    justify-content: space-between; /*並びかたの種類の指定*/
    align-items: center; /*垂直揃えの指定。天地中央に配置されるように。*/
    margin-left: -6%;
    margin-right: -6%;
  }
  /*画像ブロック*/
  .c2 .image {
    width: 60%;
  }
  /*テキストブロック*/
  .c2 .text {
    width: 40%;
    padding: 0 3%;
  }
  /*最初(左)に配置*/
  .c2 .l {
    order: -1;
  }
  /*画像を右側に配置する場合の設定*/
  .c2 .image.r {
    overflow: hidden;
    /*margin-right: -6%;	画像を画面枠ギリギリまで移動する*/
    border-radius: 100px 0px 0px 100px; /*角を丸くする指定。左上、右上、右下、左下への順番。*/
  }
  /*画像を左側に配置する場合の設定*/
  .c2 .image.l {
    overflow: hidden;
    /*margin-left: -6%;	画像を画面枠ギリギリまで移動する*/
    border-radius: 0px 100px 100px 0px; /*角を丸くする指定。左上、右上、右下、左下への順番。*/
  }
  /*トップページのメイン画像
---------------------------------------------------------------------------*/
  /*テキストブロック*/
  #mainimg #text {
    width: 50%; /*幅*/
  }
  /*menubarブロック設定
---------------------------------------------------------------------------*/
  /*メニューブロックの設定*/
  #menubar {
    font-size: 1.4rem; /*文字サイズを少し小さくする*/
  }
  #menubar ul {
    display: flex; /*flexボックスを使う指定*/
  }
  /*メニュー１個あたりの設定*/
  #menubar a {
    padding: 10px 15px; /*上下、左右への余白*/
  }
  /*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
  /*ハンバーガーメニューを非表示にする*/
  #menubar_hdr {
    display: none;
  }
    
  /*「お知らせ」「実績」ブロック
---------------------------------------------------------------------------*/
	.flexwrap{
		flex-direction: row;
		flex-wrap: nowrap;
	}
	.flexwrap section {
		width: 50%;
	}
	.flexwrap section.nt {
		border-right: 2px dashed #CCC;
		border-bottom: none;
	}

  /*日付(dt)設定*/
  #new dt {
    width: 8em; /*幅。8文字(em)分。*/
    display: flex; /*flexボックスを使う指定*/
    justify-content: space-between; /*日付とアイコンをそれぞれ端に寄せる*/
  }
  /*記事(dd)設定*/
  #new dd {
    width: calc(100% - 8em); /*「8em」は上の「#new dt」のwidthの値です。*/
  }
    
  /*フッターメニュー設定
---------------------------------------------------------------------------*/
  /*ボックス全体の設定*/
  #footermenu {
    font-size: 0.8rem; /*文字サイズ*/
    padding: 20px 50px; /*上下、左右へのボックス内の余白*/
  }
  /*listブロック
---------------------------------------------------------------------------*/
  /*listブロック全体を囲むブロック*/
  .list-container {
    display: flex; /*flexボックスを使う指定*/
    flex-wrap: wrap; /*折り返す指定*/
  }
  /*１個あたりのボックス設定*/
  .list-container .list {
    display: flex; /*flexボックスを使う指定*/
    justify-content: space-between; /*並びかたの種類の指定*/
    flex-direction: column; /*子要素を縦並びにする*/
    width: 32%; /*幅。３列になります。*/
    margin-right: 2%;
  }
  .list-container .list:nth-of-type(3n) {
    margin-right: 0;
  }
  /*ボックス内のtextブロック*/
  .list-container .list .text {
    flex: 1;
  }
  /*求人一覧ページ（ist2　横長ブロックタイプ）
---------------------------------------------------------------------------*/
  /*list2ボックス。１個あたりのボックスの指定です。*/
  .list2 {
    padding-left: 10px; /*ボックス内の左側にだけ余白を作る*/
  }
  /*求人一覧ページのlistボックス内の情報詳細欄（tableっぽく見える所）
---------------------------------------------------------------------------*/
  /*list2ブロック内でのline設定*/
  .list2 dl.line dd {
    width: calc(50% - 8em - 10px); /*大きな端末向けの再設定。２列にしたいので、100%でなく半分の50%から引いています。*/
    margin-right: 10px; /*２列になった際の間のスペース*/
  }
  .list2 dl.line {
    border-top: none;
  }
  .list2 dl.line dt:nth-of-type(1), .list2 dl.line dd:nth-of-type(1), .list2 dl.line dt:nth-of-type(2), .list2 dl.line dd:nth-of-type(2) {
    border-top: 1px solid #ccc;
  }
  /*テーブル
---------------------------------------------------------------------------*/
  /*テーブル１行目に入った見出し部分（※caption）*/
  .ta1 caption {
    padding: 5px 15px; /*上下、左右へのボックス内の余白*/
  }
  /*th（左側）、td（右側）の共通設定*/
  .ta1 th, .ta1 td {
    padding: 20px 15px; /*上下、左右へのボックス内の余白*/
  }
  /*th（左側）のみの設定*/
  .ta1 th {
    width: 20%; /*幅*/
  }
  /*その他
---------------------------------------------------------------------------*/
  .ws {
    width: 48%;
    display: inline;
  }
  .sh {
    display: none;
  }
  .pc {
    display: inline-block;
  }
  /*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/
}


/* アクセス
---------------------------------------------------------------------------*/
.innerS {
  width: 60%;
  margin: 0 auto;
  padding-bottom: 80px;
}
.col2 li {
  display: inline-block;
  width: 100%;
  margin: 20px 0;
}
#map {
  position: relative;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden;
  z-index: 0;
}
#map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}
.switch_map img {
  width: 100%;
  height: auto;
  cursor: pointer;
}

/* スマホ */
@media screen and (max-width:600px) {
  .innerS {
    width: 94%;
    padding-bottom: 70px;
  }
  .col2 li {
    width: 60%;
    vertical-align: top;
  }
  .col2 li:first-child {
    width: 35%;
    padding-right: 4%;
  }
  #map iframe {
    width: 96% !important;
    left: 2%;
  }
}

/* アクセス（レスポンシブ別バージョン）
---------------------------------------------------------------------------*/
.innerS-2 {
  width: 100%;
  margin: 0 auto;
}
.innerS-2 h4 {
	font-size: 1.8rem;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	margin: 0;
	padding: 0;
}
ul.col2-2 {
    display: flex;
    gap:2em;
    list-style: none;
    
    margin: 0;
    padding: 0;
}
ul.col2-2 li:first-child {
    width: 70%;
}
ul.col2-2 li p {
	margin: 0;
   padding: 0;
	line-height: 1.6;
}

/* スマホ */
@media screen and (max-width:600px) {
    ul.col2-2{
        flex-direction: column;
    }
    ul.col2-2 li:first-child {
        width: 100%;
        order: 1;
    }
}


/* パンくず
---------------------------------------------------------------------------*/
.breadcrumbs{
    border: 1px dotted #CCC;
    padding: 0.2em 0.4em;
    background-color: #FFF;
    font-family: -apple-system, BlinkMacSystemFont, メイリオ, Meiryo, sans-serif;
    font-size: 1.2rem;
    color: #666;
}
.breadcrumbs span a {
    color: #666!important;
}

/*「お知らせ」「実績」ブロック（詳細ページ）
---------------------------------------------------------------------------*/
body.single h4 {
  padding: 0.4em 0.5em; /*文字の上下 左右の余白*/
  background: #f4f4f4; /*背景色*/
  border-left: solid 5px #4d770b; /*左線*/
  border-bottom: solid 3px #d7d7d7; /*下線*/
  font-size: 2.0rem;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700;
  line-height: 1.6;
  color: #000;
}
body.single p {
  font-family: sans-serif;
  font-size: 1.8rem;
  line-height: 1.8;
  font-feature-settings: "palt";
}
/* クライアント名 */
.post__item .client {
    margin: 0 0.5em;
    padding: 0.2em;
    border: 1px dotted #ccc;
    font-family: "UD新ゴ コンデンス90 L", "UD Shin Go Conde90 L", sans-serif;
}

/* 「実績」年度別表示
---------------------------------------------------------------------------*/
/* 年度表示 */
ul.nendobetsu_year{
	list-style: none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap:10px;
    
    margin-bottom: 0;
}
ul.nendobetsu_year li {
	border: 1px #ccc solid;
	padding: 0.2em 0.5em;
	transition: 0.3s;
	background-color: #F0F0F0;
}
ul.nendobetsu_year li a {
	display: block;
	text-decoration: none;
}
ul.nendobetsu_year li:hover{
  background-color: #E9E9E9;
	text-decoration:underline;
}
p.kome {
    display: block;
    margin: 1em 0 0.5em!important;
    font-family: sans-serif;
}

/* 記事一覧の無限スクロール
---------------------------------------------------------------------------*/
.post__container {
	border: 1px solid #ccc;
}
body.category .post__container {
	margin-top: 1em;
}
.post__container h4 {
	background-color: #666;
	color: #FFF;
	margin: 1em 0.5em 0.5em;
	padding: 0.3em;
}
.post__item a {
	text-decoration: none;
}
.post__item a:hover {
	text-decoration: underline;
	opacity: 0.7;
}
.post__item span.date {
	font-family: -apple-system, BlinkMacSystemFont, sans-serif;
	background-color: #666;
	margin-right: 0.5em;
	padding: 0.2em;
	color: #fff;
}
ul.post__item {
	list-style-type: none;
	border-bottom: dotted 1px #e5e5e5;
	padding: 0.5em;
	margin: 0.5em;
	line-height: 1.6;
}
ul.post__item:last-child {
	border-bottom: none;
}

/* もっと見るボタン */
.view-more-button {
	width: 100%;
	text-align: center!important;
	margin: 1em auto;
	cursor: pointer;
}

/* スマホ */
@media screen and (max-width:600px) {
	ul.nendobetsu_year li {
		width: 100%;
	}
}

/* ページナビ（サムネイルなし）
---------------------------------------------------------------------------*/
.pagenavi {
	display: flex;
	flex-wrap: nowrap;
	margin: 2em 0 0;
}
.pagenavi-box {
	width: calc( 100% / 2 );
	padding: 0.5em;
}
.page_previous {
	text-align: left;
	border-top: 1px #ccc solid;
	border-bottom: 1px #ccc solid;
	border-left: 1px #ccc solid;
}
.page_next {
	text-align: right;
	border-top: 1px #ccc solid;
	border-bottom: 1px #ccc solid;
	border-left: 1px #ccc solid;
	border-right: 1px #ccc solid;
}

/* 主な事業内容
---------------------------------------------------------------------------*/
body.page-template-page-business .flex-wrap{
    display: flex;
    background-color: #e9f2f2;
    margin: 1em 5%;
    align-items: center;
    padding: 1em
}
body.page-template-page-business .flex-item_icon {
    width: 15%;
    text-align: center;
}
body.page-template-page-business .flex-item_icon img {
    width: 100%;
    height: auto;
    display: block;
}
body.page-template-page-business .flex-item_text {
    border-left: 1px #CCC solid;
    padding-left: 2%;
}
body.page-template-page-business .flex-item_text h4, body.page-template-page-business .flex-item_text p {
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* お問い合わせフォーム
---------------------------------------------------------------------------*/
/* --#mail_form, dl, dt, dd -- */
body.contact #mail_form * {
  margin: 0;
  padding: 0;
  box-sizing: content-box;
}
body.contact #mail_form {
  width: 1000px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 7px;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
  line-height: 1.8;
}
body.contact #mail_form dl {
  width: 90%;
  margin: 0 auto;
  border-bottom: 1px solid #cccccc;
}
body.contact #mail_form dl:after, body.contact #mail_form dl dt:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
body.contact #mail_form dl dt {
  width: 30%;
  float: left;
  padding: 35px 0 25px;
  text-align: right;
}
body.contact #mail_form dl dd {
  width: 65%;
  float: right;
  padding: 30px 0 25px 5%;
}
body.contact #mail_form dl dt i {
  float: left;
  position: relative;
  top: -2px;
}

/* -- span.required, span.optional -- */
body.contact #mail_form dl dt .required, body.contact #mail_form dl dt .optional {
  display: inline-block;
  font-size: 85%;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 3px;
    font-style: normal;
}
body.contact #mail_form dl dt .required {
  background: #d9534f;
  border: 1px solid #d43f3a;
}
body.contact #mail_form dl dt span.optional {
  background: #337ab7;
  border: 1px solid #2e6da4;
}

/* -- error message -- */
body.contact #mail_form dl dd span.error_blank, body.contact #mail_form dl dd span.error_format, body.contact #mail_form dl dd span.error_match {
  display: block;
  color: #ff0000;
  margin-top: 5px;
}

/* -- loading -- */
body.contact div.loading-layer {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 10000;
}
body.contact span.loading {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border-top: 5px solid rgba(255, 255, 255, 0.2);
  border-right: 5px solid rgba(255, 255, 255, 0.2);
  border-bottom: 5px solid rgba(255, 255, 255, 0.2);
  border-left: 5px solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load-circle 1.0s linear infinite;
  animation: load-circle 1.0s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
}
@-webkit-keyframes load-circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load-circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* -- input, select, textarea -- */
body.contact #mail_form input[type="text"], body.contact #mail_form input[type="email"], body.contact #mail_form input[type="tel"] {
  /*width: calc(100% - 4% - 2px);*/
  padding: 7px 2%;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background: #fafafa;
  -webkit-appearance: none;
  font-size: 16px;
  font-family: inherit;
  line-height: normal;
}
body.contact #mail_form input[type="text"]:focus, body.contact #mail_form input[type="email"]:focus, body.contact #mail_form input[type="tel"]:focus, body.contact #mail_form textarea:focus {
  box-shadow: 0px 0px 5px #55ccff;
  border: 1px solid #55ccff;
  background: #ffffff;
}
body.contact #mail_form ul li input[type="radio"], body.contact #mail_form ul li input[type="checkbox"] {
  margin: 0 10px 0 0;
}
body.contact #mail_form select {
  padding: 7px 2%;
  border: 1px solid #cccccc;
  font-size: 16px;
  font-family: inherit;
  line-height: normal;
}
body.contact #mail_form textarea {
  display: block;
  width: calc(100% - 4% - 2px);
  height: 200px;
  padding: 7px 2%;
  resize: vertical;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background: #fafafa;
  -webkit-appearance: none;
  font-size: 16px;
  font-family: inherit;
  line-height: normal;
}

/* -- ul, li -- */
body.contact #mail_form ul {
  list-style-type: none;
}
body.contact #mail_form ul li label {
  display: block;
  margin-top: 10px;
  padding: 7px 2%;
  border-radius: 3px;
  background: #f0f0f0;
}
body.contact #mail_form ul li:first-child label {
  margin-top: 0px;
}
body.contact #mail_form ul li label:hover {
  cursor: pointer;
  background: #e0e0e0;
}

/* -- input design -- */
body.contact #mail_form input[name="company"] {
  width: 70%;
}
body.contact #mail_form input[name="name_1"], body.contact #mail_form input[name="name_2"], body.contact #mail_form input[name="read_1"], body.contact #mail_form input[name="read_2"], body.contact #mail_form input[name="postal"], body.contact #mail_form input[name="phone"], body.contact #mail_form input[name="schedule"] {
  width: 30%;
}
body.contact #mail_form input[name="mail_address"], body.contact #mail_form input[name="mail_address_confirm"] {
  width: 80%;
}
body.contact #mail_form input[name="postal"] + a {
  display: inline-block;
  padding: 7px 20px;
  border: 1px solid #46b8da;
  border-radius: 3px;
  background: #5bc0de;
  font-size: 16px;
  line-height: normal;
  color: #ffffff;
  text-decoration: none;
}
body.contact #mail_form input[name="postal"] + a:hover {
  cursor: pointer;
  background: #31b0d5;
  border: 1px solid #269abc;
}

/* -- button -- */
body.contact #mail_form p#form_submit {
  width: 90%;
  margin: 0 auto;
  padding: 30px 0;
}
body.contact #mail_form input[type="submit"] {
  padding: 7px 20px;
  border: 1px solid #4cae4c;
  border-radius: 3px;
  background: #5cb85c;
  font-size: 16px;
  color: #ffffff;
  font-family: inherit;
  -webkit-appearance: none;
}
body.contact #mail_form input[type="submit"]:hover {
  cursor: pointer;
  background: #449d44;
  border: 1px solid #398439;
}
body.contact #mail_form input[type="submit"] {
  margin-left: 35%;
}

/* -- responsive -- */
/* 1000pixel start */
@media screen and (max-width: 1000px) {
  /* -- #mail_form, dl, dt, dd -- */
  body.contact #mail_form {
    width: 95%;
    font-size: 100%;
      
      border: none;
      box-shadow: 0 0 0px rgba(0, 0, 0, 0);
  }
    body.contact #mail_form dl {
        width: 98%;
        
    }
    
  body.contact #mail_form dl dt {
    width: auto;
    float: none;
    padding: 25px 0 10px;
    text-align: left;
    font-weight: bold;
  }
  body.contact #mail_form dl dd {
    width: auto;
    float: none;
    padding: 0px 0 20px 0px;
  }
  body.contact #mail_form dl dt i {
    float: none;
    position: static;
    font-weight: normal;
  }
  /* -- .required, span.optional -- */
  body.contact #mail_form dl dt .required, body.contact #mail_form dl dt .optional {
    margin: 0 15px 0 0;
  }
  /* -- input design -- */
  body.contact #mail_form input[name="phone"], body.contact #mail_form input[name="schedule"] {
    width: 60%;
  }
  /* -- button -- */
  body.contact #mail_form p#form_submit {
    padding: 25px 0;
  }
  body.contact #mail_form input[type="button"] {
    margin-left: 0;
  }
}
/* 1000pixel end */

/* -- コンタクトフォームの編集 -- */
/* /ありがとうございます。メッセージは送信されました。/ */
.wpcf7 form.sent .wpcf7-response-output {
    background: #d5edda;
    color: #185626;
    border: 0px solid #c4e5cc;
    
    font-size: 1.8rem!important;
    padding: 1em!important;
    line-height: 1.8!important;
}

/* reCAPTCHA実装後非表示にする */
.grecaptcha-badge { visibility: hidden; }

.reCAPTCHA {
    text-align: center;
    font-family: sans-serif;
    font-size: 1.2rem;
    margin: 0 auto 1em;
}