@charset "utf-8";
/* CSS Document */
body {
	font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-size: 16px;
	color: #333333;
	position: relative;
	font-style: normal;
	font-weight: 500;
}
a {
	text-decoration: none;
	color: #333333;
}
img {
	max-width: 100%;
	vertical-align: bottom;
	display: block;
}
ul {
	list-style: none;
}
.wrap {
	width: 85%;
	margin: 0 auto;
	max-width: 1500px;
}
.center {
	text-align: center;
}
.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.even {
	flex-direction: row-reverse;
}
.flex-2 {
	width: 48%;
}
.flex-3 {
	width: 31%;
}
.white {
	color: #FFFFFF;
}
.txt p {
	margin-bottom: 15px;
	line-height: 1.8;
}
.w-1200 {
	max-width: 1200px;
}


/*==================================================
ヘッダー
===================================*/
#header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	background: #192F60;
}
.header-wrap {
	padding: 10px;
	display: flex;
	align-items: center;
}
.header-left {
	width: 30%;
}
.header-left a {
	display: inline-block;
}
.header-right {
	width: 50%;
	margin-left: auto;
}
.header-top {
	margin-bottom: 8px;
	text-align: end;
}
.header-top a {
	font-size: 25px;
	color: #fff;
}
.header-top a span {
	font-size: 18px;
}
.header-top a:hover {
	opacity: 0.7;
}


/*==================================================
グローバルメニュー
===================================*/
.menu {
    position: relative;
    width: 100%;
	text-align: center;
}
.menu > li {
    float: left;
    width: 16.6%;
	position: relative;
}

.menu > li a {
    display: block;
	font-size: 16px;
	position: relative;
	font-weight: 700;
	color: #fff;
}
.menu > li a img {
	margin: 0 auto;
}

.menu > li:hover::before {
    content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #FFFFFF;
	position: absolute;
	bottom: -8px;
	right: 50%;
	transform: translateX(50%);
}

ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

.menu > li:hover {
    -webkit-transition: all .5s;
    transition: all .5s;
}

.menu__second-level li a:hover {
    background: #897425;
	color: #FFFFFF;
}

/* floatクリア */
.menu:before,
.menu:after {
    content: " ";
    display: table;
}

.menu:after {
    clear: both;
}

.menu {
    *zoom: 1;
}

.menu > li.menu__single {
    position: relative;
}

li.menu__single ul.menu__second-level {
    position: absolute;
    top: 40px;
    width: 100%;
    background: #FAF8F5;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
	z-index: 99;
}

li.menu__single:hover ul.menu__second-level {
    top: 60px;
    visibility: visible;
    opacity: 1;
	z-index: 99;
}
.menu__second-level li a {
	padding: 10px 0;
	color: #53463B;
}


/*==================================================
メインビジュアル
===================================*/
#mv {
	position: relative;
	z-index: 1;
}
.slider {
  position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
/*　背景画像設定　*/

.slider-item01 {
    background:url("img/top/mv01.jpg");
}

.slider-item02 {
    background:url("img/top/mv02.jpg");
}

.slider-item03 {
    background:url("img/top/mv03.jpg");
}

.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:100vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}

.cp {
	position: absolute;
	top: 50%;
	left: 40px;
	transform: translateY(-50%);
	z-index: 1;
	width: 70%;
	max-width: 920px;
	padding: 70px 4%;
	background: rgba(255,255,255,0.60);
}
.cp .top span {
	font-size: 35px;
	display: block;
	margin-bottom: 10px;
}
.cp .btm span {
	font-size: 45px;
	display: block;
	margin-bottom: 10px;
}


