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

/* ---------------------------------------------------------------------------------------------

　   webフォント

--------------------------------------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

.source-sans {
	font-family: "Source Sans 3", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 800;
	}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');
.noto-sans-jp {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: bold;
	font-style: 900;
	}


/* ---------------------------------------------------------------------------------------------

　   ページ読み込み　ふわっと表示

--------------------------------------------------------------------------------------------- */

  body {
    -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
    -o-animation: fadeIn 1.5s ease 0s 1 normal;
	animation: fadeIn 1.5s ease 0s 1 normal;
	}
	@keyframes fadeIn {
		0% {
			opacity: 0
			}
		100% {
			opacity: 1
			}
		}
	@-webkit-keyframes fadeIn {
		0% {
			opacity: 0
			}
		100% {
			opacity: 1
			}
		}

/* ---------------------------------------------------------------------------------------------

　   全体

--------------------------------------------------------------------------------------------- */

html {
	margin:			0!important;
	padding:		0!important;
	overflow-y: auto;
	-webkit-overflow-scrolling:touch;
	-moz-text-size-adjust:		none;
	-webkit-text-size-adjust:	100%;
	}
	
body{
	color: #282828;
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: 600;
	-webkit-font-smoothing: antialiased;
	line-height:	200%;
	width:			100%;
	padding:		0;
	margin: 0;
	}
	@media only screen and (max-width: 640px) {}
	@media only screen and (max-width: 540px) {
		body{
			font-size: 14.5px;
			line-height:	220%;
			}
		}
	@media only screen and (max-width: 480px) {
		body{
			font-size: 13.5px;
			/*font-weight: normal;*/
			}
		}
	@media only screen and (max-width: 360px) {
		body{
			font-size: 13px;
			}
		}

	img {
		border:			0;
		vertical-align:	middle;
		}
	a img {
		text-align:center;
		border-style:none;
		}




/* ---------------------------------------------------------------------------------------------

　   共通パーツ

--------------------------------------------------------------------------------------------- */

/*----------

　テキスト

----------*/


/* リンク 装飾なし　*/
a{
	text-decoration: none;
    transition: .3s;
	}
/*a:hover{
    opacity: .7;
}*/

/*フォント指定*/
.tiny{
    font-size: 0.7em;
    }

/*フォント色指定*/
.ft_green{
	color: #50be50;
	}

.ft_red{
	color: #ff0000;
	}

.en{
	font-family: "Source Sans 3", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 800;
	}




/*----------

　デバイスで表示切り替え

----------*/

/*　PCで非表示、スマホで表示　*/
.pc_hidden{
	display: none;
	}
	@media only screen and (max-width: 900px) {
		.pc_hidden{
			display:block !important;
			}
		}
/*　スマホで非表示、PCで表示　*/
.sp_hidden{
	display: block;
	}
	@media only screen and (max-width: 900px) {
		.sp_hidden{
			display:none!important;
			}
		}


/*----------

　罫線

----------*/

hr.line_solid{
	border: none;
	border-bottom: solid 1px #ccc;
	margin: 1.5rem 0 1.8rem 0;
	}




/*　回りこみ解除　*/
.clear{
	clear:both;
	float: none;
	}
.clear::after {
	content: " "; 
	display: block;
	clear: both;
	}

/*PCでのtel:無効に*/
[href^="tel"] {
    text-decoration: none;
    cursor: default;
    pointer-events: none;
	}
@media screen and (max-width: 767px) {
    [href^="tel"] {
        pointer-events: auto;
    	}
	}




/*----------

　画像

----------*/

img {
	border:			0;
	vertical-align:	middle;/*画像 縦配置時の隙間なくす*/
	}
a img {
	text-align:center;
    border-style:none;
	}


/*.shake-side {
    animation: shake-side 3s infinite ease-in-out;
	}


@keyframes shake-side {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(50px);
    }
}*/



/*----------

　ボタン 角丸

----------*/

/*ボタン 左揃え*/
.btn_wrap___left{
	text-align: left;
	}

/*ボタン センター揃え*/
.btn_wrap___center{
	text-align: center;
	}

/*ボタン 右揃え*/
.btn_wrap___right{
	text-align: right;
	}

	@media only screen and (max-width: 1100px) {}
	@media only screen and (max-width: 900px) {}
	@media only screen and (max-width: 767px) {}
	@media only screen and (max-width: 600px) {}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}





/*-----丸がボタンに変形する-----*/
.btntransform{
	position: relative;
    display: inline-block;
	padding:0 50px 0 0 ;
	line-height: 50px;
    text-decoration: none;
    outline: none;
	z-index: 1;
	}
.btntransform span{
	position: inherit;
	right:0;
	color: #fff;
	font-size: 1.2rem;
	letter-spacing: 0.1rem;
	margin-right: 0.5rem;
	z-index: 10;
	transition:.3s ease-out;
	}
.btntransform:hover span{
	color: #000!important;
	right:-28px;
	margin-right: 0;
	}

/*矢印 設定*/
.btntransform .arrow{
	content: url("../img/arrow02.svg");
	position: absolute;
	right: 20px;
	top: 20px;
	width: 12px;
	height: 10.5px;
	z-index: 1;
	transition:.3s ease-out;
	opacity: 1;
	}
.btntransform:hover .arrow{
	content: url("../img/arrow01.svg");
	right: 0;
	opacity: 0;
	}

/* 丸が動く */
.btntransform::after{
	content:'';
	position:absolute;
	right:0;
	z-index: 0;
	width:50px;
	height:50px;
	border: solid 1px #fff;
	border-radius:25px;
    transition:.3s ease-out;
	padding-right: 0;
	}
