@charset "UTF-8";
/* CSS Document */


/* top-mainVisual */

.top-mainVisual {
	overflow: hidden;
	width: 100%;
	position: relative;
}

.top-mainVisual:before {
	content: "";
	background: url("../images/img-tokuden.svg") no-repeat;
	position: absolute;
	left: 10px;
	top: 45%;
	transform: translateY(-50%);
	width: 150px;
	min-height: 500px;
	z-index: 2;
	animation-name: fadeInAnime;
	animation-fill-mode:backwards;
	animation-duration:3s;
	animation-timing-function:ease;
	animation-delay: 0.5s;
	animation-direction:normal;
}

@keyframes fadeInAnime{
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*===================================
		スライダーのためのcss
===================================*/
.slider {
    position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
	padding: 0;
	margin: 0;
}

.txt-slider {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.txt-slider-inner {
	background-color: rgba(0,0,0,0.5);
	padding: 30px;
}

.top-mainVisual h1 {
	color: #FFF;
  	z-index: 2; 
  	text-align: center;
  	font-size: 44px;
	margin: 0;
	letter-spacing: 0.1em;
	font-style: italic;
	margin-bottom: 20px;
}

.top-mainVisual p {
	color: #FFF;
	font-size: 18px;
	margin-bottom: 0;
	text-align: center;
}





/*　背景画像設定　*/

.slider-item01 {
    background:url("../images/top-slide01.png") center center no-repeat;
}

.slider-item02 {
    background:url("../images/top-slide02.png") center center no-repeat;
}

.slider-item03 {
    background:url("../images/top-slide03.png") center center no-repeat;
}

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

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
	z-index: 3;
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #aaa;/*矢印の色*/
    border-right: 2px solid #aaa;/*矢印の色*/
    height: 25px;
    width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

.top-mainVisual .slick-prev::before, .slick-next:before {
	display: none;
}

/*ドットナビゲーションの設定*/

.slick-dots {
	position: relative;
	z-index: 3;
    text-align:center;
	margin:-50px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}



/* news-slider */

.slick-newsticker {
	position: relative;
	background-color: rgba(237,108,0,0.7);
	top: -148px;
	height: 98px;
	z-index: 999;
}

.slick-newsticker-inner {
	width: 1200px;
	height: 98px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.slick-newsticker h1 {
	color: #FFF;
	font-size: 40px;
	font-style: italic;
	width: 15%;
	margin-bottom: 1rem;
}

.news-slider {
	padding: 0;
	margin: 0;
	width: 65%;
	line-height: 2;
}

.slick-slide {
	
}

.slick-slide dl {
	color: #FFF;
	margin: 0;
}

.slick-slide dl dt {
	clear: both;
	float: left;
	width: 30%;
	margin-bottom: 0;
}

.slick-slide dl dt .cat {
	padding: 5px 15px;
	border: 1px solid #FFF;
	background: transparent !important;
	font-weight: normal;
}

.slick-slide dl dt .date {
	width: auto;
	padding-right: 20px;
}

.slick-slide dl dd {
	margin-left: 30%;
	width: 70%;
	margin-bottom: 0;
}

.slick-slide dl dd a {
	color: #FFF;
}

.slick-slide dl dd a:hover {
	color: #007bff;
}

.slick-newsticker .arrow01 {
	margin: 0;
	width: 20%;
	font-size: 15px;
}

.slick-newsticker .arrow01 a {
	color: #FFF;
	padding: 5px 20px;
	border: 1px solid #FFF;
}

.slick-newsticker .arrow01 a:hover {
	color: rgba(237,108,0,1);
	background-color: #FFF;
}

.slick-newsticker .arrow01 a::after , .slick-newsticker .arrow01 a::before {
	background-color: #FFF;
}

.slick-newsticker .arrow01 a:hover:after , .slick-newsticker .arrow01 a:hover:before {
	background-color: rgba(237,108,0,1);
}





/* easy-to-understand */

.easy-to-understand {
	background-color: #EFEFEF;
	padding: 60px 0 80px;
	margin-top: -148px;
}

.easy-to-understand > a {
	display: block;
	max-width: 1300px;
	width: 100%;
	height: 324px;
}

.easy-to-understand-inner {
	background: url("../images/img-top-easy-to-understand.png") top center no-repeat;
	width: 100%;
	height: 324px;
	max-width: 1300px;
	margin: 0 auto;
	background-size: 100% 100%;
	box-shadow: 1px 1px 10px #aaa;
	position: relative;
}

.easy-to-understand-inner h1 {
	color: #FFF;
	text-align: center;
	padding-top: 30px;
	font-size: 40px;
	text-shadow: 1px 1px 10px #000;
}

.easy-to-understand-inner h1 span {
	display: block;
	font-size: 60%;
	padding-top: 10px;
}

.easy-to-understand-inner .arrow01 {
	margin: 0;
	position: absolute;
	top: 40px;
	right: 45px;;
	border: 1px solid #FFF;
	font-size: 15px;
	width: 280px;
}

.easy-to-understand-inner .arrow01 a {
	color: #FFF;
	padding: 5px 15px;
}

.easy-to-understand-inner .arrow01 a:hover {
	color: #3562AD;
	background-color: #FFF;
}

.easy-to-understand-inner .arrow01 a:before , .easy-to-understand-inner .arrow01 a:after {
	background-color: #FFF;
}

.easy-to-understand-inner .arrow01 a:hover:before , .easy-to-understand-inner .arrow01 a:hover:after {
	background-color: #3562AD;
}






/* top-news */

.top-news {
	width: 100%;
	margin: 50px 0;
}

.top-news-inner {
	width: 1000px;
	margin: 0 auto;
}

.top-news-inner h1 {
	font-size: 40px;
	text-align: center;
	font-style: italic;
	margin-bottom: 20px;
}

.top-news-inner h1 span {
	display: block;
	font-size: 45%;
	font-style: normal;
}

.top-news-inner ul {
	padding: 0;
	margin: 0;
	line-height: 2;
}

.top-news-inner ul li {
	margin-bottom: 0;
	padding: 15px 0;
	border-bottom: 1px solid #ccc;
}

.top-news-inner ul li:first-child {
	border-top: 1px solid #ccc;
}

.titleWrap {
	margin-bottom: 0;
}

.date {
	font-weight: 600;
	width: 130px;
	padding-right: 5px;
	display: inline-block;
}

.cat {
	padding: 5px 20px;
	font-size: 90%;
	color: #FFF;
}

.cat.information {
	background-color: #0760A0;
}
.cat.recruit {
	background-color: #ED6C00;
}
.cat.event {
	background-color: #45B035;
}

.title {
	padding-left: 30px;
}

.title a {
	color: #000;
}

.title a:hover {
	color: rgba(0,78,162);
}




.top-news .arrow01 {
	border: 1px solid #000;
	margin: 50px auto;
	width: 250px;
}

.top-news .arrow01 a {
	color: #000;
	padding: 5px 20px;
}

.top-news .arrow01 a:hover {
	background-color: #000;
	color: #FFF;
}

.top-news .arrow01 a:hover:before , .top-news .arrow01 a:hover:after {
	background-color: #FFF;
}




/* top-businesses */

.top-business {
	width: 100%;
	margin: 50px 0;
}

.top-business-inner {
	width: 100%;
	margin: 0 auto;
}

.top-business-inner h1 {
	font-size: 40px;
	text-align: center;
	font-style: italic;
	margin-bottom: 20px;
	position: relative;
	max-width: 400px;
	margin: 0 auto;
}

.top-business-inner h1 span {
	display: block;
	font-size: 45%;
	font-style: normal;
	padding-top: 10px;
}

.top-business-inner h1:before {
	content: "";
	background: url("../images/icon-our-businesses.svg") no-repeat;
	width: 120px;
	height: 100px;
	position: absolute;
	top: -5px;
	right: -80px;
}

.top-business-list {
	width: 100%;
	margin-top: 50px;
}

.t-b-l > div {
	position: relative;
	margin-bottom: 40px;
	overflow: hidden;
}

.t-b-l .col-md-6 {
	padding: 0;
	position: relative;
	height: 272px;
}

.t-b-l .col-md-6 a {
	display: block;
	height: 272px;
}

.t-b-l h2 {
	margin: 0;
	position: absolute;
	height: 50px;
	left: 20px;
	bottom: 50px;
}

.t-b-l h2 img {
}

.top-business-list01 h2 {
	width: 238px;
}

.top-business-list02 h2 {
	width: 229px;
}

.top-business-list03 h2 {
	width: 210px;
}

.top-business-list04 h2 {
	width: 277px;
}

.t-b-l p {
	position: absolute;
	left: 0;
	bottom: 0;
	margin: 0;
	width: 100%;
	height: 40px;
	color: #FFF;
	font-weight: 600;
	padding: 0.5rem 1.5rem;
}

.t-b-l .arrow02 a {
	
}

.t-b-l .arrow02:before , .t-b-l .arrow02:after {
	background-color: #FFF;
}

.t-b-l .arrow02:before , .t-b-l .arrow02:after {
	right: 3em;
}

.t-b-l .arrow02:hover::before,
.t-b-l .arrow02:hover::after {
	right: 2.5em;
}

.top-business-list01 .col-md-6:nth-child(1) {
	background:url("../images/top-business-list01-01.png") center center no-repeat;
	height: 272px;
	background-size: cover;
}
.top-business-list01 .col-md-6:nth-child(2) {
	background:url("../images/top-business-list01-02.png") center center  no-repeat;
	height: 272px;
	background-size: cover;
}

.top-business-list02 .col-md-6:nth-child(1) {
	background:url("../images/top-business-list02-01.png") center center no-repeat;
	height: 272px;
	background-size: cover;
}
.top-business-list02 .col-md-6:nth-child(2) {
	background:url("../images/top-business-list02-02.png") center center  no-repeat;
	height: 272px;
	background-size: cover;
}

.top-business-list03 .col-md-6:nth-child(1) {
	background:url("../images/top-business-list03-01.png") center center no-repeat;
	height: 272px;
	background-size: cover;
}
.top-business-list03 .col-md-6:nth-child(2) {
	background:url("../images/top-business-list03-02.png") center center  no-repeat;
	height: 272px;
	background-size: cover;
}

.top-business-list04 .col-md-6:nth-child(1) {
	background:url("../images/top-business-list04-01.png") center center no-repeat;
	height: 272px;
	background-size: cover;
}
.top-business-list04 .col-md-6:nth-child(2) {
	background:url("../images/top-business-list04-02.png") center center  no-repeat;
	height: 272px;
	background-size: cover;
}

.top-business-list01 p {
	background-color: rgba(0,72,168,0.8);
}

.top-business-list02 p {
	background-color: rgba(0,78,162,0.8);
}

.top-business-list03 p {
	background-color: rgba(69,167,53,0.8);
}

.top-business-list04 p {
	background-color: rgba(237,108,0,0.8);
}


.circumscribed {
}
 
.circumscribed-box-hidden {
  width: 100%;
  position: relative;
  overflow: hidden;
}
 
.circumscribed-box {
  width: 100%;
  height: 0;
  padding-top: 75%; /* 画像の高さ調整 */
  background: url(画像URL) no-repeat center center; /* 画像のURLを指定 */
  background-size: cover;
}
 
.mask {
  position: absolute;
  width: 100%;
  height: 270px;
  padding-top: 0; /* 画像の高さ調整をした場合は、こちらも同じ値に変更 */
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.8);
}
 
.mask-text {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  font-size: 100%;
  color: #fff;
  text-align: center;
  transition: all 0.5s ease;
}
 
.mouse-over-mask {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.5s ease;
}
 
.circumscribed:hover .mouse-over-mask {
  opacity: 1;
}
 
.circumscribed:hover .mask-text {
  top: 50%;
  transform: translateY(-50%);
}




/* top-more-information */

.top-more-information {
	width: 100%;
	margin: 50px 0;
}

.top-more-information-inner {
	margin: 0 auto;
	max-width: 1300px;
}

.top-more-information-inner h1 {
	font-size: 40px;
	text-align: center;
	font-style: italic;
	margin-bottom: 20px;
}

.nav-top-more-information {
	width: 100%;
}

.nav-top-more-information ul {
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: space-between;
}

.nav-top-more-information ul li {
	position: relative;
}

.nav-top-more-information ul li .arrow01 {
	width: 70%;
	position: absolute;
	bottom: 0;
	right: 0;
	margin: 0;
	background-color: rgba(4,74,150,0.8);
}

.nav-top-more-information ul li .arrow01 a {
	color: #FFF;
	padding: 0.5em 1em;
	font-size: 90%;
}

.nav-top-more-information ul li a {}

.nav-top-more-information ul li a:hover {
	opacity: 0.8;
}

.nav-top-more-information ul li a img {
	width: 100%;
}

.nav-top-more-information ul li .arrow01 a:before , .nav-top-more-information ul li .arrow01 a:after {
	background-color: #FFF;
}

.nav-top-more-information ul li .arrow01 a span {
	display: inline-block;
	margin: 0 auto;
}









@media screen and ( max-width:767px ) {
	
	
	/* top-mainVisual(sp) */

	.top-mainVisual {
		overflow: hidden;
		width: 100%;
		position: relative;
	}
	
	.top-mainVisual:before {
		left: 3%;
		top: 50%;
		width: 50px;
		min-height: 200px;
	}


	/*===================================
			スライダーのためのcss(sp)
	===================================*/
	
	.slider {
		height: 100%;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
	}

	.txt-slider {
		width: 60%;
		top: 50%;
	}
	
	.txt-slider-inner {
		padding: 6%;
	}
	
	.top-mainVisual h1 {
  		font-size: 150%;
		letter-spacing: 0.05em;
		display: block;
		margin: 0;
	}

	.top-mainVisual p {
		font-size: 70%;
		margin-top: 10px;
	}

	



	/*　背景画像設定(sp)　*/

	.slider-item01 {
	}

	.slider-item02 {
	}

	.slider-item03 {
	}

	.slider-item {
    	height: 250px;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  		max-height: 100%;
  		max-width: 100%;
  		object-fit: cover;
	}

	
	
	
	/*====== 縦線が動いてスクロールを促す(sp) =======*/

	/*スクロールダウン全体の場所*/
	
	.scrolldown1{
    /*描画位置※位置は適宜調整してください*/
	position: relative;
		bottom: 80px;
   		/*全体の高さ*/
		height: auto;
	}

	/* 線の描写 */
	.scrolldown1::after{
	content: "";
    /*描画位置*/
	position: absolute;
	top: 0;
    	/*線の形状*/
		width: 0.8px;
	height: 30px;
	background: #FFF;
    /*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 1.4s ease-in-out infinite;
	opacity:0;
	}
	
	/*高さ・位置・透過が変化して線が上から下に動く*/
	@keyframes pathmove {
		
		0% {
			height:0;
			top:0;
			opacity: 0;
		}
		
		50% {
			height: 30px;
			opacity: 1;
		}
		
		100% {
			height:0;
			top: 60px;
			opacity: 0;
		}
	}
	
	
	
	/* news-slider(sp) */

	.slick-newsticker {
		position: static;
		height: auto;
		padding: 25px 3%;
	}

	.slick-newsticker-inner {
		width: 100%;
		height: auto;
		display: block;
	}

	.slick-newsticker h1 {
		font-size: 200%;
		width: 100%;
		text-align: center;
		margin-bottom: 0.8rem;
	}

	.news-slider {
		width: 100%;
		line-height: normal;
		height: 100%;
	}

	.slick-newsticker .slick-slide {
		margin-bottom: 0;
		overflow: hidden;
	}

	.slick-slide dl {
		width: 100%;
		height: 85px;
		line-height: 2;
		text-align: center;
	}

	.slick-slide dl dt {
		float: none;
		width: 100%;
		margin-bottom: 5px;
		font-size: 90%;
	}

	.slick-slide dl dt span {
		padding: 3px 10px;
	}

	.slick-slide dl dd {
		margin-left: 0;
		width: 100%;
		font-size: 90%;
		height: auto;
		line-height: 1.4;
	}

	.slick-slide dl dd a {
	}

	.slick-slide dl dd a:hover {
	}

	.slick-newsticker .arrow01 {
		margin: 10px auto 0;
		width: 60%;
		font-size: 80%;
	}

	.slick-newsticker .arrow01 a {
	}

	.slick-newsticker .arrow01 a:hover {
	}

	.slick-newsticker .arrow01 a::after , .slick-newsticker .arrow01 a::before {
	}

	.slick-newsticker .arrow01 a:hover:after , .slick-newsticker .arrow01 a:hover:before {
	}





	/* easy-to-understand(sp) */

	.easy-to-understand {
		padding: 50px 3% 100px;
		margin-top: 0;
	}

.easy-to-understand > a {
	display: block;
	max-width: 1300px;
	width: 100%;
	height: 324px;
}

	.easy-to-understand-inner {
	background: url("../images/img-top-easy-to-understand.png") top center no-repeat;
	width: 100%;
		height: auto;
		max-width: 100%;
	margin: 0 auto;
		background-size: cover;
	box-shadow: 1px 1px 10px #aaa;
	position: relative;
		padding: 100px 0;
	}

	.easy-to-understand-inner h1 {
	text-align: center;
		padding-top: 0;
		font-size: 150%;
		margin: 0;
		position: absolute;
		top: 40%;
		left: 50%;
		transform: translate(-50%,-60%);
		width: 100%;
	}

.easy-to-understand-inner h1 span {
	display: block;
	font-size: 60%;
	padding-top: 10px;
}

	.easy-to-understand-inner .arrow01 {
		margin: 0;
		top: auto;
		right: auto;
		bottom: -65px;
		left: 50%;
		transform: translateX(-50%);
		font-size: 80%;
		width: 250px;
		text-shadow: none;
		background-color: rgba(0,78,162,0.8);
	}

	.easy-to-understand-inner .arrow01 a {
	padding: 5px 15px;
		text-decoration: none;
		border: 1px solid transparent;
	}

	.easy-to-understand-inner .arrow01 a:hover {
	color: #3562AD;
	background-color: #FFF;
		border: 1px solid rgba(0,78,162,0.8);
	}

.easy-to-understand-inner .arrow01 a:before , .easy-to-understand-inner .arrow01 a:after {
	background-color: #FFF;
}

.easy-to-understand-inner .arrow01 a:hover:before , .easy-to-understand-inner .arrow01 a:hover:after {
	background-color: #3562AD;
}






	/* top-news(sp) */

	.top-news {
		margin: 30px 0;
		padding: 0 3%;
	}

	.top-news-inner {
		width: 100%;
		max-width: 540px;
		margin: 0 auto;
	}

	.top-news-inner h1 {
		font-size: 180%;
	}

	.top-news-inner h1 span {
		font-size: 50%;
	}
	
	.top-news p img {
		width: 100%;
	}
	
	.top-news-inner ul {
		line-height: 1.8;
	}

	.top-news-inner ul li {
	}

	.top-news-inner ul li:first-child {
	}

	.titleWrap {
	}

	.date {
	}

	.cat {
		padding: 3px 20px;
	}

	.cat.information {
	}
	.cat.recruit {
	}
	.cat.event {
	}

	.title {
		padding-left: 0;
		display: block;
		padding-top: 10px;
		font-size: 90%;
	}

	.title a {
	}

	.title a:hover {
	}

	.top-news .arrow01 {
		margin: 30px auto;
		width: 200px;
		font-size: 80%;
	}

	.top-news .arrow01 a {
	}

	.top-news .arrow01 a:hover {
	}

	.top-news .arrow01 a:hover:before , .top-news .arrow01 a:hover:after {
	}




	/* top-businesses(sp) */

	.top-business {
	}

	.top-business-inner {
	}

	.top-business-inner h1 {
		font-size: 180%;
	}

	.top-business-inner h1 span {
		font-size: 50%;
		padding-top: 5px;
	}

	.top-business-inner h1:before {
		background: url("../images/icon-our-businesses.svg") no-repeat;
		width: 60px;
		height: 57px;
		top: 5px;
		right: 20px;
	}

	.top-business-list {
		margin-top: 30px;
	}

	.t-b-l > div {
		margin-bottom: 30px;
	}

	.t-b-l .col-md-6 {
		height: 200px !important;
	}

	.t-b-l .col-md-6 a {
		height: 200px;
	}

	.t-b-l h2 {
		left: 30px;
	}

	.t-b-l h2 img {
	}

	.top-business-list01 h2 {
	}

	.top-business-list02 h2 {
	}

	.top-business-list03 h2 {
	}

	.top-business-list04 h2 {
	}

	.t-b-l p {
		height: 38px;
		padding: 0.5rem 2rem;
		font-size: 90%;
	}

	.t-b-l .arrow02 a {
	}

	.t-b-l .arrow02:before , .t-b-l .arrow02:after {
	}

	.t-b-l .arrow02:before , .t-b-l .arrow02:after {
	}

	.t-b-l .arrow02:hover::before,
	.t-b-l .arrow02:hover::after {
	}

	.top-business-list01 .col-md-6:nth-child(1) {
	}
	.top-business-list01 .col-md-6:nth-child(2) {
	}

	.top-business-list02 .col-md-6:nth-child(1) {
	}
	.top-business-list02 .col-md-6:nth-child(2) {
	}

	.top-business-list03 .col-md-6:nth-child(1) {
	}
	.top-business-list03 .col-md-6:nth-child(2) {
	}

	.top-business-list04 .col-md-6:nth-child(1) {
	}
	.top-business-list04 .col-md-6:nth-child(2) {
	}

	.top-business-list01 p {
	}

	.top-business-list02 p {
	}

	.top-business-list03 p {
	}

	.top-business-list04 p {
	}


	.circumscribed {
	}
 
.circumscribed-box-hidden {
  width: 100%;
  position: relative;
  overflow: hidden;
}
 
.circumscribed-box {
  width: 100%;
  height: 0;
  padding-top: 75%; /* 画像の高さ調整 */
  background: url(画像URL) no-repeat center center; /* 画像のURLを指定 */
  background-size: cover;
}
 
	.mask {
  position: absolute;
  width: 100%;
  	height: 200px;
  padding-top: 0; /* 画像の高さ調整をした場合は、こちらも同じ値に変更 */
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.8);
	}
 
	.mask-text {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  	font-size: 85%;
  color: #fff;
  text-align: center;
  transition: all 0.5s ease;
	}
 
.mouse-over-mask {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.5s ease;
}
 
.circumscribed:hover .mouse-over-mask {
  opacity: 1;
	padding: 0 3%;
}
 
	.circumscribed:hover .mask-text {
  		top: 40%;
  		transform: translateY(-60%);
	}




	/* top-more-information(sp) */

	.top-more-information {
		width: 100%;
	}

	.top-more-information-inner {
		max-width: 100%;
	}

	.top-more-information-inner h1 {
		font-size: 200%;
	}

	.nav-top-more-information {
	}

	.nav-top-more-information ul {
		display: block;
	}

	.nav-top-more-information ul li {
		margin-bottom: 20px;
	}

	.nav-top-more-information ul li .arrow01 {
		width: 100%;
	}

	.nav-top-more-information ul li .arrow01 a {
	}

	.nav-top-more-information ul li a {
	}

	.nav-top-more-information ul li a:hover {
	}

	.nav-top-more-information ul li a img {
	}

	.nav-top-more-information ul li .arrow01 a:before , .nav-top-more-information ul li .arrow01 a:after {
	}

	.nav-top-more-information ul li .arrow01 a span {
	}
	
	
	
}




@media only screen and (min-width:768px) and (max-width:1199px) {
	
	
	
	/* top-mainVisual(tab) */

	.top-mainVisual {
		height: 500px;
	}

	.top-mainVisual:before {
		transform: translateY(-55%);
		left: 3%;
		top: 45%;
		width: 100px;
		min-height: 350px;
	}


	/*===================================
			スライダーのためのcss(tab)
	===================================*/
	
	.slider {
		height: 100%;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
	}

	.txt-slider {
	}
	
	.txt-slider-inner {
		padding: 30px;
	}

	.top-mainVisual h1 {
  		font-size: 220%;
	}

	.top-mainVisual p {
		font-size: 90%;
	}
	



	





	/*　背景画像設定(tab)　*/

	.slider-item01 {
	}

	.slider-item02 {
	}

	.slider-item03 {
	}

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

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
	z-index: 3;
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #aaa;/*矢印の色*/
    border-right: 2px solid #aaa;/*矢印の色*/
    height: 25px;
    width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

.top-mainVisual .slick-prev::before, .slick-next:before {
	display: none;
}

/*ドットナビゲーションの設定*/

.slick-dots {
	position: relative;
	z-index: 3;
    text-align:center;
	margin:-50px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}



	/* news-slider(tab) */

	.slick-newsticker {
		top: -78px;
		height: 78px;
	}

	.slick-newsticker-inner {
		width: 100%;
		height: 78px;
		padding: 0 3%;
	}

	.slick-newsticker h1 {
		font-size: 200%;
		margin-bottom: 0;
	}

	.news-slider {
		line-height: 1.8;
		width: 70%;
	}

	.slick-slide {
	}

	.slick-slide dl {
		font-size: 90%;
		height: 78px;
		position: relative;
	}

	.slick-slide dl dt {
		width: 35%;
		position: absolute;
		top: 50%;
		transform: translateY(-50%)
	}

	.slick-slide dl dt .date {
		padding-right: 0;
		display: inline-block;
		font-size: 90%;
	}
	
	.slick-slide dl dt .cat {
		padding: 3px 10px;
		display: inline-block;
		font-size: 90%;
		margin-left: 10px;
	}

	.slick-slide dl dd {
		margin-left: 35%;
		width: 65%;
		line-height: 1.2;
		position: absolute;
		top: 50%;
		transform: translateY(-50%)
	}

	.slick-slide dl dd a {
	}

	.slick-slide dl dd a:hover {
	}

	.slick-newsticker .arrow01 {
		width: 15%;
	}

	.slick-newsticker .arrow01 a {
		padding: 10px 10px 20px 10px;
		font-size: 80%;
	}

	.slick-newsticker .arrow01 a:hover {
	}

	.slick-newsticker .arrow01 a::after {
		top: 80%;
		right: 2em;
	}
	
	.slick-newsticker .arrow01 a::before {
		top: calc(80% - 1px);
		right: 2em;
	}
	
	.slick-newsticker .arrow01 a:hover::before, .slick-newsticker .arrow01 a:hover::after {
		right: 1.5em;
	}
	
	.slick-newsticker .arrow01:after {
	}



	/* easy-to-understand(tab) */

	.easy-to-understand {
		padding: 80px 3% 100px;
		margin-top: -78px;
	}

	.easy-to-understand > a {
		max-width: 100%;
		height: 250px;
	}

	.easy-to-understand-inner {
		height: 250px;
		max-width: 100%;
	}

	.easy-to-understand-inner h1 {
		font-size: 200%;
	}

	.easy-to-understand-inner h1 span {
		font-size: 50%;
	}

	.easy-to-understand-inner .arrow01 {
		margin: 0;
		top: auto;
		right: auto;
		bottom: -65px;
		left: 50%;
		transform: translateX(-50%);
		font-size: 80%;
		width: 400px;
		text-shadow: none;
		background-color: rgba(0,78,162,0.8);
	}

	.easy-to-understand-inner .arrow01 a {
		border: 1px solid transparent;
	}

	.easy-to-understand-inner .arrow01 a:hover {
		border: 1px solid rgba(0,78,162,0.8);
	}

	.easy-to-understand-inner .arrow01 a:before , .easy-to-understand-inner .arrow01 a:after {
	}

	.easy-to-understand-inner .arrow01 a:hover:before , .easy-to-understand-inner .arrow01 a:hover:after {
		background-color: gba(0,78,162,0.8);;
	}






	/* top-news(tab) */

	.top-news {
	}

	.top-news-inner {
		width: 100%;
		padding: 0 3%;
	}

	.top-news-inner h1 {
		font-size: 240%;
	}

	.top-news-inner h1 span {
		font-size: 40%;
	}

	.top-news-inner ul {
	}

	.top-news-inner ul li {
	}

	.top-news-inner ul li:first-child {
	}

	.titleWrap {
	}

	.date {
	}

	.cat {
	}

	.cat.information {
	}
	.cat.recruit {
	}
	.cat.event {
	}

	.title {
		padding-left: 20px;
	}

	.title a {
	}

	.title a:hover {
	}




	.top-news .arrow01 {
	}

	.top-news .arrow01 a {
	}

	.top-news .arrow01 a:hover {
	}

	.top-news .arrow01 a:hover:before , .top-news .arrow01 a:hover:after {
	}




	/* top-businesses(tab) */

	.top-business {
	}

	.top-business-inner {
	}

	.top-business-inner h1 {
		font-size: 240%;
	}

	.top-business-inner h1 span {
		font-size: 40%;
	}

	.top-business-inner h1:before {
	}

	.top-business-list {
	}

	.t-b-l > div {
	}

	.t-b-l .col-md-6 {
		height: 250px;
	}

	.t-b-l .col-md-6 a {
		height: 250px;
	}

	.t-b-l h2 {
	}

	.t-b-l h2 img {
	}

	.top-business-list01 h2 {
	}

	.top-business-list02 h2 {
	}

	.top-business-list03 h2 {
	}

	.top-business-list04 h2 {
	}

	.t-b-l p {
	}

	.t-b-l .arrow02 a {
	}

	.t-b-l .arrow02:before , .t-b-l .arrow02:after {
	}

	.t-b-l .arrow02:before , .t-b-l .arrow02:after {
	}

	.t-b-l .arrow02:hover::before,
	.t-b-l .arrow02:hover::after {
	}

	.top-business-list01 .col-md-6:nth-child(1) {
		height: 250px;
	}
	.top-business-list01 .col-md-6:nth-child(2) {
		height: 250px;
	}

	.top-business-list02 .col-md-6:nth-child(1) {
		height: 250px;
	}
	.top-business-list02 .col-md-6:nth-child(2) {
		height: 250px;
	}

	.top-business-list03 .col-md-6:nth-child(1) {
		height: 250px;
	}
	.top-business-list03 .col-md-6:nth-child(2) {
		height: 250px;
	}

	.top-business-list04 .col-md-6:nth-child(1) {
		height: 250px;
	}
	.top-business-list04 .col-md-6:nth-child(2) {
		height: 250px;
	}

	.top-business-list01 p {
	}

	.top-business-list02 p {
	}

	.top-business-list03 p {
	}

	.top-business-list04 p {
	}


	.circumscribed {
	}
 
	.circumscribed-box-hidden {
	}
 
	.circumscribed-box {
	}
 
	.mask {
	}
 
	.mask-text {
  		font-size: 80%;
	}
 
	.mouse-over-mask {
	}
 
	.circumscribed:hover .mouse-over-mask {
	}
 
	.circumscribed:hover .mask-text {
  		top: 45%;
  		transform: translateY(-55%);
	}




	/* top-more-information(tab) */

	.top-more-information {
	}

	.top-more-information-inner {
		max-width: 100%;
	}

	.top-more-information-inner h1 {
		font-size: 240%;
	}

	.nav-top-more-information {
	}

	.nav-top-more-information ul {
	}

	.nav-top-more-information ul li {
	}

	.nav-top-more-information ul li .arrow01 {
		width: 80%;
	}

	.nav-top-more-information ul li .arrow01 a {
		padding: 0.3em 1em;
		font-size: 80%;
	}

	.nav-top-more-information ul li a {}

	.nav-top-more-information ul li a:hover {
	}

	.nav-top-more-information ul li a img {
	}

	.nav-top-more-information ul li .arrow01 a:before , .nav-top-more-information ul li .arrow01 a:after {
	}
	
	.nav-top-more-information ul li .arrow01 a:after {
		width: 30px;
	}

	.nav-top-more-information ul li .arrow01 a span {
	}
	
	
	
	
	
	
	
	
	
}