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



section .mission,
section .about,
section .service,
section .recruit,
section .message,
section .contact_link{
	overflow: hidden;
}


/*------------------------------------------------------------------------
	PC
------------------------------------------------------------------------*/



@media screen and (min-width:768px){


	p{
		font-size: 1.4rem;
		letter-spacing: 1.5px;
	}


/*--------------------------------------
	header
--------------------------------------*/
	header{
		background-color: rgba(255,255,255,0);
		box-shadow: none;
	}

	/* js */
	body.scroll header{
		background-color: rgba(255,255,255,1);
		box-shadow: 0 0 30px rgba(0,0,0,0.1);
	}


	header h1.logo{
		display: block;
	}

	header div.logo{
		display: none;
	}

	header button.menu_btn{
		background-color: #fff;
	}

	header button.menu_btn div::before,
	header button.menu_btn div::after{
		background-color: #333;
	}

	body.scroll header button.menu_btn{
		background-color: #2ABCA2;
	}

	body.scroll header button.menu_btn div::before,
	body.scroll header button.menu_btn div::after{
		background-color: #fff;
	}





/*--------------------------------------
	メイン画像
--------------------------------------*/

	.main_img{
		position: relative;
	}
/*	.main_img li{
		height: 100vh;
		overflow: hidden;
	}
*/
	.main_img  video{
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 10s ease 0s;
	}

/*	.main_img .slick-current img.zoom{
		transform: scale(1.1);
	}
*/
	.main_img .left{
		position: absolute;
		left: 15px;
		bottom: 0;
	}

	.main_img .left .img_wrap{
		margin-bottom: 15px;
	}

	.main_img .left .img_wrap,
	.main_img .left .img_wrap img{
		width: 22px;
		height: auto;
	}

  .main_img .left .scroll_anime p{
		font-size: 0.9rem;
		color: #fff;
		writing-mode: vertical-rl;
		margin: 0 auto 15px;
	}

	.main_img .left .scroll_anime .bar{
		background-color: #707070;
		width: 1px;
		height: 100px;
		position: relative;
		margin: 0 auto 10px;
	}

	.main_img .left .scroll_anime .bar span{
		display: inline-block;
		background-color: #fff;
		width: 9px;
		height: 9px;
		border-radius: 50%;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		animation: down 1.8s linear 0s infinite both; /*name duration timing-function delay iteration-count direction animation-fill-mode*/
	}

	.main_img .text{
		position: absolute;
		top: 58%;
		left: 7%;
	}

	.main_img .text p{
		font-size: 4rem;
		font-weight: 700;
		color: #fff;
	}

	.main_img .text p.en{
		font-size: 1.4rem;
	}


/*---------------------
ビデオボタン
---------------------*/
  .play_bt{
  position: absolute;
  bottom: 53px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  border: 1px solid #FFF;
}
.play_bt {
    position: absolute;
    left: 50%;
    bottom: 60px;
    transform: translateX(-50%);
    color: #FFF;
    border: 1px solid #FFF;
}
.play_bt a {
    display: block;
    color: #FFF;
    padding: 10px 15px;
}


/*--------------------------------------
	NEWS
--------------------------------------*/
	.top_news{
		display: flex;
		background-color: #F2F5F9;
		width: 530px;
		height: 140px;
		position: relative;
		padding: 20px 0 20px 40px;
		margin: 100px 50px 120px auto;
	}

	.top_news h2{
		font-size: 1.2rem;
		margin-right: 40px;
	}

	.top_news ul{
		overflow-y: scroll;
		padding-right: 40px;
	}

	.top_news ul li{
		margin-bottom: 10px;
	}

	.top_news ul li *{
		font-size: 1.4rem;
	}

	.top_news ul li a{
		display: inline-block;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		width: 300px;
		position: relative;
		padding-right: 20px;
	}

	.top_news ul li a::after{
		content: "";
		display: inline-block;
		width: 8px;
		height: 8px;
		border-top: 1px solid #333;
		border-right: 1px solid #333;
		transform: rotate(45deg) translateY(-50%);
		position: absolute;
		top: 50%;
		right: 10px;
	}

	.top_news ul li span::before{
		content: "|";
		display: inline-block;
		padding-right: 0.5em;
		margin-left: 0.5em;
	}





/*--------------------------------------
	Mission
--------------------------------------*/
	section.mission{
		margin-bottom: 70px;
	}

	section.mission .inner3{
		position: relative;
	}

	section.mission .img_wrap .title_wrap{
		font-size: 2rem;
		width: 100px;
		position: absolute;
		top: 60px;
		right: 70px;
		overflow: hidden;
    color: #fff;
		letter-spacing: 3px;
	}

	section.mission .img_wrap .title_wrap h2{
		transform: translateX(-100%);
		transition: transform 0.5s ease 0s;
	}

	/* js */
	section.mission.show .img_wrap .title_wrap h2{
		transform: translateX(0);
	}

	section.mission .img_wrap{
		position: relative;
		margin: 0 auto 20px;
	}

	section.mission .img_wrap,
	section.mission .img_wrap img{
		width: 866px;
		height: auto;
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .2);
	}

	section.mission svg{
		width: 773px;
		height: 466px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
	}

	section.mission svg rect{
		fill: none;
    stroke: #fff;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke-dashoffset: 2480px;
    stroke-dasharray: 2480px;
	}

	/* js */
	section.mission.show svg rect{
		animation: rect_move 1.5s ease-in-out 0s 1 both; /*name duration timing-function delay iteration-count direction animation-fill-mode*/
	}

	section.mission .inner3 p{
		font-size: 3.4rem;
		writing-mode: vertical-rl;
	}

	section.mission .inner3 p.right.l_slide{
		position: absolute;
		top: 0;
		right: 0;
		letter-spacing: 0.3em;
	}

	section.mission .inner3 p.right.l_slide span{
		display: block;
	}

	section.mission .inner3 p.right.l_slide span:last-of-type{
		margin-top: 47px;
	}

	section.mission .inner3 p.left.l_slide{
		position: absolute;
		bottom: 0;
		left: 0;
		letter-spacing: 0.3em;
		overflow: inherit;
	}

	section.mission .inner3 p.left.l_slide span{
		display: block;
	}

	section.mission .inner3 p.left.l_slide span:last-of-type{
		text-align: end;
		bottom: -46px;
	}

	section.mission .inner3 p.l_slide{
		overflow: hidden;
	}

	section.mission .inner3 p.l_slide span{
		position: relative;
		left: -3em;
		transition: left 1s ease 0.3s;
	}

	section.mission .inner3 p.left.l_slide span{
		transition: left 1s ease 0.7s;
	}

	/* js */
	section.mission.show .inner3 p.l_slide span{
		left: 0;
	}

	section.mission .inner>p{
		font-size: 1.2rem;
		text-align: right;
		color: #777777;
    	letter-spacing: 2px;
	}




