﻿@charset "UTF-8";


/* 基本レイアウト ここから↓ */
* {
	margin: 0;
	padding: 0;
}
*, *::before, *::after {
    box-sizing: border-box;
}
html{
	font-size: 62.5%;
}
body{
	font-size: 1.6rem;/* 16px*/
	line-height: 2;
	width: 100%;
	color: #231815;
	background-color: #fff;
	/* フォントの種類を指定 */
	font-family: -apple-system, BlinkMacSystemFont, 游ゴシック, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
	/* 字間(プロポーショナルメトリクス)を指定 */
	font-feature-settings: "palt";
	display: inline;
}
li {
	list-style:none;
}
ul, ol {
	padding:0;
	margin:0;
}
a {	
	color: #000;
	text-decoration: none;
}
a:hover {
	/* filter: saturate(180%) opacity(70%);
	transition-duration: 0.5s; */
}
a img:hover {
	filter: opacity(80%);
}
a[href*="tel"] {
	pointer-events: auto;
}
img {
	max-width: 100%;
    height: auto;
	vertical-align: middle;
	display: block;
	margin: auto;
}
img.widthmax {
	/* width: 100%; */
}
.hidden {
	position: absolute;
	top: -9999px;
	left: -9999px;
  }
.sp_only {
	display: block;
}
.pc_only {
	display: none;
}


@media screen and (min-width: 960px) {
	.sp_only {
		display: none;
	}
	.pc_only {
		display: block;
	}
	a[href*="tel"] {
		pointer-events: none;
	}
}
.bold {
	font-weight: bold;
}
/* webfont */
.ff-rodin-m {
	font-family: "FOT-ロダン Pro M";
}
.ff-rodin-db {
	font-family: "FOT-ロダン Pro DB";
}
.ff-rodin-b {
	font-family: "FOT-ロダン Pro B";
}
.ff-seurat-db {
	font-family: "FOT-スーラ ProN DB";
}
.ff-seurat-b {
	font-family: "FOT-スーラ ProN B";
}
.ff-helvetica {
	font-family: "HelveticaLTPro-Light";
}

/* 文字色 */
.c-wh {
	color: #fff;
}
.c-or {
	color: #f08200;
}

/* 背景色 */
.bk-cream {
	background-color: #fff3e3;
	max-width: initial;
	padding: 0;
}
.bk-cream > div {
	max-width: 1000px;
	padding: 0 3%;
	margin: auto;
}

/* フェードインアニメ start */
.fadeIn {
	animation-name: fadeInAnime;
	animation-fill-mode:backwards;
	animation-duration:3s;
	/* animation-iteration-count:infinite; */
	animation-timing-function:ease;
	animation-delay: 0.5s;
	animation-direction:normal;
}
@keyframes fadeInAnime{
	0% {
	opacity: 0;
	}

	100% {
	opacity: 1;
	}
}
/* フェードインアニメ end */

/* 基本レイアウト ここまで↑ */



/*------------------------------

	ヘッダーここから

------------------------------*/
header {
	background: #fff;
	width: 100%;
	position: fixed;
	z-index: 10;
}
header a {
	/* color: #fff; */
}
#header_box {
	padding: 0 0 0 3%;
	display: flex;
	align-items: center; /* 垂直中央寄せ */
	justify-content: space-between;
	/* background-color:burlywood; */
}


#logo {
	/* display: flex; */
	/* align-items: center; 垂直中央寄せ */
	/* background-color:aliceblue; */
}
#logo h1 img {
	width: 150px;
	padding-top: 10px;
	padding-bottom: 10px;
}