/*hoverした際の丸の形状*/
.btntransform:hover::after{
	width:calc(100% + 5px);
	background-color: #fff;
	right:-5px;
	}

	@media only screen and (max-width: 900px) {}
	@media only screen and (max-width: 767px) {
		.btntransform span{
			font-size: 1rem;
			letter-spacing: 0.05rem;
			margin-right: 0.5rem;
			}

		/*-----丸がボタンに変形する-----*/
		.btntransform{
			padding:0 30px 0 0 ;
			line-height: 30px;
			}
		.btntransform:hover span{
			right:-15px;
			}

		/*矢印 設定*/
		.btntransform .arrow{
			right: 9px;
			top: 10px;
			}
		/* 丸が動く */
		.btntransform::after{
			width:30px;
			height:30px;
			border-radius:15px;
			}
		/*hoverした際の丸の形状*/
		.btntransform:hover::after{
			width:calc(100% + 3px);
			right:-3px;
			}
		}
	@media only screen and (max-width: 540px) {
		.btntransform span{
			font-size: 0.8rem;
			}
		/*-----丸がボタンに変形する-----*/
		.btntransform{
			padding:0 24px 0 0 ;
			line-height: 24px;
			}
		.btntransform:hover span{
			right:-12px;
			}
		/*矢印 設定*/
		.btntransform .arrow{
			right: 7px;
			top: 8px;
			width: 10px;
			height: 8.5px;
			}
		/* 丸が動く */
		.btntransform::after{
			width:24px;
			height:24px;
			border-radius:12px;
			}
		/*hoverした際の丸の形状*/
		.btntransform:hover::after{
			width:calc(100% + 3px);
			right:-3px;
			}
		}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}





/*-----

黒ver

-----*/

.btntransform.blk span{
	color: #000;
	}
.btntransform.blk:hover span{
	color: #fff!important;
	}

.btntransform.blk .arrow{
	content: url("../img/arrow01.svg");
	}
.btntransform.blk:hover .arrow{
	content: url("../img/arrow02.svg");
	}

.btntransform.blk::after{
	border: solid 1px #000;
	}
/*hoverした際の丸の形状*/
.btntransform.blk:hover::after{
	background-color: #000;
	}











.readmore{
	color: #50be50!important;
	text-decoration: none!important;
	font-weight: bold;
	line-height: 100%;
	position: relative;
	left: 0;
	}
.readmore::before{
	content: url("../img/arrow01.svg");
	display: inline-block;
	width: 9px;
	height: 11px;
	margin-right: 0.7rem;
	position: relative;
	left: 0;
	transition: .2s;
	}

.readmore:hover{
	left: -1rem;
	}
.readmore:hover::before{
	opacity: 0;
	left: 1rem;
	}

	@media only screen and (max-width: 900px) {
		.readmore{
			font-size: 0.85rem;
			}
		}
	@media only screen and (max-width: 767px) {}
	@media only screen and (max-width: 540px) {}
	@media only screen and (max-width: 480px) {
		.readmore{
			font-size: 0.8rem;
			}
		.readmore::before{
			width: 9px;
			height: 11px;
			margin-right: 0.25rem;
			}
		}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}








/* ボタン共通設定 */
.btn{
    position: relative;
	overflow: hidden;
	text-decoration: none!important;
	display: inline-block;
   	border: 1px solid #ccc;
    padding: 0.75rem 3rem;
    text-align: center;
    outline: none;  
    transition: ease .2s;
	width: auto;
	margin: 1rem auto 0 auto;
	}
.btn span {
	position: relative;
	z-index: 3;
	color:#282828;
	}
.btn:hover span{
	color:#fff;
	}

/* 背景が流れる（中央から横全体） */
.btn:hover{
   	border: 1px solid #282828;
	}
.bgcenterx:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background: #282828;
	width: 100%;
	height: 100%;
	transition: transform .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transform: scale(0, 1);
	transform-origin: top;
	}
.bgcenterx:hover:before{
	transform:scale(1, 1);
	}

/*-- 背景が流れる（左から右） --*/
.bgleft:before {
 	content: '';
 	position: absolute;
 	top: 0;
 	left: 0;
 	z-index: 2;
 	background:#282828;
 	width: 100%;
	height: 100%;
 	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
 	transform: scale(0, 1);
	transform-origin: right top;
    }
.bgleft:hover:before{
	transform-origin:left top;
	transform:scale(1, 1);
    }


	@media only screen and (max-width: 1100px) {}
	@media only screen and (max-width: 900px) {
		.btn{
			padding: 0.75rem 3rem;
			font-size: 85%;
			width: inherit;
			min-width: 80%;
			max-width: 80%;
			}
		}
	@media only screen and (max-width: 767px) {
		.btn{
			max-width: 80%;
			padding: 0.5rem 2rem;
			}
		}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}





a{
	transition: .2s;
	}
a:hover{
	/*color: #aaa;*/
	}




/*==================================================
　5-3-3 左から右に線が伸びる（下部）
===================================*/
.hover_slidebar a{
	position: relative;
	}

.hover_slidebar.current a,
.hover_slidebar a:hover{}

.hover_slidebar a::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 1px;
    background:#ddd;
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: left top;/*左上基点*/
}

/*現在地とhoverの設定*/
.hover_slidebar.current a::after,
.hover_slidebar a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
	}




/*==================================================
　5-3-1 中心から外に線が伸びる（下部）
===================================*/