/*--------------------------------------
	私たちについて
--------------------------------------*/
	section.about{
		position: relative;
	}

	section.about::before{
		content: "";
		display: block;
		background-color: #F2F5F9;
		min-width: 1340px;
		width: 93vw;
		height: 310px;
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: -1;
	}

	section.about .flex{
		display: flex;
		justify-content: space-around;
	}

	section.about .text{
		padding-top: 55px;
		margin-bottom: 70px;
	}

	section.about .text p{
		width: 484px;
		margin-bottom: 60px;
		letter-spacing: 1px;
	}

	section.about .text .btn{
		margin-left: auto;
		margin-right: -94px;
	}

	section.about .img_wrap,
	section.about .img_wrap img{
		width: 802px;
		height: auto;
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .2);
	}



/*--------------------------------------
	業務内容
--------------------------------------*/
	section.service{
		position: relative;
		padding: 55px 0;
	}

	section.service::before{
		content: "";
		display: block;
		background-color: #F2F5F9;
		min-width: 1340px;
		width: 93vw;
		height: 100%;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		z-index: -1;
	}

	.s_title{
		width: 900px;
		margin: auto;
	}

	.s_title .en{
		font-size: 1.4rem;
		font-weight: 700;
		padding-bottom: 10px;
		letter-spacing: 2px;
	}

	.s_title h2{
		font-size: 3.4rem;
		font-weight: 700;
		position: relative;
		padding-top: 5px;
		letter-spacing: 2.5px;
	}

	.s_title h2::before{
		content: "";
		display: block;
		background-color: #707070;
		width: 100%;
		height: 1px;
		opacity: 0.4;
		position: absolute;
		top: 0;
		left: 0;
	}

	.s_title h2::after{
		content: "";
		display: block;
		background-color: #707070;
		width: 704px;
		height: 1px;
		position: absolute;
		top: 0;
		left: 0;
	}

	.s_title+p{
		width: 660px;
		transform: translate(65%,-30px);
		letter-spacing: 1.5px;
	}

	/* slider pro */
	section.service #service_slide{
		margin-bottom: 30px;
	}

	section.service #service_slide ul{
		margin-left: -16%;
	}

	section.service #service_slide ul li::before{
		content: "";
		display: block;
/*		background-color: rgba(0,0,0,0.4);
*/		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		z-index: 1;
	}
  section.service #service_slide ul{
    width: 100%;
    height: 100%;
}
  section.service #service_slide ul li{
    display: block;
    transition-duration: 0.5s;
}
  section.service #service_slide ul li:hover{
    transform: scale(0.9);
    transition-duration: 0.5s;
  }
	section.service #service_slide .img_wrap{
		position: relative;
	}

	section.service #service_slide img{
		width: 100%;
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .3);
	}


	section.service #service_slide p{
		font-size: 1.6rem;
		font-weight: 700;
		color: #fff;
		position: absolute;
		left: 17px;
		bottom: 23px;
		z-index: 1;
	}

	section.service .sp-horizontal .sp-arrows{
		width: 100vw;
	}

	section.service .sp-horizontal .sp-next-arrow{
		right: 5%;
	}

	section.service .sp-horizontal .sp-previous-arrow{
		left: 5%;
	}

	section.service li.slide_item img{
		width: 418px;
		box-shadow: 0px -20px 25px 0px rgba(0, 0, 0, .2);
	}

	section.service .btn{
		padding-top: 20px;
		margin: auto;
	}



/*--------------------------------------
	採用情報
--------------------------------------*/
	section.recruit{
		position: relative;
		padding: 605px 0 0;
		margin-bottom: 100px;
	}

	section.recruit::before{
		content: "";
		display: block;
		background-color: #F2F5F9;
		min-width: 1340px;
		width: 93vw;
		height: 170px;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -2;
	}

	section.recruit::after{
		content:'';
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .2);
		background-image: url(../../../../wp-content/uploads/2025/05/添乗指導-6.png);
		background-size:cover;
    background-repeat: no-repeat;
		display: block;
		max-width: 57vw;
    width: 100%;
    margin-right: 20vw;
    max-height: 56vh;
    height: 100%;
    position: absolute;
		right: 0;
		bottom: 0;
		z-index: -1;
	}

	section.recruit .inner{
		position: relative;
	}

	span.bg_text{
		font-size: 8rem;
		font-weight: 700;
		font-family: 'Raleway', sans-serif;
		color: #fff;
		opacity: 0.4;
		position: absolute;
		top: -130px;
		right: 20px;
		transition: transform 1.3s ease-out 0s;
	}

	section.recruit .s_title{
		margin: 0;
	}

	section.recruit .s_title h2::before{
		background-color: #fff;
	}

	section.recruit .s_title h2::after{
		background-color: #fff;
	}

	section.recruit .s_title,
	section.recruit .s_title+p{
		position: relative;
		left: 27%;
	}

	section.recruit .s_title *,
	section.recruit .s_title+p{
		color: #fff;
		text-shadow: 2px 1px 1px #101010;
	}

	section.recruit .s_title+p{
		left: 13%;
	}

	section.recruit #recruit_slide{
		position: relative;
		bottom: -70px;
	}

	section.recruit #recruit_slide img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}