/*==================================================
ご挨拶
===================================*/
.index {
	padding: 100px 0;
	position: relative;
	z-index: 1;
}
.index-ttl {
	margin-bottom: 45px;
}
.index-ttl .en {
	font-size: 20px;
}
.index-ttl .ja {
	font-size: 40px;
}
.blue {
	color: #003ABC;
}
.index h3.ttl {
	font-size: 30px;
	margin-bottom: 30px;
}
.more {
	width: 60%;
	max-width: 300px;
	margin-top: 60px;
}
.more-btn {
	display: block;
	color: #fff;
	text-align: center;
	padding: 25px 0;
	font-size: 20px;
	background: #192F60;
	position: relative;
	z-index: 1;
}
.more-btn::after {
	content: "";
	width: 55px;
	height: 3px;
	background: #fff;
	position: absolute;
	bottom: 50%;
	right: 0;
	transform: translateY(50%);
	z-index: 1;
}
.more-btn:hover {
	opacity: 0.7;
}
#index_greeting .txtbox {
	width: 50%;
}
#index_greeting::before {
	content: "";
	width: 55%;
	max-width: 1124px;
	height: 30%;
	max-height: 254px;
	background-image: url("img/top/greeting02.png");
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: bottom left;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}


/*==================================================
業務内容
===================================*/
#index_business .left, #index_business .right {
	width: 50%;
}
#index_business .right .txt {
	max-width: 750px;
}

/*==================================================
協力会社様募集
===================================*/
#index_cooperating {
	background: #F8F4E6;
}
#index_cooperating .bg {
	background-image: url("img/top/cooperating.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
#index_cooperating .txt_bg {
	width: 90%;
	margin: 0 auto;
	background: rgba(255,255,255,0.80);
	padding: 60px 0;
}
#index_cooperating .more {
	margin: 60px auto 0;
}



/*==================================================
求人情報
===================================*/
#index_recruit {
	flex-direction: row-reverse;
}
#index_recruit .left {
	width: 50%;
}
#index_recruit .right {
	margin-left: auto;
	width: 45%;
	max-width: 750px;
}


/*==================================================
お問い合わせ
===================================*/
#contact {
	background: #F8F4E6;
}
.contact_btn {
	max-width: 550px;
	width: 80%;
	margin: 60px auto 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.contact_btn .btn {
	width: 45%;
	max-width: 250px;
	padding: 20px 0;
	background: #192F60;
	text-align: center;
	font-size: 20px;
	color: #fff;
	position: relative;
	z-index: 1;
}
.contact_btn .btn:hover {
	opacity: 0.7;
}
.contact_btn .btn::after {
	content: "";
	border-top: 12px solid transparent;
    border-right: 12px solid #fff;
	position: absolute;
	bottom: 4px;
	right: 4px;
	z-index: 1;
}


/*==================================================
フッター
===================================*/
#footer {
	position: relative;
	z-index: 1;
	background: #DFE2E9;
}
#footer .wrap {
	padding: 80px 0 60px;
}
#footer .info {
	width: 100%;
	margin-top: 60px;
	display: flex;
	flex-wrap: wrap;
}
#footer .info dt {
	width: 100px;
	text-align: center;
	padding-bottom: 10px;
	border-bottom: 1px dashed #192F60;
	margin-bottom: 10px;
}
#footer .info dd {
	width: calc(100% - 100px);
	padding-bottom: 10px;
	border-bottom: 1px dashed #192F60;
	margin-bottom: 10px;
}
.copyright {
	font-size: 14px;
	text-align: center;
	padding: 15px 0;
	background: #192F60;
	font-weight: normal;
	color: #fff;
}


/*==================================================
ページトップに戻る
===================================*/
#page_top{
  width: 60px;
  height: 60px;
  position: fixed;
  right: 20px;
  bottom: 30px;
  background: #CEB553;
  border-radius: 50%;
	z-index: 999;
}
#page_top a{
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 30px;
  color: #fff;
  position: absolute;
  width: 30px;
  height: 30px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}


/*==================================================
ここから下層ページ_事業内容
===================================*/
#mainvisual {
    background-image: url("img/subpage_bg.jpg");
    background-position: center;
    background-size: cover;
	background-repeat: no-repeat;
	position: relative;
    height: 75vh;
    z-index: 1;
}
#page-ttl {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	width: 100%;
	text-align: center;
	font-weight: bold;
	padding: 100px 0;
	background: rgba(255,255,255,0.70);
}
#page-ttl .en {
	font-size: 35px;
}
#page-ttl .ja {
	font-size: 50px;
}
.section {
	padding-top: 100px;
}