#header_box nav{
	font-weight: bold;
}
  /*------------------------------
  
	ここから下がハンバーガーメニュー
	に関するCSS
  
  ------------------------------*/
	
  /* チェックボックスは非表示に */
  .drawer-hidden {
	display: none;
  }

  .drawer {
	/* align-self: center; 垂直方向中央寄せ */
	align-self: stretch; /* 垂直方向伸ばす */
	position: relative; /* 親要素？ */
	background-color: #063e8d;
  }

  /* ハンバーガーアイコンの設置スペース */
  .drawer-open {
	display: flex;
	height: 35px;
	width: 60px;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 100;/* 重なり順を一番上に */
	cursor: pointer;
	border-radius: 5px;
	padding-top: 25px;
  }
  
  /* ハンバーガーメニューのアイコン */
  .drawer-open span,
  .drawer-open span:before,
  .drawer-open span:after {
	content: '';
	display: block;
	height: 3px;
	width: 20px;
	border-radius: 3px;
	/* background: #231815; */
	background: #fff;
	/* transition: 0.5s; */
	transition-duration: 0.5s !important; /* ★スマホで動かない */
	position: absolute;
  }
  
  /* 三本線のうち一番上の棒の位置調整 */
  .drawer-open span:before {
	bottom: 8px;
  }
  
  /* 三本線のうち一番下の棒の位置調整 */
  .drawer-open span:after {
	top: 8px;
  }
  
  /* アイコンがクリックされたら真ん中の線を透明にする */
  #drawer-check:checked ~ .drawer-open span {
	background: rgba(255, 255, 255, 0);
  }
  
  /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
  #drawer-check:checked ~ .drawer-open span::before {
	bottom: 0;
	transform: rotate(45deg);
  }
  
  #drawer-check:checked ~ .drawer-open span::after {
	top: 0;
	transform: rotate(-45deg);
  }
	
  /* メニューのデザイン*/
  .drawer-content {
	width: 100%;
	/* width: 50%; */
	height: 100%;
	position: fixed;
	top: 0;
	left: 100%; /* メニューを画面の外に飛ばす */
	z-index: 99;
	background: #063e8d;
	/* opacity:0.8; */
	transition-duration: 0.5s !important; /* ★スマホで動かない */


	/* position: absolute;
    z-index: 100; 
    top: 68px;
	height: calc( 100vh - 52px);
	*/

	
  }
  
  /* アイコンがクリックされたらメニューを表示 */
  #drawer-check:checked ~ .drawer-content {
	left: 0;/* メニューを画面に入れる */
	/* left: 50%; *//* メニューを画面に入れる */
  }

ul.drawer-list {
	margin: 50px;
	font-size: 1.2em;
}
ul.drawer-list li a {
	display: block;
	padding: 0.5em 0;
	color: #fff;
}
.sp-menu-border {
	margin-right: 50px;
	border-bottom: 1px solid #fff;
}
#sp-menu-home {
	font-size: 1.5em;
}
#sp-menu-tel {
	margin-top: 30px;
	color: #fff;
	text-align: center;
}
#sp-menu-tel a {
	padding: 0;
}