/*--------------------------------------
	宣言
--------------------------------------*/
	section.message{
		padding-bottom: 20px;
	}

	section.message .inner{
		position: relative;
		padding-bottom: 40px;
	}

	section.message .cooperative{
		margin-top: 100px;
	}

	section.message span.bg_text{
		color: #F2F5F9;
		top: -110px;
		left: 26%;
		right: auto;
		letter-spacing: 10px;
	}

	section.message .title{
		margin-bottom: 10px;
		position: relative;
		left: 27%;
		letter-spacing: 1.5px;
	}

	section.message p{
		position: relative;
		left: 27%;
		letter-spacing: 1.5px;
	}

	#message_slide_container {
		padding-bottom: 50px;
	}

	section.message .space{
		padding: 30px 0px;
	}

	.slick-track {
		display: flex;
		align-items: center;
	}

	section.message li.slide_item img{
		width: 100%;
    	box-shadow: 0px -20px 25px 0px rgba(0, 0, 0, .2);
	}

	section.message li.slide_item a{
		max-width: 232px;
	}

	section.message li.slide_item img{
		width: 418px;
		margin-top: 5px;
		box-shadow: 0 0 5px rgba(0,0,0,0.1);
	}

	section.message li.slide_item .logo{
    	box-shadow: none;
		max-width: 190px;
	}

	section.message li.slide_item .img_wrap{
		box-shadow: none;
		max-width: 232px;
		margin: 0px 20px;
		width: 100%;
	}

	section.message .btn{
		padding-top: 10px;
		margin: auto;
	}





/*--------------------------------------
	お知らせ
--------------------------------------*/
	section.news_list{
		position: relative;
		padding: 80px 0 180px;
	}

	section.news_list::before{
		content: "";
		display: block;
		background-color: #fff;
		min-width: 1340px;
		width: 93vw;
		height: 100%;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: -2;
	}

	section.news_list .inner{
		display: flex;
		justify-content: center;
	}

	section.news_list .left,
	section.news_list .right{
		width: 50%;
	}

	section.news_list .left .left_content{
		width: 240px;
		height: 100%;
		position: relative;
		left: 54%;
	}

	section.news_list .left .bg_text{
		color: #F2F5F9;
    opacity: 0.6;
    top: -110px;
    right: auto;
    left: -6px;
    z-index: -1;
		letter-spacing: 9px;
	}

	section.news_list .left .title{
		margin-bottom: 30px;
	}

	section.news_list .left .news_btn,
	section.news_list .left .news_btn a{
		display: block;
		width: 180px;
	}

	section.news_list .left .news_btn{
		position: sticky;
    -webkit-position: sticky;
		top: 110px;
		margin-top: 40px;
	}

	section.news_list .left .news_btn a{
		font-size: 1.8rem;
		font-weight: 700;
		line-height: 1.2;
		position: relative;
	}

	section.news_list .left .news_btn a::before{
		content: "";
		display: block;
		background-color: #333;
		width: 120px;
		height: 1px;
		position: absolute;
		bottom: 0;
		left: 0;
	}

	section.news_list .left .news_btn a::after{
		content: "";
		display: inline-block;
		background: url("../image/common/icon_arrow.png") no-repeat bottom/contain;
		width: 32px;
		height: 32px;
		transform: translateY(10px);
		margin-left: 1em;
		transition: margin-left 0.4s ease 0s;
	}

	section.news_list .left .news_btn a:hover::after{
		margin-left: 1.2em;
	}

	section.news_list .right ul.cate{
		display: flex;
		margin-bottom: 40px;
	}

	section.news_list .right ul.cate li{
		margin: 0 15px;
	}

	section.news_list .right ul.cate li.current::before{
		content: "";
		display: inline-block;
		width: 9px;
		height: 9px;
		border: 1px solid #333;
		border-radius: 50%;
		margin-right: 5px;
	}

	section.news_list .right ul.cate li p{
		font-size: 1.4rem;
		font-weight: 700;
		transition: opacity 0.3s ease 0s;
		display: inline-block;
		cursor: pointer;
	}

	section.news_list .right ul.cate li p:hover{
		opacity: 0.6;
	}

	section.news_list .right ul.n_list li{
		position: relative;
		padding: 40px 0 50px;
	}

	section.news_list .right ul.n_list li::before{
		content: "";
		display: block;
		background-color: #707070;
		width: 232px;
		height: 1px;
		position: absolute;
		top: 0;
		left: 0;
	}

	section.news_list .right ul.n_list li:last-of-type::after{
		content: "";
		display: block;
		background-color: #707070;
		width: 232px;
		height: 1px;
		position: absolute;
		bottom: 0;
		left: 0;
	}

	section.news_list .right ul.n_list li a{
		display: flex;
	}

	section.news_list .right ul.n_list li a:hover img{
		transform: scale(1.2);
	}

	section.news_list .right ul.n_list li .img_wrap{
		width: 128px;
		height: 128px;
		overflow: hidden;
		margin-right: 20px;
	}

	section.news_list .right ul.n_list li .img_wrap img{
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.5s ease 0s;
	}

	section.news_list .right ul.n_list li .cate_item{
		font-size: 1.2rem;
		font-weight: 700;
		color: #004EA2;
		width: 100px;
		height: 30px;
		line-height: 30px;
		text-align: center;
		border: 1px solid #004EA2;
		border-radius: 23px;
		margin-bottom: 20px;
	}

	section.news_list .right ul.n_list li .cate_item.label-new{
		color: #fff;
		background-color: #CB3434;
		border: 1px solid #CB3434;
		letter-spacing: 1px;
	}

	section.news_list .right ul.n_list li h3{
		font-size: 2rem;
		font-weight: 700;
		overflow: hidden;
		white-space: nowrap;
		width: 232px;
		text-overflow: ellipsis;
		border-bottom: 1px solid #707070;
		padding-right: 20px;
		margin-bottom: 10px;
	}

	section.news_list .right ul.n_list li time{
		font-size: 1.4rem;
		font-weight: 700;
		color: #707070;
	}