.textlink {
    padding-bottom: 5px;
    background-image: linear-gradient(#333, #333);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 0 1px;
    transition: background-size 0.3s;
	}
.textlink:hover {
    background-position: bottom left;
    background-size: 100% 1px;
	}







/* ---------------------------------------------------------------------------------------------

　   wrapper

--------------------------------------------------------------------------------------------- */

.wrapper{
	overflow: hidden;
	}







/* ---------------------------------------------------------------------------------------------

　   header

--------------------------------------------------------------------------------------------- */

header#header{
    position: relative;
    /*height: auto;
	min-height: 60vh;
  	min-height: calc(var(--vh, 1vh) * 60);*/
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 9;
	} 


/*-- サイトタイトル--*/
.site_ttl{
    position:absolute;
    top: 0.75rem;
    left: 4%;
	z-index: 999;
	width: 100%;
	max-width: 295px;
	height: auto;
	max-height: 45.2736px;
	}
.site_ttl a{
	display: block;
	width:100%;
	height:auto;
	}
.site_ttl:hover a{
	transform: scale(1.1, 1.1);
	}
.site_ttl img{
	width: 100%;
	max-width:  250px;
	height: auto;
	max-height: 45.2736px;
	}
	@media only screen and ( max-width : 767px ) {
		.site_ttl{
			top: 1rem;
			width: 40%!important;
			max-width: 295px;
			height: auto;
			max-height: 45.2736px;
			}
		}
	@media only screen and ( max-width : 600px ) {
		header#header{
			height: 34rem;
			} 
		}
	@media only screen and ( max-width : 540px ) {
		header#header{
			height: 30rem;
			}
		.site_ttl{
			top: 0.5rem;
			width: 50%!important;
			max-width: 295px;
			height: auto;
			max-height: 45.2736px;
			}
		}
    @media only screen and (max-width: 480px) {}
    @media only screen and (max-width: 320px) {
        }



/*-- スクロール後.fixed付与 --*/
.site_ttl.fixed{
	position:fixed;
	top: 0.75rem;
	}

/*白ロゴ 表示切り替え*/
.site_ttl.fixed .site_ttl___current{
	display: none;
	}

/*グレーロゴ 表示切り替え*/
.site_ttl .site_ttl___fix{
	display: none;
	}
.site_ttl.fixed .site_ttl___fix{
	display: block;
	width: 180%;
	max-width: 260px;
	height: auto;
	max-height: inherit;
	}

	@media only screen and ( max-width : 767px ) {
		.site_ttl.fixed .site_ttl___fix{
			width: 300%;
			}
		}
	@media only screen and ( max-width : 540px ) {}
    @media only screen and (max-width: 480px) {
		.site_ttl.fixed{
			top: 0.8rem;
			}
		}
    @media only screen and (max-width: 360px) {
		.site_ttl.fixed .site_ttl___fix{
			width: 200%;
			}
		.site_ttl.fixed{
			top: 1rem;
			}
		}




header#header .groupsite_logo{
	margin: 0 4% 0.2rem 2rem;
	position: relative;
	z-index: 2;
	}
header#header .groupsite_logo a{
	display: block;
	width: 208px;
	}
header#header .groupsite_logo span{
	width: 100%;
	height: auto;
	}
header#header .groupsite_logo span img{
	width: 100%;
	max-width:  208px;
	height: auto;
	max-height: 26.4502px;
	}

	@media only screen and (max-width: 1100px) {
		header#header .groupsite_logo{
			margin: 0 12% 0.2rem 2rem;
			}
		}
	@media only screen and (max-width: 767px) {
		header#header .groupsite_logo{
			margin: 0 18% 0.2rem 2rem;
			width: 26%;
			}
		}
	@media only screen and (max-width: 640px) {
		header#header .groupsite_logo{
			margin: 0 22% 0.2rem 2rem;
			}
		}
	@media only screen and (max-width: 600px) {
		header#header .groupsite_logo{
			display: none;
			}
		}
	@media only screen and (max-width: 540px) {}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}





/* ---------------------------------------------------------------------------------------------

　   main

--------------------------------------------------------------------------------------------- */

main#main{}

/*----------

共通

----------*/

section{}

.container{
    max-width: 1200px;
    width: 92%;
    margin: 0 auto;
	}

.container2{
    max-width: 900px;
    width: 92%;
    margin: 0 auto;
	}

/* 幅を強制的に全画面*/
.fullwidth{
	width: 100vw!important;
	}

/*改行位置調整*/
.br_span{
	display:inline;
	}
	@media only screen and (max-width: 767px) {}
	@media only screen and (max-width: 540px) {}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}

.txalign_center{
	text-align: center;
	}



/*-----

hoverで右へ動く

-----*/

.hover-slideleft{
	position: relative;
	left: 0;
	transition: .3s;
	}
.hover-slideleft:hover{
	left: 0.5rem;
	}







/*--------------------

　ファーストビュー 動画

--------------------*/

#video_block{
	position: absolute;
	top: 0;
	width: 100%;
	}

#video{
	width: 100%;
	height: auto;
	}

	@media only screen and (max-width: 900px) {}
	@media only screen and (max-width: 767px) {}
	@media only screen and (max-width: 600px) {
		#video_block{
			height: 34rem;
			overflow: hidden;
			}
		#video{
			width: auto;
			height: 100%;
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translateY(-50%) translateX(-50%);
			-webkit- transform: translateY(-50%) translateX(-50%);
			}
		.video{
			text-align: center!important;
			}
		}
	@media only screen and (max-width: 540px) {
		#video_block{
			height: 30rem;
			}
		}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}









/*--------------------

　メッセージ

--------------------*/

.sec_message{
	padding: 5rem 0 10rem 0;
	background: url("../img/sec_message___bg.png") no-repeat;
	background-position: center 105%;;
	background-size: 103%;
	}