#pcnav {
	display: none; /* PC用メニューを非表示に */
}

	/*------------------------------

		PC用メニューここから

	------------------------------*/
	@media screen and (min-width: 960px) {
	
		#header_box {
			/* display: block; 横並び解除　*/
			max-width: 1000px;
			margin: auto;
			padding-right: 3%;
		}
		#logo h1 img {
			width: 230px;
		}
		nav#pcnav {
			/* display: block;	メニューはロゴの下の段に */
			display: inline-block;
			width: 100%;
			margin: auto;
			align-self: center;/*  垂直方向中央寄せ */
			font-size: 0.8em;
			/* background-color: #ccc; */
			padding-top: 0.5em;
			padding-bottom: 0.5em;
		}
		ul#pcnavul {
			display: flex;
			justify-content: space-between;
			/* justify-content: flex-end; PC用メニュー右寄せ */
			
			/* max-width: 1000px;
			padding: 0 3%;
			margin: auto; */
			/* background:darkseagreen; */
		}
		ul#pcnavul li {
			/* margin-left: 3em; */
		}
		ul#pcnavul a {
			color: #063e8d;
			/* padding: 0 0.2em; */
		}
		ul#pcnavul a:hover {
			/* border-bottom: 2px solid #063e8d; */
		}
		/* PCメニュー下線アニメ start */
		ul#pcnavul a {
			padding-bottom: 5px;
			position: relative;
		}
		ul#pcnavul a::before {
			background: #063e8d;
			content: '';
			width: 100%;
			height: 2px;
			position: absolute;
			left: 0;
			bottom: 0;
			margin: auto;
			transform-origin: right top;
			transform: scale(0, 1);
			transition: transform .3s;
		}
		ul#pcnavul a:hover::before {
			transform-origin: left top;
			transform: scale(1, 1);
		}
		/* PCメニュー下線アニメ end*/

		div.drawer {
			display: none; /* スマホ用メニューを非表示に */
		}


		/* PC用 TEL・メニュー start */
		#pc-tel-menu {
			/* background-color:aquamarine; */
			width: 57%;
		}
		#pc-tel { /*PC用 TEL */
			padding-top: 1%;
			padding-bottom: 1%;
			/* background-color:antiquewhite; */
			display: flex;
			align-items: flex-end;
		}
		#pc-tel img {
			width: 250px;
			display: inline;
		}
		#pc-tel p {
			color: #063e8d;
			font-weight: bold;
			margin-left: 30px;
			font-size: 0.9em;
			/* line-height: 1.0em; */
		}
		/* PC用 TEL・メニュー end */
	}
	/*------------------------------

		PC用メニューここまで

	------------------------------*/





/*------------------------------

	ヘッダーここまで

------------------------------*/
/*------------------------------

	メイン部分ここから

------------------------------*/
main {

}
main video {
	width: 100%;
	display: block;
}
main > section {
	max-width: 1000px;
	padding: 0 3%;
	margin: auto;
	margin-top: 30px;	
}
@media screen and (min-width: 960px) {
	main > section {
		margin-top: 70px;
	}
}

/* メインイメージ部分 ここから */
#main-img {
	width: 100%;
	margin-top: 0;
}
#main-img img {
	/* max-height: 100vh; */
	width: 100%;
	max-width: 1500px;
}
/* メインイメージ部分 ここまで */

/* キャッチコピー部分 ここから */
main > section#catch {
	margin-top: 0;
	text-align: center;
	padding: 3% 0;
}
#catch h3 {
	font-size: 1.3em;
	line-height: 1.7em;
}
#catch-name {
	font-size: 1.3em;
}
#catch-br {
	display: block;
}
@media screen and (min-width: 960px) {
	main > section#catch {
		margin-top: 0;
	}
	#catch h3 {
		font-size: 2.2em;
	}
	#catch-br {
		display: inline;
	}
}
#catch ul {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}
@media screen and (min-width: 960px) {
	#catch ul {
		margin-top: 30px;
	}
}
#catch ul li {
	background-color: #fff;
	border-radius: 15px;
	width: 48%;
	padding: 3%;
	filter: drop-shadow(2px 2px 3px #f6cd7b);
}
@media screen and (min-width: 960px) {
	#catch ul li {
		filter: drop-shadow(5px 5px 4px #f6cd7b);
	}
}
#catch h4 {
	font-size: 1.2em;
	line-height: 1.5em;
}
#catch h4 span {
	display: block;
}
#catch img {
	width: 80px;
	margin: 13px auto;
}
#catch p {
	font-size: 0.9em;
	line-height: 1.5em;
	text-align: left;
	margin-top: 10px;
}
@media screen and (min-width: 960px) {
	#catch h4 {
		font-size: 1.7em;
	}
	#catch h4 span {
		display: inline;
	}
	#catch img {
		width: 170px;
	}
	#catch p {
		font-size: 1.2em;
	}
}
/* キャッチコピー部分 ここまで */
/* 採用情報 start */
#recruit {
	/* ドット斜め start */
	background-color: #fff6e0;
	background-image:
	  radial-gradient(#fffbf2 30%, transparent 30%),
	  radial-gradient(#fffbf2 30%, transparent 30%);
	background-size: 40px 40px;
	background-position: 0 0, 20px 20px;
	/* ドット斜め end */

	border: 5px solid #ef8201;
	border-radius: 15px;
	width: 94%;
	text-align: center;
	padding: 3% 5% 5%;
}
@media screen and (min-width: 960px) {
	#recruit {
		border: 9px solid #ef8201;
		border-radius: 25px;
		max-width: 940px;
	}
}
#recruit h3 {
	font-size: 1.8em;
	line-height: 1.3em;
	letter-spacing: 0.2em;
}
#recruit img {
	margin-top: 1.5em;
}
#recruit h4 {
	font-size: 0.9em;
} 
@media screen and (min-width: 960px) {
	#recruit h3 {
		font-size: 2.2em;
	}
	#recruit img {
		margin-top: 2em;
	}
	#recruit-img {
		width: 60%;
	}
	#recruit h4 {
		font-size: 1.9em;
		margin-top: 0.5em;
	} 
}