/*--------------------------------------
	CSR
--------------------------------------*/
	section.csrinfo{
		background-image: url(../image/top/top_csr.jpg);
		background-size: cover;
		width: 100%;
		padding: 181px 0 78px;
	}

	section.csrinfo .csr_title{
		margin: auto;
		text-align: center;
		color: #fff;
	}

	section.csrinfo .csr_title h2{
		font-size: 3.4rem;
		    letter-spacing: 2px;
	}

	section.csrinfo .csr_title .en{
		font-size: 1.4rem;
		width: 148px;
		border-top: 1px solid #fff;
		padding-top: 5px;
		margin: auto;
		margin-bottom: 82px;
	}

	section.csrinfo .btn{
		margin: auto;
	}


/*--------------------------------------
	協力企業
--------------------------------------*/
section.message .cooperative span.bg_text{
	left: 5%;
}

section.message .cooperative .title{
	left: 7.5%;
}


/*--------------------------------------
	リンク
--------------------------------------*/
	section.link{
		position: relative;
		padding: 80px 0 0px;
	}

	section.link::before{
		content: "";
		display: block;
		background-color: #fff;
		min-width: 1340px;
		width: 93vw;
		height: 100%;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: -2;
	}

	section.link::after{
		content: "";
		display: block;
		background: url("../image/top/sponsored.jpg") no-repeat center/cover;
		min-width: 1340px;
		width: 93vw;
		height: 387px;
		position: absolute;
		top: 280px;
		left: 0;
		z-index: -1;
	}

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

	section.link .flex .sponsored,
	section.link .flex .contact,
	section.link .flex .link{
		width: 47%;
		position: relative;
	}

	section.link span.bg_text{
		color: #F2F5F9;
		opacity: 0.6;
		top: -110px;
		right: auto;
		left: 0;
		letter-spacing: 10px;
	}

	section.link .title{
		position: relative;
	}

	section.link .spon_container{
		background-color: #F2F5F9;
		width: 495px;
		padding: 100px;
	}

	section.link .spon_container .img_wrap,
	section.link .spon_container .img_wrap img{
		width: 200px;
		height: auto;
	}

	section.link .spon_container .img_wrap{
		margin: 0 auto 30px;
	}

	section.link .spon_container p span{
		font-size: 2.6rem;
		font-weight: 700;
		background-color: #fff;
	}

	section.link ul{
		margin-top: 20px;
		display: flex;
		position: relative;
		flex-direction: column;
	}

	section.link ul li:nth-of-type(1){
		margin-bottom: 25px;
	}

	section.link ul li .img_wrap{
		width: 190px;
	}

	section.link ul li .img_wrap img{
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

	section.link .contact .title h2{
		margin-bottom: 44px;
	}

	section.link .contact_item{
		position: relative;
		padding-bottom: 110px;
	}

	section.link .sponsored_item{
		position: relative;
	}

  .top-fixed-container {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 100000;
    bottom: 54px;
    right: 70px;
    width: 400px;
    transition: .3s;
  }

  .contact-warehouse {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .contact-button {
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 32px;
    color: #fff;
    font-weight: bold;
    background: #2ABCA2;
    box-shadow: 0px 4px 12px rgba(30,77,198,.24);
    border-radius: 100px;
    border: 4px solid #fff;
    height: 60px;
  }

  .contact-button span {
    font-size: 24px;
    letter-spacing: 0.08rem;
    line-height: 2.8rem;
    font-weight: bold;
  }

}




/*------------------------------------------------
*
*　タブ切り替え
--------------------------------------------------*/
.all-list,.new-list,.topics-list{
	display: none;
	transition: 0.3s;
}
.all-list.active,.new-list.active,.topics-list.active{
	display: block;
	transition: 0.3s;
}






/*------------------------------------------------------------------------
	SP
------------------------------------------------------------------------*/



@media screen and (max-width:767px){


	p{
		font-size: 1.4rem;
		letter-spacing: 2px;
	}


/*--------------------------------------
	header(SP)
--------------------------------------*/
	header{
		background-color: rgba(255,255,255,0);
		box-shadow: none;
	}

	/* js */
	body.scroll header{
		background-color: rgba(255,255,255,1);
		box-shadow: 0 0 30px rgba(0,0,0,0.1);
	}


	header h1.logo{
		display: block;
	}

	header div.logo{
		display: none;
	}

	header button.menu_btn{
		background-color: #fff;
	}

	header button.menu_btn div::before,
	header button.menu_btn div::after{
		background-color: #333;
	}

	body.scroll header button.menu_btn{
		background-color: #2ABCA2;
		right: -1%;
	}

	body.scroll header button.menu_btn div::before,
	body.scroll header button.menu_btn div::after{
		background-color: #fff;
	}



/*--------------------------------------
	メイン画像(SP)
--------------------------------------*/
	.main_img{
		width: 100%;
		position: relative;
		margin-left: auto;
		margin-bottom: 40px;
	}

/*	.main_img li{
		height: 85vh;
		overflow: hidden;
	}
*/
	.main_img video{
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 10s ease 0s;
	}

/*	.main_img .slick-current img.zoom{
		transform: scale(1.1);
	}
*/
	.main_img .left .scroll_anime{
		position: absolute;
		bottom: 50px;
		right: 5%;
	}

	.main_img .left .scroll_anime p{
		font-size: 0.9rem;
		color: #fff;
		writing-mode: vertical-rl;
		line-height: 1;
		transform: translateX(0.5em);
		margin: 0 10px 15px 0;
		letter-spacing: 2px;
	}

	.main_img .left .scroll_anime .bar{
		background-color: #cecece;
		width: 1px;
		height: 50px;
		position: absolute;
		bottom: -50px;
		right: 0.5px;
	}

	.main_img .left .scroll_anime .bar span{
		display: inline-block;
		background-color: #fff;
		width: 9px;
		height: 9px;
		border-radius: 50%;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		animation: down 1.8s linear 0s infinite both; /*name duration timing-function delay iteration-count direction animation-fill-mode*/
	}

	.main_img .text{
		position: absolute;
		top: 40%;
		left: 7%;
	}

	.main_img .text p{
		font-size: 3.5rem;
		font-weight: 700;
		color: #fff;
	}

	.main_img .text p.en{
		font-size: 1.3rem;
	}

/*---------------------
ビデオボタン
---------------------*/
  .play_bt{
  position: absolute;
  bottom: 53px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  border: 1px solid #FFF;
}
.play_bt {
    position: absolute;
    left: 50%;
    bottom: 60px;
    transform: translateX(-50%);
    color: #FFF;
    border: 1px solid #FFF;
}
.play_bt a {
    display: block;
    color: #FFF;
    padding: 10px 15px;
}



/*--------------------------------------
	NEWS(SP)
--------------------------------------*/
	.top_news{
		display: none;
		/* display: flex;
		background-color: #F2F5F9;
		width: 95%;
		height: 140px;
		position: relative;
		padding: 20px 0 20px 20px;
		margin-bottom: 60px; */
	}

	.top_news h2{
		font-size: 1.2rem;
		margin-right: 20px;
	}

	.top_news ul{
		overflow-y: scroll;
		padding-right: 10px;
	}

	.top_news ul li{
		margin-bottom: 10px;
	}

	.top_news ul li *{
		font-size: 1.4rem;
	}

	.top_news ul li a{
		display: inline-block;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		width: 100%;
		box-sizing: border-box;
		position: relative;
		padding-right: 25px;
	}

	.top_news ul li a::after{
		content: "";
		display: inline-block;
		width: 6px;
		height: 6px;
		border-top: 1px solid #333;
		border-right: 1px solid #333;
		transform: rotate(45deg) translateY(-50%);
		position: absolute;
		top: 50%;
		right: 15px;
	}

	.top_news ul li span::before{
		content: "|";
		display: inline-block;
		padding-right: 0.5em;
		margin-left: 0.5em;
	}





/*--------------------------------------
	Mission(SP)
--------------------------------------*/
	section.mission{
		margin-bottom: 60px;
		position: relative;
	}

	section.mission .inner{
		width: 100%;
		padding: 0;
	}

	section.mission .inner3{
		width: 100%;
		position: relative;
		display: flex;
    flex-direction: column-reverse;
    flex-wrap: wrap;
		padding: 0;
	}

	section.mission .img_wrap .title_wrap{
		font-size: 1.2rem;
		width: 100px;
		position: absolute;
		top: 8%;
		right: -9%;
		overflow: hidden;
		color: #fff;
	}

	section.mission .img_wrap .title_wrap h2{
		transform: translateX(-100%);
		transition: transform 0.5s ease 0.1s;
	}

	/* js */
	section.mission.show .img_wrap h2{
		transform: translateX(0);
	}

	section.mission .img_wrap{
		position: relative;
		margin: 0 auto 20px;
	}

	section.mission .img_wrap,
	section.mission .img_wrap img{
		width: 100%;
		height: auto;
	}

	section.mission svg{
		width: 95%;
		height: auto;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
	}

	section.mission svg rect{
		fill: none;
    stroke: #fff;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke-dashoffset: 2480px;
    stroke-dasharray: 2480px;
	}

	/* js */
	section.mission.show svg rect{
		animation: rect_move 1.5s ease-in-out 0s 1 both; /*name duration timing-function delay iteration-count direction animation-fill-mode*/
	}

	section.mission .inner3 .text{
		display: flex;
		flex-direction: row-reverse;
		justify-content: center;
		margin-bottom: 100px;
		letter-spacing: 1.2em;
		line-height: 2;
	}

	section.mission .inner3 p{
		font-size: 2.8rem;
		writing-mode: vertical-rl;
	}

	section.mission .inner3 p.l_slide{
		overflow: hidden;
	}

	section.mission .inner3 p.l_slide span{
		position: relative;
		left: -3em;
		transition: left 1.2s ease 0.3s;
		display: block;
	}

	section.mission .inner3 p.left.l_slide span{
		transition: left 1.2s ease 0.7s;
	}

	section.mission .inner3 p.l_slide.right span:last-of-type{
		margin-top: 40px;
	}

	section.mission .inner3 p.l_slide.left span{
		margin-top: 80px;
		text-align: end;
	}

	/* js */
	section.mission.show .inner3 p.l_slide span{
		left: 0;
	}

	section.mission .inner>p{
	text-align: right;
    display: block;
    font-size: 10px;
    transform: scale(0.7);
    width: 150%;
    transform-origin: left top;
    position: absolute;
    bottom: 0%;
    left: -25px;
    letter-spacing: 1.5px;
	}




/*--------------------------------------
	私たちについて(SP)
--------------------------------------*/
	section.about{
		position: relative;
		padding-bottom: 30px;
	}

	section.about::before{
		content: "";
		display: block;
		background-color: #F0F0F0;
		width: 100%;
		height: 25vw;
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: -1;
	}

	section.about .text{
		padding-top: 30px;
		margin-bottom: 50px;
	}

	section.about .text p{
		margin-bottom: 30px;
		    letter-spacing: 1.5px;
	}

	section.about .text .btn{
		margin: auto;
	}

	section.about .img_wrap{
		width: 100%;
		height: auto;
		position: relative;
	}
	section.about .img_wrap img{
		width: 100%;
		height: auto;
	}

	section.about .img_wrap::after {
    content: '';
    background-color: #F0F0F0;
    display: block;
    width: 60%;
    height: 30px;
    z-index: 100;
    position: absolute;
	left: -1px;
	}
/*--------------------------------------
	業務内容(SP)
--------------------------------------*/
	section.service{
		position: relative;
		padding: 55px 0;
	}

	section.service::before{
		content: "";
		display: block;
		background-color: #F0F0F0;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		z-index: -1;
	}

	.s_title{
		margin: 0 auto 30px;
	}

	.s_title .en{
		font-size: 1.4rem;
		font-weight: 700;
		padding-bottom: 10px;
		letter-spacing: 1.5px;
	}

	.s_title h2{
		font-size: 2.4rem;
		font-weight: 700;
		position: relative;
		padding-top: 5px;
		letter-spacing: 2px;
	}

	.s_title h2::before{
		content: "";
		display: block;
		background-color: #707070;
		width: 95%;
		height: 1px;
		opacity: 0.4;
		position: absolute;
		top: 0;
		left: 0;
	}

	.s_title h2::after{
		content: "";
		display: block;
		background-color: #707070;
		width: 65%;
		height: 1px;
		position: absolute;
		top: 0;
		left: 0;
	}

	.s_title+p{
		margin-bottom: 40px;
		letter-spacing: 2px;
	}

	/* slider pro */
	section.service #service_slide{
		margin-bottom: 70px;
	}

	section.service #service_slide ul{
		margin-left: -30%;
	}

	section.service #service_slide ul li::before{
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		z-index: 1;
	}

	section.service #service_slide .img_wrap{
		position: relative;
	}

	section.service #service_slide img{
		width: 165px;
	}

	section.service #service_slide p{
		font-size: 1.1rem;
		font-weight: 600;
		color: #fff;
		position: absolute;
		left: 9px;
		bottom: 15px;
		z-index: 1;
		letter-spacing: 1px;
		width: 90%;
	}

	section.service .sp-horizontal .sp-arrows{
		width: 100vw;
	}

	section.service .sp-horizontal .sp-next-arrow{
		right: 4%;
	}

	section.service .sp-horizontal .sp-previous-arrow{
		left: 4%;
	}

	section.service li.slide_item img{
		width: 207px;
		margin-top: 5px;
		padding:0px 5px;
		background-color: rgba(255,255,255,1);
		box-shadow: 0 0 30px rgba(0,0,0,0.1);
	}

	section.service .btn{
		margin: auto;
	}