.sec_message___wrap{
	position: relative;
	}

.sec_message .tx{}
.sec_message .catch{}
.sec_message .catch p{
	font-size: 2rem;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: bold;
	font-style: 900;
	line-height: 140%;
	}

.sec_message .note{
	margin: 1.2rem 0;
	}
.sec_message .note p{}

.sec_message .ph01{
	position: absolute;
	top: -1rem;
	right: 0;
	width: 35%;
	}
.sec_message .ph01 img{
	width: 100%;
	height: auto;
	}

.sec_message .ph02{
	position: absolute;
	top: 8rem;
	right: 25%;
	width: 25%;
	}
.sec_message .ph02 img{
	width: 100%;
	height: auto;
	}
	@media only screen and (max-width: 1100px) {
		.sec_message .ph02{
			top: 8rem;
			right: 18%;
			}
		}
	@media only screen and (max-width: 900px) {
		.sec_message{
			padding: 3rem 0 7rem 0;
			}
		.sec_message .catch p{
			font-size: 1.4rem;
			line-height: 155%;
			}
		.sec_message .note{
			margin: 1rem 0;
			}
		.sec_message .note p{
			font-size: 0.9rem;
			line-height: 170%;
			}
		/*改行位置調整*/
		.sec_message .note .br_span{
			display: block;
			}
		.sec_message .note br{
			display: none;
			}
		.sec_message .ph01{
			top: -1rem;
			right: 0;
			width: 45%;
			}
		.sec_message .ph02{
			top: 10rem;
			right: 25%;
			width: 30%;
			}
		}
	@media only screen and (max-width: 767px) {
		/*改行位置調整*/
		.sec_message .catch .br_span{
			display: block;
			}
		.sec_message .catch br{
			display: none;
			}
		.sec_message .ph02{
			top: 10rem;
			right: 20%;
			}
		}
	@media only screen and (max-width: 650px) {
		.sec_message{
			padding: 2rem 0 3rem 0;
			}
		.sec_message .catch p{
			font-size: 1.3rem;
			}
		.sec_message .ph01{
			width: 38%;
			}
		.sec_message .ph02{
			top: 7rem;
			right: 17%;
			width: 30%;
			}
		.sec_message .note p{
			font-size: 0.85rem;
			}
		}
	@media only screen and (max-width: 540px) {
		.sec_message{
			padding: 2rem 0 3rem 0;
			}
		.sec_message .catch p{
			font-size: 1rem;
			}
		.sec_message .ph01{
			top: -0.5rem;
			right: 6%;
			width: 38%;
			}
		.sec_message .ph02{
			top: 4.5rem;
			right: 0;
			width: 30%;
			}
		.sec_message .note{
			margin: 0.5rem 0;
			}
		.sec_message .note p{
			font-size: 0.75rem;
			}
		}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}









/*--------------------

　新着情報

--------------------*/

/*全体*/
.sec_news{
	padding: 5.5rem 0 4rem 0;
	background: #333 url('../img/bg___blk.jpg') no-repeat top center;
	background-size: cover;
	}

.sec_heading{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 3.5rem;
	}
.sec_heading .ttl{
	color: #fff;
	font-size: 4rem;
	letter-spacing: 0.2rem;
	}

.sec_news___wrap{
	display: flex;
	justify-content:space-between;
	flex-wrap: wrap;
	}

.sec_news .post{
	width: 31%;
	}
.sec_news .post:nth-child(4){
	display: none;
	}
.sec_news .post a{
	color: #ffffff;
	}

.sec_news .post .ph{
	box-shadow: 0px 0px 15px -5px #000000;
	overflow: hidden;
	}
.sec_news .post .ph img{
	width: 100%;
	border-radius: 0.2rem;
	height: 240px;
	object-fit: cover;
	}

.sec_news .post .tx{}
.sec_news .post .cat{
	display: inline-block;
	background: #777;
	border-radius: 1rem;
	line-height: 100%;
	padding: 0.5rem 1.5rem;
	margin: 1.5rem 0 1rem 0;
	}
.sec_news .post .cat span{
	font-size: 0.75rem;
	}
.sec_news .post .ttl{
	line-height: 170%;
	}
.sec_news .post .date{
	font-size: 0.85rem;
	margin-top: 0.2rem;
	}

	@media only screen and (max-width: 900px) {
		/*全体*/
		.sec_news{
			padding: 2.5rem 0 2rem 0;
			}
		.sec_heading{
			margin-bottom: 2rem;
			}
		.sec_news .post .ph img{
			height: 220px;
			}
		.sec_heading .ttl{
			font-size: 3rem;
			}
		.sec_news .post .cat{
			border-radius: 1rem;
			padding: 0.2rem 0.8rem;
			margin: 0.85rem 0 0.5rem 0;
			}
		.sec_news .post .cat span{
			font-size: 0.7rem;
			}
		.sec_news .post .ttl{
			font-size: 0.85rem;
			}
		.sec_news .post .date{
			font-size: 0.8rem;
			}
		}
	@media only screen and (max-width: 767px) {
		/*全体*/
		.sec_news{
			background-size: contain;
			padding: 2.5rem 0 0.5rem 0;
			}
		.sec_heading .ttl{
			font-size: 2.4rem;
			}
		.sec_news .post{
			width: 48%;
			margin-bottom: 1.4rem;
			}
		.sec_news .post:nth-child(4){
			display: block;
			}
		.sec_news .post .ph img{
			height: 180px;
			}
		}
	@media only screen and (max-width: 540px) {
		/*全体*/
		.sec_news{
			background-size: contain;
			padding: 2rem 0 0.5rem 0;
			}
		.sec_heading .ttl{
			font-size: 1.8rem;
			}
		.sec_news .post .ph img{
			height: 160px;
			}
		.sec_news .post .cat{
			padding: 0.1rem 0.7rem;
			margin: 0.75rem 0 0.5rem 0;
			}
		.sec_news .post .cat span{
			font-size: 0.6rem;
			}
		.sec_news .post .ttl{
			font-size: 0.7rem;
			}
		}
	@media only screen and (max-width: 480px) {
		.sec_news .post .ph img{
			height: 130px;
			}
		}
	@media only screen and (max-width: 360px) {
		.sec_news .post .ph img{
			height: 110px;
			}
		}
	@media only screen and (max-width: 260px) {}