#recruit-box li {
	margin-top: 1.5em;
	filter: drop-shadow(2px 2px 3px #f6cd7b);
	padding: 5% 3%;
	text-align: left;
}
#recruit-box-wh {
	background-color: #fff;
}
#recruit-box-pk {
	background-color: #fce6e8;
	color: #e43e64;
}
#recruit-box li h5 {
	font-size: 1.3em;
}
#recruit-box li p {
	margin-top: 0.4em;
	font-size: 0.9em;
}
@media screen and (min-width: 960px) {
#recruit-box {
		display: flex;
		justify-content: space-between;
	}
	#recruit-box li {
		filter: drop-shadow(5px 5px 4px #f6cd7b);
		width: 48.5%;
	}
	#recruit-box li h5 {
		font-size: 1.5em;
	}
	#recruit-box li p {
		font-size: 1.1em;
	}
	#recruit-img-btn {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-top: 1em;
	}
	#recruit-img-btn > img {
		width: 62%;
		margin-left: 0;
	}
	#recruit-img-btn ul {
		width: 35%;
	}
}

/* 求人情報詳細 */
#recruit-detail {
	margin-top: 1.5em;
}
#recruit-detail h4 {
	color: #e5004f;
	font-size: 1.1em;
	line-height: 1.5em;
}

#recruit-detail ul {
	margin-top: 1em;
	text-align: left;
}
#recruit-detail ul li {
	margin-top: 3em;
}
#recruit-detail h5 {
	font-size: 1.3em;
	line-height: 1.5em;
	color: #fff;
	background-color: #e5004f;
	border-radius: 10px;
	padding: 0 0.5em;
	width: 75%;
	max-width: 350px;
}
#recruit-detail ul li p {
	margin-top: 0.7em;
	margin-left: 0.5em;
	line-height: 1.6em;
}
#recruit-detail ul li p.recruit-detail-b {
	/* font-size: 1.1em; */
}
#recruit-detail ul li p.recruit-detail-b a {
	color: #0066c0;
	text-decoration: underline;
	overflow-wrap: break-word;
}
#recruit-detail ul li p.recruit-detail-s {
	font-size: 0.8em;
}
@media screen and (min-width: 960px) {
	#recruit-detail h4 {
		font-size: 2.5em;
		line-height: 1.7em;
	}
	#recruit-detail h5 {
		font-size: 1.7em;
		line-height: 1.8em;
		border-radius: 20px;
	}
	#recruit-detail ul li p {
		margin-top: 1em;
		font-size: 1.5em;
	}
	#recruit-detail ul li p.recruit-detail-b {
		font-size: 1.6em;
	}
	#recruit-detail ul li p.recruit-detail-s {
	font-size: 1.2em;
	}
}

#recruit-copy {
	margin-top: 2.5em;
}
#recruit-copy h5 {
	font-size: 1.1em;
}
#recruit-copy p {
	font-size: 0.8em;
}
@media screen and (min-width: 960px) {
	#recruit-copy h5 {
		font-size: 2em;
	}
	#recruit-copy p {
		font-size: 1.2em;
	}
}
/* 採用情報 end */
/* 参考事例 start */
#example {
	text-align: center;
	padding-top: 3%;
}