/*--------------------------------------
	採用情報(SP)
--------------------------------------*/
	section.recruit{
		position: relative;
		padding: 22vw 0 1px;
		margin-top: 80px;
		margin-bottom: 80px;
	}

	section.recruit::before{
		content: "";
		display: block;
		background-color: #F2F5F9;
		min-width: 1340px;
		width: 93vw;
		height: 170px;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -2;
	}

	section.recruit::after{
		content:'';
		background-image: url(../../../../wp-content/uploads/2025/05/添乗指導-6.png);
		background-size: cover;
		background-position:right;
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		right: 0;
		bottom: 0;
		z-index: -1;
	}

	section.recruit .inner{
		position: relative;
	}

	span.bg_text{
    letter-spacing: 6px;
		font-size: 5rem;
		font-weight: 700;
		font-family: 'Raleway', sans-serif;
		color: #fff;
		opacity: 0.4;
		position: absolute;
		top: -130px;
		right: 20px;
		transition: transform 1.3s ease-out 0s;
	}

	section.recruit .s_title{
		margin: 0;
	}

	section.recruit .s_title h2::before{
		background-color: #fff;
	}

	section.recruit .s_title h2::after{
		background-color: #fff;
	}

	section.recruit .s_title,
	section.recruit .s_title+p{
		position: relative;
		left: 5%;
	}

	section.recruit .s_title *,
	section.recruit .s_title+p{
		color: #fff;
		text-shadow: 2px 1px 1px #101010;
	}

	section.recruit .s_title+p{
		left: 5%;
		width: 95%;
	}

	section.recruit #recruit_slide{
		position: relative;
		bottom: -70px;
	}

	section.recruit #recruit_slide img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}