#business .item {
	margin-bottom: 100px;
}
#business .ttl {
	font-size: 28px;
	border-bottom: 3px solid #003ABC;
	margin-bottom: 30px;
}



/*==================================================
下層ページ_会社概要
===================================*/
#company .img img {
	margin: 0 auto;
}
#company .company-info {
	width: 100%;
	margin: 60px auto 100px;
	display: flex;
	flex-wrap: wrap;
}
#company .company-info dt {
	width: 200px;
	text-align: center;
	padding: 20px 0;
	border-bottom: 1px solid #707070;
}
#company .company-info dd {
	width: calc(100% - 200px);
	padding: 20px 0;
	border-bottom: 1px solid #707070;
}


/*==================================================
下層ページ_求人募集
===================================*/
.recruit-wrap {
	padding: 5rem 0;
	margin-bottom: 120px;
	background: #F8F4E6;
}
.recruit-wrap p {
	font-size: 35px;
}


/*==================================================
下層ページ_お問い合わせ
===================================*/
.sec-ttl {
	font-size: 35px;
	color: #fff;
	text-align: center;
	padding: 35px 0;
	margin-bottom: 60px;
	background: #192F60;
	position: relative;
	z-index: 1;
}
.sec-ttl::before {
	content: "";
	width: 0;
    height: 0;
    border-bottom: 60px solid transparent;
    border-left: 60px solid rgba(255,255,255,0.80);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.sec-ttl::after {
	content: "";
	width: 0;
    height: 0;
    border-top: 60px solid transparent;
    border-right: 60px solid rgba(255,255,255,0.80);
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
}
.contactform {
    margin: 60px auto;
    padding: 30px 0;
}
.contact-table {
	width: 100%;
	margin-bottom: 20px;
	border-collapse: collapse;
}
.contact-item,
.contact-body {
	padding: 20px 10px;
	border: 1px solid #707070;
}

.contact-item {
  text-align: left; /* テキスト左寄せ */
  width: 25%; /* 横幅30%指定（グレーの背景色部分） */
	background: #ECF0F8;
}

.contact-body {
  width: 75%; /* 横幅70%指定（白背景色部分） */
}
.form-text {
  width: 100%;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.form-textarea {
  width: 100%;
  padding: 10px;
  height: 200px;
  border-radius: 5px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}


.contact-submit {
  width: 250px; /* 横幅指定 */
  background-color: #192F60; /* 背景色 */
  color: #FFFFFF; /* 文字色 */
  font-weight: bold; /* 文字の太さ */
  display: block; /* インライン要素をブロック要素に変更 */
  margin: 0 auto; /* 中央寄せ */
  font-size: 20px; /* 文字の大きさ */
  padding: 15px 0; /* 内側の余白 */
  border-radius: 100vh; /* 角丸指定 */
  border: 3px solid #192F60;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.contact-submit:hover {
	background: #FFFFFF;
	color: #192F60;
}
.contact-item span {
	color: #FF0000;
    font-size: 12px;
    position: relative;
    top: -2px;
}

/*==================================================
下層ページ_協力会社様募集
===================================*/
#cooperating .item {
	margin-bottom: 100px;
}
#cooperating .ttl {
	font-size: 28px;
	border-bottom: 3px solid #003ABC;
	margin-bottom: 30px;
}


/*==================================================
ふわっ
===================================*/

/* その場で */
.fadeIn{
animation-name:fadeInAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 下から */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 上から */

.fadeDown{
animation-name:fadeDownAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 左から */

.fadeLeft{
animation-name:fadeLeftAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
  transform: translateX(-100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* 右から */

.fadeRight{
animation-name:fadeRightAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateX(100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger{
    opacity: 0;
}