#example div {
	background-image: url(../img/icon-keibi.png);
	background-repeat: no-repeat;
	background-size: 13%;
	background-position: 95% 98%;
}
@media screen and (min-width: 960px) {
	#example div {
		background-image: url(../img/icon-keibi.png);
		background-repeat: no-repeat;
		background-size: 15%;
		background-position: 97% 2%;
	}
}
#example h3 {
	font-size: 1.8em;
	line-height: 1.3em;
	margin-top: 0.5em;
	letter-spacing: 0.2em;
}
#example p {
	margin: 1.2em auto 0;
	font-size: 0.9em;
	line-height: 1.5em;
	width: 90%;
	max-width: 540px;
}
#example img {
	margin-top: 1.5em;
	width: 90%;
	max-width: 500px;
}
#example-list {
	text-align: left;
	padding-bottom: 1.5em;
}
@media screen and (min-width: 960px) {
	#example h3 {
		font-size: 2.2em;
	}
	#example p {
		margin-top: 1.5em;
		font-size: 1.5em;
	}
	#example img {
		margin-top: 2em;
	}
	#example-list {
		text-align: center;
	}
}
/* 参考事例 end */
/* お仕事のご依頼 start */
#flow {
	margin-top: 0;
	text-align: center;
	padding-top: 3%;
	padding-bottom: 5%;
}
#flow div {
	background-color: #fff;
	filter: drop-shadow(2px 2px 3px #f6cd7b);
	border-radius: 15px;
	width: 94%;
	text-align: center;
	padding: 3% 5% 5%;

	background-image: url(../img/icon-tel.png);
	background-repeat: no-repeat;
	background-size: 10%;
	background-position: 97% 2%;
}
@media screen and (min-width: 960px) {
	#flow div {
		filter: drop-shadow(5px 5px 4px #f6cd7b);

		background-size: 8%;
	}
}
#flow h3 {
	font-size: 1.8em;
	line-height: 1.3em;
	margin-top: 0.5em;
	letter-spacing: 0.2em;
}
#flow p {
	margin: 1.2em auto 0;
	font-size: 0.9em;
	line-height: 1.5em;
	width: 93%;
	max-width: 450px;
}
#flow img {
	margin-top: 1.5em;
	width: 90%;
	max-width: 500px;
}
@media screen and (min-width: 960px) {
	#flow h3 {
		font-size: 2.2em;
	}
	#flow p {
		margin-top: 1.5em;
		font-size: 1.4em;
	}
	#flow img {
		margin-top: 2em;
	}
	#flow img.pc_only {
		width: 90%;
		max-width: 800px;
	}
}
#flow ul.sp_only {
	margin-top: 1.5em;
}
#flow ul.sp_only img {
	margin-top: 0.8em;
}
@media screen and (min-width: 960px) {

	#flow ul.pc_only {
		display: flex;
		justify-content: center;
	}
	#flow ul.pc_only li {
		width: 35%;
	}
}
/* お仕事のご依頼 end */
/* 代表挨拶 start */
#greeting {
	background-color: #fff3e3;
	text-align: center;
	padding-top: 3%;
	padding-bottom: 3%;
}
#greeting h3 {
	font-size: 1.8em;
	line-height: 1.3em;
	margin-top: 0.5em;
	letter-spacing: 0.2em;
}
#greeting-box {
	margin-top: 1.5em;
	margin-bottom: 2em;
}
#greeting-box div {
	text-align: right;
}
#greeting-box span {
	font-size: 0.8em;
}
#greeting-box p {
	text-align: left;
	margin-top: 1em;
	font-size: 0.9em;
	line-height: 1.6em;
}
@media screen and (min-width: 960px) {
	#greeting h3 {
		font-size: 2.2em;
	}
	#greeting-box {
		display: flex;
		justify-content: space-between;
		margin-top: 2em;
	}
	#greeting-box div {
		width: 52%;
	}
	#greeting-box span {
		font-size: 1em;
	}
	#greeting-box p {
		width: 44%;
		text-align: left;
		margin-top: 0;
		font-size: 1.1em;
		line-height: 1.8em;
	}
}
/* 代表挨拶 end */
/* NEWS start */
#news {
	/* 縦 */
	background-color: #fff;
	background-image:
	linear-gradient(-90deg, #c9d7ee 3%, transparent 3%),
	linear-gradient(#c9d7ee 3%, transparent 3%);
	background-size: 20px 20px;
	background-position: 10px;

	max-width: initial;
	padding: 0;

	text-align: center;
	padding-top: 3%;
	padding-bottom: 3%;
}
#news-box {
	max-width: 1000px;
	padding: 0 3%;
	margin: auto;
}
#news-box a img {
	margin-top: 1em;
	width: 80%;
}
#news-box iframe {
	margin-top: 1.5em;
}
#news h3 {
	font-size: 1.8em;
	line-height: 1.3em;
	margin-top: 0.5em;
	letter-spacing: 0.2em;
}
#news p {
	line-height: 1.5em;
	margin-top: 1em;
	font-size: 1em;
}
@media screen and (min-width: 960px) {
	
	#news-box {
		display: flex;
		justify-content: space-between;
		width: 90%;
		margin: auto;
	}
	#news-box div {
		width: 60%;
	}
	#news h3 {
		font-size: 2.2em;
	}
	#news p {
		font-size: 1.2em;
	}
	#news-box iframe {
		height: 350px;
	}
}
/* NEWS end */
/* 会社情報 ここから */
#company iframe {
	width: 100%;
	height: 300px;
}
#company h3 img {
	width: 100px;
	margin-top: 1.5em;
	margin-bottom: 1.5em;
}
#company div {
	width: 85%;
	margin: auto;
	font-size: 0.8em;
}
#company-mail::before {
	content: '\f0e0';
	font-family: 'Font Awesome 5 Free';
	font-weight: 400;
	margin-right: 0.5em;
}
@media screen and (min-width: 960px) {
	#company {
		display: flex;
		flex-direction: row-reverse;
		justify-content: center;
	}
	#company iframe {
		width: 50%;
		margin-left: 30px;
	}
	#company div {
		max-width: 350px;
		margin: 0;
		font-size: 0.9em;
		/* background-color: #fce6e8; */
	}
	#company h3 img {
		width: 150px;
		margin-top: 0;
	}
}
/* 会社情報 ここまで */