/*--------------------------------------
	Sanwa宣言(SP)
--------------------------------------*/
	section.message{
		padding-bottom: 20px;
	}

	section.message .inner{
		position: relative;
		margin-bottom: 30px;
	}

	section.message .cooperative{
		margin-top: 100px;
	}

	section.message span.bg_text{
    letter-spacing: 6px;
		color: #F2F5F9;
		top: -80px;
		left: -30px;
		right: auto;
	}

	section.message .title{
		margin-bottom: 40px;
	}

	#message_slide_container {
		padding-bottom: 30px;
	}

	section.message .space{
		padding: 30px 0px;
	}

	.slick-track {
		display: flex;
		align-items: center;
	}

	section.message li.slide_item img{
		width: 207px;
		margin-top: 5px;
		box-shadow: 0 0 10px rgba(0,0,0,0.1);
	}

	section.message li.slide_item .logo{
		width: 100%;
		box-shadow: none;
	}

	section.message li.slide_item .img_wrap{
		max-width: 232px;
		padding: 0px 15px;
		width: 197px;
	}

	section.message .btn{
		margin: auto;
	}





/*--------------------------------------
	お知らせ(SP)
--------------------------------------*/
	section.news_list{
		position: relative;
		padding: 80px 0;
	}

	section.news_list::before{
		content: "";
		display: block;
		background-color: #fff;
		width: 95%;
		height: 100%;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: -2;
	}

	section.news_list .left .bg_text{
		color: #F2F5F9;
    opacity: 0.6;
    top: 10px;
    right: auto;
    left: 20px;
    z-index: -1;
	}

	section.news_list .left .title{
		margin-bottom: 30px;
	}

	section.news_list .left .title+p{
		margin-bottom: 30px;
	}

	section.news_list .left .news_btn,
	section.news_list .left .news_btn a{
		display: block;
		width: 150px;
	}

	section.news_list .left .news_btn{
		margin: 0 0 20px 0;
	}

	section.news_list .left .news_btn a{
		font-size: 1.6rem;
		font-weight: 700;
		line-height: 1.2;
		position: relative;
	}

	section.news_list .left .news_btn a::before{
		content: "";
		display: block;
		background-color: #333;
		width: 100px;
		height: 1px;
		position: absolute;
		bottom: 0;
		left: 0;
	}

	section.news_list .left .news_btn a::after{
		content: "";
		display: inline-block;
		background: url("../image/common/icon_arrow.png") no-repeat bottom/contain;
		width: 25px;
		height: 25px;
		transform: translateY(5px);
		margin-left: 0.5em;
		transition: margin-left 0.4s ease 0s;
	}

	section.news_list .left .news_btn a:hover::after{
		margin-left: 0.8em;
	}

	section.news_list .right ul.cate{
		display: flex;
		flex-wrap: wrap;
		margin-bottom: 20px;
	}

	section.news_list .right ul.cate li{
		margin: 0 20px 10px 0;
	}

	section.news_list .right ul.cate li.current::before{
		content: "";
		display: inline-block;
		width: 9px;
		height: 9px;
		border: 1px solid #333;
		border-radius: 50%;
		margin-right: 2px;
	}

	section.news_list .right ul.cate li p{
		font-size: 1.4rem;
		font-weight: 700;
		transition: opacity 0.3s ease 0s;
		cursor: pointer;
		display: inline-block;
	}

	section.news_list .right ul.cate li p:hover{
		opacity: 0.6;
	}

	section.news_list .right ul.n_list li{
		position: relative;
		padding: 20px 0 25px;

	}

	section.news_list .right ul.n_list li::before{
		content: "";
		display: block;
		background-color: #707070;
		width: 100%;
		height: 1px;
		position: absolute;
		top: 0;
		left: 0;
	}

	section.news_list .right ul.n_list li:last-of-type::after{
		content: "";
		display: block;
		background-color: #707070;
		width: 100%;
		height: 1px;
		position: absolute;
		bottom: 0;
		left: 0;
	}

	section.news_list .right ul.n_list li a{
		display: flex;
	}

	section.news_list .right ul.n_list li a:hover img{
		transform: scale(1.2);
	}

	section.news_list .right ul.n_list li .img_wrap{
		width: 128px;
		height: 128px;
		overflow: hidden;
		margin-right: 20px;
	}

	section.news_list .right ul.n_list li .img_wrap img{
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.5s ease 0s;
	}

	section.news_list .right ul.n_list li .text{
		width: calc(100% - 150px);
	}

	section.news_list .right ul.n_list li .cate_item{
		font-size: 1.2rem;
		font-weight: 700;
		color: #004EA2;
		width: 100px;
		height: 30px;
		line-height: 30px;
		text-align: center;
		border: 1px solid #004EA2;
		border-radius: 23px;
		margin-bottom: 20px;
	}

	section.news_list .right ul.n_list li .cate_item.label-new{
		color: #fff;
		background-color: #CB3434;
		border: 1px solid #CB3434;
	}

	section.news_list .right ul.n_list li h3{
		font-size: 1.6rem;
		font-weight: 700;
		overflow: hidden;
		white-space: nowrap;
		width: 100%;
		text-overflow: ellipsis;
		border-bottom: 1px solid #707070;
		padding-right: 20px;
		margin-bottom: 10px;
	}

	section.news_list .right ul.n_list li time{
		font-size: 1.4rem;
		font-weight: 700;
		color: #707070;
	}