/*--------------------

　運輸事業・倉庫事業

--------------------*/

/*全体*/
.sec_service{
	padding: 6rem 0;
	}
.sec_service___wrap{
	position: relative;
	margin-bottom: 0.2rem;
	overflow: hidden;
	}
.sec_service___wrap:last-child{
	margin-bottom: 0;
	}

.sec_service___wrap.transport{}
.sec_service___wrap.warehouse{
	text-align: right;
	}
.sec_service___wrap.warehouse .item{
	text-align: left;
	}

.sec_service___wrap a.link{
	display: block;
	padding: 4rem 4rem 3rem 4rem;
	color: #fff;
	}

.sec_service___wrap .sec_service___bg{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	transition:0.4s all;
	z-index: 1;
	}
.sec_service___wrap .sec_service___bg:hover{
	transform:scale(1.1,1.1);
	}
.sec_service___wrap.transport .sec_service___bg{
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0)),url("../img/transport___bg00.jpg") no-repeat center center;
	background-size: cover;
	}
.sec_service___wrap.warehouse .sec_service___bg{
	background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.8)),url("../img/warehouse___bg00.jpg") no-repeat center center;
	background-size: cover;
	}

.sec_service .item{
	position: relative;
	display: inline-block;
	z-index: 2;
	}

.sec_service .heading{}
.sec_service .heading .en{
	font-size: 4rem;
	letter-spacing: 0.2rem;
	line-height: 100%;
	}
.sec_service .heading .jp{
	font-size: 1.4rem;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: bold;
	font-style: 900;
	margin-bottom: 2rem;
	}

.sec_service .catch{}
.sec_service .catch p{
	line-height: 160%;
	}

.sec_service .btn_wrap___left{
	margin-top: 1.5rem;
	}
	@media only screen and (max-width: 900px) {
		/*全体*/
		.sec_service{
			padding: 3rem 0;
			}
		.sec_service___wrap a.link{
			padding: 3rem 2.5rem 3.5rem 2.5rem;
			}
		.sec_service .heading .en{
			font-size: 3rem;
			}
		.sec_service .heading .jp{
			font-size: 1.3rem;
			margin-bottom: 1.5rem;
			}
		}
	@media only screen and (max-width: 767px) {
		.sec_service___wrap a.link{
			padding: 2rem 2.5rem 2rem 2.5rem;
			}
		.sec_service .heading .en{
			font-size: 2.5rem;
			}
		.sec_service .heading .jp{
			font-size: 1.1rem;
			margin-bottom: 1rem;
			}
		.sec_service .catch p{
			font-size: 0.85rem;
			}
		}
	@media only screen and (max-width: 540px) {
		.sec_service___wrap.warehouse{
			text-align: left;
			}
		.sec_service___wrap.warehouse .sec_service___bg{
			background: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0)),url("../img/warehouse___bg00.jpg") no-repeat center center;
			background-size: cover;
			}
		.sec_service___wrap a.link{
			padding: 1.5rem 1.5rem 1rem 1.5rem;
			}
		.sec_service .heading .en{
			font-size: 1.8rem;
			letter-spacing: 0.1rem;
			}
		.sec_service .heading .jp{
			font-size: 0.9rem;
			margin-bottom: 0.5rem;
			}
		.sec_service .catch p{
			font-size: 0.75rem;
			}
		.sec_service .btn_wrap___left{
			margin-top: 0.5rem;
			}
		}
	@media only screen and (max-width: 480px) {
		.sec_service___wrap a.link{
			padding: 1.2rem 1.2rem 1rem 1.2rem;
			}
		.sec_service .heading .en{
			font-size: 1.6rem;
			}
		.sec_service .heading .jp{
			font-size: 0.85rem;
			}
		.sec_service .catch p{
			font-size: 0.7rem;
			}
		}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}












/*--------------------

　その他サービスのご案内

--------------------*/

.sec_slide{
	background: #282828 url("../img/sec_slide___bg.png") no-repeat top center;
	background-size: contain;
	padding: 5rem 0 4.5rem 0;
	}

.sec_slide .heading{
	padding-bottom: 4rem;
	}
.sec_slide .heading .ttl{
	color: #fff;
	font-size: 1.4rem;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: bold;
	font-style: 900;
	}

.sec_slide .sec_slide___wrap{}

.sec_slide .item{
	width: 30%;
	margin: 0 1rem;
	box-shadow: 0px 0px 15px -5px #000000;
	}
.sec_slide .item.oogata{
	background: url("../img/top_service___oogata00.jpg") no-repeat center center;
	background-size: cover;
	}
.sec_slide .item.seimitsu{
	background: url("../img/top_service___seimitsu00.jpg") no-repeat center center;
	background-size: cover;
	}
.sec_slide .item.kojyo{
	background: url("../img/top_service___kojo00.jpg") no-repeat center center;
	background-size: cover;
	}

