/* -----------------------------------
 ローディング
----------------------------------- */
.ldr {
	background: var(--base_color);
	position: fixed;
	width: 100%;
  height: 100vh;
	top: 0;
  left: 0;
	z-index: 9999;
  transition : 1s;
	transition-timing-function: cubic-bezier(0.050, 0.280, 0.215, 0.920);
}
.ldrImgCon {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
  width: 150px;
  overflow: hidden;
	filter: var(--svg_white);
}
.ldrImg {
  max-width: inherit!important;
  /* opacity: 0; */
  /* filter: blur(calc(var(--blur)* 30px)); */
  /* --blur: 10; */
  transition: .8s;
}
.ldrImg img {
  filter: var(--svg_white);
}
.ldr_img_disp {
  /* --blur: 0; */
}

/* ---------------------------------------------
メインビジュアル
--------------------------------------------- */
.t_tb {
	width: 100%;
	position: relative;
	box-sizing: border-box;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
}
.t_tb_img_con {
	height: 60vh;
	position: relative;
}

/* トップ画像網掛け */
.dot_screen {
  width: 100%;
	height: 100%;
  background-size: 3px 3px;
  background-image: radial-gradient(#666 15%, rgba(0,0,0,0) 20%);
  background-color: rgba(0,0,0,0.1);
  position: absolute;
  top: 0px;
  left: 0px;
	z-index: 2;
}

/* トップテキスト */
.t_tb_txt {
	font-weight: 700;
	padding-left: var(--side_padding);
	padding-right: var(--side_padding);
	word-break: break-word;
  position: absolute;
  top: 50%;
	transform: translateY(-45%);
  z-index: 2;
	text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.t_tb_txt .head {
	font-size: 3rem;
	line-height: 40px;
	margin-bottom: 20px;
}
.t_tb_txt .bottom {
	font-size: 1.4rem;
	line-height: 24px;
}


/* ---------------------------------------------
スクロールアロー
--------------------------------------------- */
.t_tb_scroll {
	position: absolute;
	bottom: 55px;
  right: 0px;
	z-index: 2;
}
.t_tb_scroll_allow {
	font-weight: 600;
  font-size: 1.15rem;
  display: inline-block;
  transform: rotate(90deg);
	color: #fff;
}
.t_tb_scroll_line {
	position: absolute;
	top: -80px;
	left: 36px;
	height: 45px;
	overflow: hidden;
}
.t_tb_scroll_line span {
	display: block;
	height: 100%;
	border-left: 1px solid #fff;
	animation: scroll 2.5s infinite;
	animation-timing-function: ease-out;
	box-sizing: border-box;
}
@keyframes scroll {
	0% {
		transform: translateY(-100%);
	} 30% {
		transform: translateY(0%);
	} 100% {
		transform: translateY(100%);
	}
}

/* スライドショー */
#viewer {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.slideItem {
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1s linear, transform 15s linear;  /*秒数に注意*/
  position: relative;
  z-index: 1;
}
.slideItem img {
  width: 100%;
  height: 100%;
}
.slideItem:not(:first-child) {
  position: absolute;
  top: 0;
  left : 0;
}

/* スライド用 */
.show {
  opacity: 1;
}
.zoom {
  transform: scale(1.3);
}

/* ---------------------------------------------
アバウト
--------------------------------------------- */
/* .t_about .g_head_01 {
	text-align: left;
} */
.t_about .text {
	margin-bottom: 20px;
}
.t_about .img {
	padding-left: var(--side_padding);
}

/* ----------------------------------------
サービス
---------------------------------------- */
.t_service .list > ul {
	margin-bottom: 40px;
}
.t_service .list > ul > li:not(:last-child) {
	margin-bottom: 30px;
}
.t_service .list .img {
	margin-bottom: 25px;
}
.t_service .list .img img {
	height: 200px;
}
.t_service .list .odd .img {
	padding-right: var(--side_padding);
}
.t_service .list .even .img {
	padding-left: var(--side_padding);
}
.t_service .list .contents {
	padding: 0 var(--side_padding);
}
.t_service .list .head {
	margin-bottom: 10px;
	position: relative;
}
.t_service .list .head .num {
	color: var(--line_gray_color);
	font-size: 4rem;
	font-weight: 900;
	position: absolute;
	top: -20px;
	left: 0;
	z-index: -1;
}
.t_service .list .head h3 {
	font-size: 1.8rem;
	padding: 0 0 0 25px;
}

/* ---------------------------------------------
リクルート
--------------------------------------------- */
.t_recruit_inner {
	color: #fff;
	padding: 30px;
	background-image: url(../image/recruit.jpg);
	background-position: center;
	background-size: cover;
	position: relative;
}
.t_recruit_detail {
	font-weight: 600;
	text-shadow: 0 0 5px rgba(0,0,0,0.3);
}
.t_recruit .view_more_btn {
	margin-top: 30px;
}

/* ---------------------------------------------
ニュース
--------------------------------------------- */
.t_news_title {
	margin-bottom: 20px;
}

/* カテゴリ */
.t_news_category {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
.t_news_category li {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 10px;
	background: var(--corp_color);
	border-radius: 30px;
	display: inline;
	position: relative;
  overflow: hidden;
}
.t_news_category li:not(:last-child) {
	margin-right: 10px;
}
.t_news_category li a {
	padding: 5px 15px;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	border-radius: 30px;
	border: solid 1.5px var(--corp_color);
  position: relative;
  z-index: 1;
}
.t_news_category li:after {
  content: '';
  z-index: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  background: #fff;
  width: 0px;
  height: 0px;
  border-radius: 50%;
  pointer-events: none;
}
.t_news_category li,
.t_news_category li:after,
.t_news_category li a,
.t_news_category li a:before,
.t_news_category li a:after {
  transition: .4s;
}
.t_news_category li a:hover {
  color: var(--corp_color);
}
.t_news_category li a:hover:before {
  background: var(--corp_color);
}
.t_news_category li:hover:after {
  width: 120%;
  padding-top: 120%;
}

/* アーカイブ */
.t_news_archive {
	border-top: 1px solid var(--line_gray_color);
}
.t_news_archive li {
	border-bottom: 1px solid var(--line_gray_color);
}
.t_news_archive li:last-child {
	margin-bottom: 0px;
}
.t_news_archive li:last-child {
	margin-bottom: 0px;
}
.t_news_archive li a {
	padding-top: 15px;
	padding-bottom: 18px;
}
.t_news_archive time {
	font-size: 1.3rem;
	font-weight: 600;
	margin-right: 10px;
}
.t_news_archive a span {
	font-size: 1.3rem;
  font-weight: 600;
}
.t_news_archive h3 {
	margin-top: 5px;
	font-size: 1.5rem;
	display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.t_news_archive a:hover {
	color: var(--corp_color);
}


/****************************** 600px ******************************/
@media (min-width: 600px){

	.t_tb_txt_con {
		font-size: 2.8rem;
	}

	/* ---------------------------------------------
	　スクロールアロー
	--------------------------------------------- */
	.t_tb_scroll {
		/* bottom: 55px; */
	  /* left: 10px; */
	}

	/* ---------------------------------------------
	　サービス
	--------------------------------------------- */
	/* .t_service {
		display: flex;
		justify-content: space-between;
	}

	.t_service_img {
		width: 45%;
		order: 2;
		transition-delay: 0.5s;
	}
	.t_service_img img {
		height: 320px;
	}

	.t_service_index {
		width: 52%;
	}

	.t_service .view_more_btn {
		text-align: left;
	} */

}

/****************************** 800px ******************************/
@media (min-width: 800px){

	/* ----------------------------------------
	トップページ - 選ばれる理由
	---------------------------------------- */
	.t_service .list {
		padding: 0 var(--side_padding);
	}
	.t_service .list > ul {
		margin-bottom: 60px;
	}
	.t_service .list > ul > li:not(:last-child) {
		margin-bottom: 60px;
	}
	.t_service .list > ul > li {
		display: flex;
		justify-content: space-between;
	}
	.t_service .list .img {
		margin-bottom: 0px;
		width: 48%;
	}
	.t_service .list .img img {
		height: 280px;
	}
	.t_service .list .odd .img,
	.t_service .list .even .img {
		padding-left: 0;
		padding-right: 0px;
	}
	.t_service .list .even .img {
		order: 2;
	}
	.t_service .list .contents {
		padding: 0;
		width: 48%;
	}
	.t_service .list .head {
		margin-bottom: 20px;
	}
	.t_service .list .head .num {
		font-size: 4rem;
	}
	.t_service .list .head h3 {
		font-size: 2.4rem;
		line-height: 36px;
	}

}

/****************************** 1025px ******************************/
@media (min-width: 1025px){

	/* -----------------------------------
	 ローディング
	----------------------------------- */
	.ldrImgCon {
	  width: 180px;
	}

	.t_tb_img_con {
		height: 100vh;
	}

	/* トップテキスト */
	.t_tb_txt .head {
    font-size: 5rem;
    line-height: 72px;
    margin-bottom: 30px;
	}
	.t_tb_txt .bottom {
    font-size: 1.8rem;
    line-height: 36px;
	}

	/* スクロール */
	.t_tb_scroll {
		bottom: 80px;
    right: 35px;
	}
	.t_tb_scroll_allow {
    font-size: 1.4rem;
	}
	.t_tb_scroll_line {
		height: 80px;
		left: 45px;
		top: -125px;
	}

	/* ---------------------------------------------
	　アバウト
	--------------------------------------------- */
	.t_about {
		display: flex;
		justify-content: space-between;
	}
	.t_about .content {
		width: 48%;
		padding-right: 0px;
	}
	.t_about .img {
		width: 48%;
		padding-left: 0px;
	}
	.t_about .view_more_btn {
		margin: 50px 0 0;
	}

	/* ----------------------------------------
	トップページ - サービス
	---------------------------------------- */
	.t_service .list {
		padding: 0 var(--side_padding);
	}
	.t_service .list > ul {
		margin-bottom: 60px;
	}
	.t_service .list > ul > li:not(:last-child) {
		margin-bottom: 70px;
	}
	.t_service .list > ul > li {
		display: flex;
		justify-content: space-between;
	}
	.t_service .list .img {
		margin-bottom: 0px;
		width: 48%;
	}
	.t_service .list .odd .img,
	.t_service .list .even .img {
		padding-left: 0;
	}
	.t_service .list .even .img {
		order: 2;
	}
	.t_service .list .contents {
		padding: 0;
		width: 48%;
	}
	.t_service .list .head {
		margin-bottom: 20px;
	}
	.t_service .list .head .num {
		font-size: 5rem;
	}
	.t_service .list .head h3 {
		font-size: 2.4rem;
		padding: 5px 0 0 20px;
	}

	/* ---------------------------------------------
	リクルート
	--------------------------------------------- */
	.t_recruit_inner {
		max-width: 1000px;
		margin-right: auto;
		margin-left: auto;
		padding: 60px 60px 80px;
		background-image: url(../image/recruit.jpg);
	}

	/* ---------------------------------------------
	　ニュース
	--------------------------------------------- */
	.t_news {
		display: flex;
		justify-content: space-between;
	}
	.t_news_index {
		width: 25%;
	}
	.t_news .g_head_01 {
		text-align: left;
	}
	.t_news_archive {
		width: 75%;
	}

	/* アーカイブ */
	.t_news_archive li a {
		padding-top: 25px;
		padding-bottom: 25px;
		display: flex;
		align-items: center;
	}
	.t_news_archive .meta {
		width: 35%;
		display: flex;
	}
	.t_news_archive time {
		font-size: 1.4rem;
		margin-right: 15px;
	}
	.t_news_archive a span {
		font-size: 1.4rem;
		margin-right: 15px;
		/* word-break: keep-all; */
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
		overflow: hidden;
	}
	.t_news_archive h3 {
		margin-top: 0px;
		width: 65%;
		font-size: 1.6rem;
		-webkit-line-clamp: 1;
	}

}

/****************************** 1400px ******************************/
@media (min-width: 1400px){

	/* トップテキスト */
	.t_tb_txt .bottom {
    font-size: 2rem;
    line-height: 40px;
	}
	/* スクロール */
	.t_tb_scroll_allow {
		font-size: 1.6rem;
	}
	.t_tb_scroll {
		bottom: 120px;
		right: 60px;
	}
	.t_tb_scroll_line {
		left: 50px;
		top: -135px;
	}

	/* ---------------------------------------------
	　アバウト
	--------------------------------------------- */
	.t_about {
		display: flex;
		justify-content: space-between;
	}
	.t_about .content {
		width: 40%;
	}
	.t_about .text {
		font-size: 1.7rem;
		line-height: 32px;
	}

	/* ----------------------------------------
	トップページ - サービス
	---------------------------------------- */
	.t_service .list {
		padding: 0 var(--side_padding);
	}
	.t_service .list > ul {
		margin-bottom: 60px;
	}
	.t_service .list > ul > li:not(:last-child) {
		margin-bottom: 70px;
	}
	.t_service .list > ul > li {
		display: flex;
		justify-content: space-between;
	}
	.t_service .list .img {
		margin-bottom: 0px;
		width: 48%;
	}
	.t_service .list .img img {
		height: 320px;
	}
	.t_service .list .odd .img,
	.t_service .list .even .img {
		padding-left: 0;
	}
	.t_service .list .even .img {
		order: 2;
	}
	.t_service .list .contents {
		padding: 0;
		width: 48%;
	}
	.t_service .list .head {
		margin-bottom: 20px;
	}
	.t_service .list .head .num {
		font-size: 5rem;
	}
	.t_service .list .head h3 {
		font-size: 2.8rem;
		padding: 5px 0 0 20px;
	}
	.t_service .list .text {
		font-size: 1.7rem;
		line-height: 34px;
	}

	/* ---------------------------------------------
	　ニュース
	--------------------------------------------- */
	/* アーカイブ */
	.t_news_archive time {
		margin-right: 30px;
	}
	.t_news_archive a span {
		margin-right: 30px;
	}
	.t_news_archive time {
		font-size: 1.5rem;
	}
	.t_news_archive a span {
		font-size: 1.5rem;
	}
	.t_news_archive h3 {
		font-size: 1.6rem;
	}


}