/*--------------------------------------
	お問い合わせ(SP)
--------------------------------------*/
	section.contact_link *{
		color: #fff;
	}

	section.contact_link h2,
	section.contact_link p{
		text-align: center;
	}

	section.contact_link h2{
		font-size: 2.5rem;
		font-weight: 700;
		margin-bottom: 30px;
	}

	section.contact_link p{
		margin-bottom: 20px;
	}

	section.contact_link .tel_container,
	section.contact_link .mail_container{
		padding: 80px 0;
	}

	section.contact_link .tel_container{
		background-color: #004EA2;
	}

	section.contact_link .tel_content,
	section.contact_link .mail_content{
		width: 90%;
		margin: auto;
	}

	section.contact_link .tel_box{
		background: url("../image/common/icon_tel.png") no-repeat left center/40px 40px;
		text-align: left;
		width: 260px;
		padding-left: 50px;
		margin: auto;
	}

	section.contact_link .tel_box p{
		text-align: left;
		margin-bottom: 0;
	}

	section.contact_link .tel_num a{
		font-size: 2.5rem;
		font-weight: 700;
		line-height: 1;
		letter-spacing: 0.1em;
	}

	section.contact_link .mail_container{
		background: linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)), url(../image/top/mail_photo.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
	}

	section.contact_link .mail_content .m_link{
		width: 260px;
		margin: auto;
	}

	section.contact_link .mail_content .m_link a{
		display: inline-block;
		font-size: 1.8rem;
		font-weight: 700;
		position: relative;
	}

	section.contact_link .mail_content .m_link a::before{
		content: "";
		display: block;
		background-color: #fff;
		width: 180px;
		height: 1px;
		position: absolute;
		bottom: 0;
		left: 0;
	}

	section.contact_link .mail_content .m_link a::after{
		content: "";
		display: inline-block;
		background: url("../image/common/icon_arrow_w.png") no-repeat center/contain;
		width: 30px;
		height: 30px;
		transform: translate(0,0.5em);
    margin-left: 1.5em;
		transition: transform 0.4s ease 0s;
	}

	section.contact_link .mail_content .m_link a:hover::after{
		transform: translate(3px,0.5em);
	}