.sec_slide .item a{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5.5rem 0;
	}
/* マスク */
.sec_slide .item a::before {
	background: rgba(0, 0, 0, .3);
	bottom: 0;
	content: '';
	height: auto;
	left: 0;
	opacity: 1;
	position: absolute;
	right: 0;
	top: 0;
	transition: opacity .6s ease;
	width: 100%;
	z-index: 1;
	}
.sec_slide .item a:hover::before {
	opacity: 0;
	}

.sec_slide .item .ttl{
	color: #fff;
	font-size: 1.6rem;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: bold;
	font-style: 900;
	z-index: 2;
	}

	@media only screen and (max-width: 900px) {
		.sec_slide{
			background: #282828 url("../img/sec_slide___bg.png") no-repeat top center;
			background-size: contain;
			padding: 3.5rem 0 2.5rem 0;
			}
		.sec_slide .heading{
			padding-bottom: 3rem;
			}
		.sec_slide .heading .ttl{
			font-size: 1.3rem;
			}
		.sec_slide .item a{
			padding: 4rem 0;
			}
		.sec_slide .item .ttl{
			font-size: 1.2rem;
			}
		}
	@media only screen and (max-width: 767px) {
		.sec_slide{
			background: #282828 url("../img/sec_slide___bg.png") no-repeat top center;
			background-size: contain;
			padding: 2.5rem 0 2rem 0;
			}
		.sec_slide .heading{
			padding-bottom: 2.5rem;
			}
		.sec_slide .heading .ttl{
			font-size: 1.2rem;
			}
		.sec_slide .item a{
			padding: 3rem 0;
			}
		.sec_slide .item .ttl{
			font-size: 1rem;
			}
		}
	@media only screen and (max-width: 600px) {
		.sec_slide{
			padding: 1.8rem 0 1.5rem 0;
			}
		.sec_slide .heading{
			padding-bottom: 1rem;
			}
		.sec_slide .heading .ttl{
			font-size: 1.1rem;
			}
		.sec_slide .item a{
			padding: 2.2rem 0;
			}
		.sec_slide .item .ttl{
			font-size: 0.9rem;
			}
		}
	@media only screen and (max-width: 540px) {}
	@media only screen and (max-width: 480px) {
		.sec_slide .heading .ttl{
			font-size: 0.9rem;
			}
		.sec_slide .item .ttl{
			font-size: 0.85rem;
			}
		}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}















/*--------------------

　事業所一覧

--------------------*/

/*全体*/
.sec_bnr{
	margin: 6rem 0 0 0;
	}
.sec_bnr___wrap{
	position: relative;
	overflow: hidden;
	}

.sec_bnr___wrap a.link{
	display: block;
	padding: 4rem;
	}

.sec_bnr___wrap .sec_bnr___bg{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0)),url("../img/sec_bnr___bg.jpg") no-repeat center center;
	background-size: cover;
	transition:0.4s all;
	z-index: 1;
	}
.sec_bnr___wrap .sec_bnr___bg:hover{
	transform:scale(1.1,1.1);
	}

.sec_bnr___wrap .item{
	position: relative;
	display: inline-block;
	z-index: 2;
	}

.sec_bnr___wrap .heading{
	color: #fff;
	}
.sec_bnr___wrap .ttl{
	font-size: 1.4rem;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: bold;
	font-style: 900;
	}
.sec_bnr___wrap .tx{
	margin: 1.1rem 0 1.5rem 0;
	}

	@media only screen and (max-width: 900px) {
		/*全体*/
		.sec_bnr{
			margin: 3rem 0 0 0;
			}
		}
	@media only screen and (max-width: 767px) {
		/*全体*/
		.sec_bnr{
			margin: 2.5rem 0 0 0;
			}
		.sec_bnr___wrap a.link{
			padding: 2rem 2.5rem;
			}
		.sec_bnr___wrap .ttl{
			font-size: 1.4rem;
			}
		.sec_bnr___wrap .tx{
			font-size: 0.85rem;
			margin: 1rem 0 1rem 0;
			line-height: 160%;
			}
		}
	@media only screen and (max-width: 540px) {
		/*全体*/
		.sec_bnr{
			margin: 1rem 0 0 0;
			}
		.sec_bnr___wrap a.link{
			padding: 1.5rem 1.5rem 1rem 1.5rem;
			}
		.sec_bnr___wrap .ttl{
			font-size: 1.1rem;
			}
		.sec_bnr___wrap .tx{
			font-size: 0.75rem;
			margin: 0.5rem 0 0.75rem 0;
			}
		}
	@media only screen and (max-width: 480px) {
		.sec_bnr___wrap a.link{
			padding: 1.2rem 1.2rem 1rem 1.2rem;
			}
		.sec_bnr___wrap .ttl{
			font-size: 1rem;
			}
		.sec_bnr___wrap .tx{
			font-size: 0.7rem;
			}
		}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}












/*--------------------

　採用情報・お問合せ

--------------------*/

.sec_contact{
	margin: 5rem auto;
	}
.sec_contact___wrap{
	display: flex;
	justify-content: space-between;
	}

.sec_contact___item{
	width: 50%;
	text-align: center;
	}
.sec_contact___item:first-child{
	border-right: solid 1px #aaa;
	}
.sec_contact___item > a{
	display: block;
	padding: 2rem 0;
	}

.sec_contact___item .ttl{}
.sec_contact___item .ttl,
.sec_contact___item .ttl span{
	display: block;
	}

.sec_contact___item .ttl .jp{
	font-size: 1.2rem;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: bold;
	font-style: 900;
	}