/*------------------------------

	メイン部分ここまで

------------------------------*/

/* ページ上部へ戻るボタン ここから */
.pagetop {
	height: 40px;
	width: 40px;
	position: fixed;
	right: 20px;
	bottom: 20px;
	background: #fff;
	/* border: solid 2px #000; */
	border-radius: 50%;
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 2;
	cursor: pointer;
}
/* ページ上部へ戻るボタン ここまで */

/*------------------------------

	フッター部分ここから

------------------------------*/
#keibigyousya {
	margin-top: 3em;
	width: 85%;
	max-width: 400px;
}

footer {
	background-color: #063e8d;
	color: #fff;
	text-align: center;
	padding: 0.3em;
	margin-top: 3em;
	font-size: 0.7em;
}
@media screen and (min-width: 960px) {
	footer {
		margin-top: 5em;
	}
}
/* body {
	display: flex;
	flex-flow: column;
	min-height: 100vh;
}
main {
	flex: 1;
}

footer {
	
}

footer > div {
	max-width: 1000px;
	margin: auto;
	padding: 3%;
} */

/*------------------------------

	フッター部分ここまで

------------------------------*/


/* *************************************************** */
/*------------------------------

	PC用ここから

------------------------------*/
@media screen and (min-width: 960px) {
	
	
}
/*------------------------------

	PC用ここまで

------------------------------*/