/*--------------------------------------
	CSR(SP)
--------------------------------------*/
section.csrinfo{
	background-image: url(../image/top/top_csr.jpg);
	background-size: cover;
	background-position: right -100px bottom -3px;
	width: 100%;
	padding: 80px 0;
}

section.csrinfo .csr_title{
	margin: auto;
	text-align: center;
	color: #fff;
}

section.csrinfo .csr_title h2{
	font-size: 2.4rem;
}

section.csrinfo .csr_title .en{
	font-size: 1.4rem;
	width: 148px;
	border-top: 1px solid #fff;
	padding-top: 5px;
	margin: auto;
	margin-bottom: 30px;
}

section.csrinfo .btn{
	margin: auto;
}





/*--------------------------------------
	リンク(SP)
--------------------------------------*/
	section.link{
		position: relative;
		padding: 80px 0 50px;
	}

	section.link::before{
		content: "";
		display: block;
		background-color: #fff;
		min-width: 1340px;
		width: 93vw;
		height: 100%;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: -2;
	}

	section.link::after{
		content: "";
		display: block;
		background: url("../image/top/sponsored.jpg") no-repeat center/cover;
		min-width: 1340px;
		width: 93vw;
		height: 387px;
		position: absolute;
		top: 280px;
		left: 0;
		z-index: -1;
	}

	section.link .flex .sponsored,
	section.link .flex .link{
		padding-bottom: 50px;
	}

	section.link .flex .sponsored,
	section.link .flex .contact,
	section.link .flex .link{
		width: 100%;
		position: relative;
	}

	section.link span.bg_text{
		color: #F2F5F9;
		opacity: 0.6;
		top: -75px;
		right: auto;
		left: 0;
	}

	section.link .title{
		position: relative;
	}

	section.link .spon_container{
		background-color: #F2F5F9;
		width: 495px;
		padding: 100px;
	}

	section.link .spon_container .img_wrap,
	section.link .spon_container .img_wrap img{
		width: 200px;
		height: auto;
	}

	section.link .spon_container .img_wrap{
		margin: 0 auto 30px;
	}

	section.link .spon_container p span{
		font-size: 2.6rem;
		font-weight: 700;
		background-color: #fff;
	}

	section.link ul{
		display: flex;
		position: relative;
		align-items: center;
		flex-direction: column;
	}

	section.link ul li{
	}

	section.link ul li:nth-of-type(1){
		padding-bottom: 20px;
	}

	section.link ul li .img_wrap{
		max-width: 232px;
		width: 100%;
		height: auto;
		height: 110px;
	}

	section.link .sponsored_item ul li .img_wrap{
		max-width: 240px;
		width: 100%;
		height: auto;
		margin-top: 30px;
	}

	section.link ul li .img_wrap img{
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

	section.link .contact .title h2{
		margin-bottom: 44px;
	}

	section.link .contact_item{
		position: relative;
		padding-bottom: 80px;
	}

	section.link .sponsored_item,
	section.link .link_item{
		position: relative;
		padding-bottom: 40px;
	}

  .top-fixed-container {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 100000;
    bottom: 44px;
    left: 36px;
    width: calc(100% - 90px);
    transition: .3s;
  }

  .contact-warehouse {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .contact-button {
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 12px;
    color: #fff;
    font-weight: bold;
    background: #2ABCA2;
    box-shadow: 0px 4px 12px rgba(30,77,198,.24);
    border-radius: 100px;
    border: 4px solid #fff;
    height: 58px;
  }

  .contact-button span {
    font-size: 19px;
    letter-spacing: 0.08rem;
    line-height: 2.8rem;
    font-weight: bold;
  }

}