.sec_contact___item .ttl .en{
	display: inline-block;
	font-size: 3rem;
	letter-spacing: 0.3rem;
	margin:  0.5rem auto 0rem auto;
	}

.sec_contact___item > a .ttl .en{
    padding-bottom: 1rem;
    background-image: linear-gradient(#333, #333);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 0 1px;
    transition: background-size 0.3s;
	}
.sec_contact___item > a:hover .ttl .en{
    background-position: bottom left;
    background-size: 100% 1px;
	}
	@media only screen and (max-width: 900px) {}
	@media only screen and (max-width: 767px) {
		.sec_contact{
			margin: 1.5rem auto;
			}
		.sec_contact___item > a{
			padding: 1rem 0 2rem 0;
			}

		.sec_contact___item .ttl .en{
			font-size: 2.2rem;
			margin:  0.2rem auto 0rem auto;
			}
		.sec_contact___item > a .ttl .en{
			padding-bottom: 0.3rem;
			}
		.sec_contact___item .ttl .jp{
			font-size: 1.1rem;
			}
		.sec_contact___item .btn_wrap{
			position: relative;
			top: -1.5rem;
			}
		.sec_contact___item .btntransform{
			margin-top: 0;
			}
		}
	@media only screen and (max-width: 540px) {
		.sec_contact___item .ttl .jp{
			font-size: 0.9rem;
			}
		.sec_contact___item .ttl .en{
			font-size: 2rem;
			letter-spacing: 0.1rem;
			}
		}
	@media only screen and (max-width: 480px) {
		.sec_contact{
			margin: 1rem auto;
			}
		.sec_contact___item > a{
			padding: 1rem 0;
			}
		.sec_contact___item .ttl .en{
			font-size: 1.6rem;
			}
		.sec_contact___item .btntransform{
			margin-top: 1rem;
			}
		}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}




















/*--------------------

　コンセプト

--------------------*/

.sec_concept{
	background: #a9c9d8 url("../img/sec_concept___bg00.jpg") no-repeat top center;
	background-size: cover;
	background-attachment: fixed;
	}
.sec_concept___wrap{
	position: relative;
	height: 30rem;
	}

.sec_concept .tx{
	 position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 80%;
  height: 5rem;
	text-align: center;
	}
.sec_concept .tx span{
	color: #ffffff;
	font-size: 1.8rem;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: bold;
	font-style: 900;
	line-height: 180%;
	letter-spacing: 0.2rem;
	}
	@media only screen and (max-width: 900px) {
		.sec_concept{
			background: #a9c9d8 url("../img/sec_concept___bg00.jpg") no-repeat center center;
			background-size: cover;
			background-attachment:inherit;
			}
		.sec_concept___wrap{
			height: 22rem;
			}
		.sec_concept .tx span{
			font-size: 1.6rem;
			text-shadow: 0px 0px 5px rgba(10, 51, 85, 0.4),0px 0px 10px rgba(10, 51, 85, 0.8),0px 0px 15px rgba(10, 51, 85, 1);
			}
		}
	@media only screen and (max-width: 767px) {
		.sec_concept .tx span{
			font-size: 1.3rem;
			text-shadow: 0px 0px 5px rgba(10, 51, 85, 0.4),0px 0px 10px rgba(10, 51, 85, 0.8),0px 0px 15px rgba(10, 51, 85, 1);
			}
		}
	@media only screen and (max-width: 540px) {
		.sec_concept .tx{
			position: absolute;
			width: 100%;
			height: 3.5rem;
			text-align: center;
			}
		.sec_concept .tx span{
			font-size: 1.2rem;
			text-shadow: 0px 0px 5px rgba(10, 51, 85, 0.4),0px 0px 10px rgba(10, 51, 85, 0.8),0px 0px 15px rgba(10, 51, 85, 1);
			line-height: 200%;
			letter-spacing: 0.1rem;
			}
		}
	@media only screen and (max-width: 480px) {
		.sec_concept___wrap{
			height: 18rem;
			}
		.sec_concept .tx{
			height: 2rem;
			}
		.sec_concept .tx span{
			font-size: 1rem;
			line-height: 180%;
			}
		}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}



















/* ---------------------------------------------------------------------------------------------

　   footer

--------------------------------------------------------------------------------------------- */

footer#footer{
	background: #000000;
	color: #fff;
	}
	@media only screen and (max-width: 1020px) {}
	@media only screen and (max-width: 900px) {}
	@media only screen and (max-width: 767px) {}
	@media only screen and (max-width: 600px) {}
	@media only screen and (max-width: 480px) {}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}


/*----------

　footer 上段

----------*/

.footer_upper{
	padding: 5rem 0;
	background: #333 url('../img/bg___blk.jpg') no-repeat top center;
	background-size: cover;
	}

.footer_upper___wrap{
	display: flex;
	justify-content:space-between;
	}

/*社名・認定取得*/
.footer_upper___right{}


/*社名*/
.footer_ttl{}
.footer_ttl a{
	font-size: 1.8rem;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: bold;
	font-style: 900;
	}


/*認定許可*/
.footer_license{
	margin-top: 1.5rem;
	}

.footer_license .note{}

.footer_license ul{
	background: #ffffff;
	border-radius: 3px;
	padding: 0.75rem;
	display: flex;
	gap:0.75rem;
	}
.footer_license li{}
.footer_license a{
	display: block;
	cursor: pointer;
	}
.footer_license img{
	width: auto;
	height: 100%;
	max-height: 100px;
	transition: .3s;
	}
.footer_license a:hover img{
	opacity: .7;
	}

/*メニュー*/
.footer_menu{
	display: flex;
	justify-content: flex-start;
	align-items:flex-end;
	column-gap: 2rem;
	}

.footer_menu > ul{}

.footer_menu > ul > li{
	line-height: 180%;
	}

.footer_menu > ul > li a{
	font-size: 0.75rem;
	transition: .3s;
	}
.footer_menu > ul > li a:hover{
	opacity: .5;
	}

.footer_menu > ul > li a{
    padding-bottom: 0.1rem;
    background-image: linear-gradient(#fff, #fff);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 0 1px;
    transition: background-size 0.3s;
	}
.footer_menu > ul > li a:hover{
    background-position: bottom left;
    background-size: 100% 1px;
	}

.footer_menu > ul > li > ul > li a{
	font-size: 0.75rem;
	}

.footer_menu > ul > li > ul > li a::before{
	content: '-';
	margin-right: 0.3rem;
	}

	@media only screen and (max-width: 1100px) {
		.footer_upper{
			padding: 3rem 0;
			}
		}
	@media only screen and (max-width: 900px) {
		.footer_upper{
			padding: 1.5rem 0;
			}
		.footer_license img{
			max-height: 100px;
			}
		.footer_menu{
			display: none;
			}
		/*社名*/
		.footer_ttl a{
			font-size: 1.4rem;
			}
		}
	@media only screen and (max-width: 600px) {
		.footer_license{
			margin-top: 0.5rem;
			margin-bottom: 0.5rem;
			}
		.footer_license .note{
			font-size: 0.8rem;
			}
		.footer_license > ul{
			padding: 0.5rem;
			gap:0.5rem;
			}
		.footer_license img{
			max-height: 70px;
			}
		}
	@media only screen and (max-width: 540px) {
		.footer_upper{
			padding: 2rem 0 1.5rem 0;
			}
		.footer_license{
			margin-top: 0.5rem;
			margin-bottom: 0.5rem;
			}
		.footer_license .note{
			font-size: 0.75rem;
			}
		/*社名*/
		.footer_ttl a{
			font-size: 1.2rem;
			}
		}
	@media only screen and (max-width: 480px) {
		.footer_upper{
			padding: 1rem 0 0.5rem 0;
			}
		/*社名*/
		.footer_ttl a{
			font-size: 1rem;
			}
		}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}






/*----------

　footer 下段

----------*/

.footer_lower{
	padding: 1.5rem 0;
	}
.footer_lower___wrap{
	display: flex;
	justify-content:space-between;
	align-content: center;
	}

/*社名 左*/
.footer_lower___left{
	display: block;
	}
.footer_lower___left .sitelogo{
	width: 100%;
	height: auto;
	}
.footer_lower___left .sitelogo img{
	width: 100%;
	max-width: 250px;
	height: auto;
	max-height: 41.6519px;
	}

/*社名 右*/
.footer_lower___right{
	display: block;
	}
.footer_lower___right .groupsite_logo{
	width: 100%;
	height: auto;
	}
.footer_lower___right .groupsite_logo img{
	width: 100%;
	max-width: 200px;
	height: auto;
	max-height: 25.4328px;
	}


/*コピーライト*/
.cpright{
	font-size: 0.7rem;
	letter-spacing: 1px;
	line-height: 100%;
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	margin-top: 1rem;
	}
.cpright small{}


	@media only screen and (max-width: 767px) {
		.footer_lower{
			padding: 1.5rem 0 1rem 0;
			}
		.footer_lower___wrap{
			display: block;
			justify-content:flex-start;
			align-content: center;
			}
		/*社名 右*/
		.footer_lower___right{
			margin: 0.5rem 0 1.5rem 0;
			}
		.cpright{
			font-size: 0.6rem;
			}
		}
	@media only screen and (max-width: 540px) {}
	@media only screen and (max-width: 480px) {
		.footer_lower{
			padding: 1rem 0 1rem 0;
			}
		.footer_lower___left .sitelogo{
			width: 60%;
			}
		.footer_lower___right .groupsite_logo{
			width: 40%;
			}
		.cpright{
			font-size: 0.55rem;
			letter-spacing: 0px;
			margin-top: 0;
			}
		}
	@media only screen and (max-width: 360px) {}
	@media only screen and (max-width: 260px) {}




/*----------

　画像hover時zoomするアニメーション

----------*/

/*.zoomIn{
	overflow: hidden;
	}
.zoomIn img{
	transition:0.3s all;
	}
.zoomIn img:hover{
	transform:scale(1.1,1.1);
	}*/


.zoomIn{
	overflow: hidden;
	}
.zoomIn > *{
	transition:0.4s all;
	}
.zoomIn > *:hover{
	transform:scale(1.1,1.1);
	}





/*----------

　左側から表示されるアニメーション

----------*/

.anime_wrap.curtain{
    position: relative;
    overflow: hidden;
	}

.curtain::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    z-index: 2;
    transition: .5s;
	color:#0D1F62;
	}
.curtain.show::before{
    transform: translateX(100%);
	}
.curtain img{
    opacity: 0;
    transition: .5s;
	}
.curtain.show img{
    opacity: 1;
	}







/*----------

　1文字ずつ表示されるアニメーション

----------*/

@keyframes showTextFromBottom{
	  0%{
		transform: translateY( 100% );
		}
	  50%{
		transform: translateY( -20% );
		}
	  100%{
		transform: translateY( 0px );
		}
	}

.anime-up.displayed span{
	animation: showText 1s backwards;
	display: inline-block;
	}
.anime-up.displayed > span{
	overflow: hidden;
	}
.anime-up.displayed > span > span{
	animation: showTextFromBottom 0.5s backwards;
	}










