@charset "utf-8";
/* CSS Document */

html {
	font-family: 'Noto Sans JP', sans-serif;
}

p {
	color: #07131F;
}

img {
    vertical-align: bottom;
}

body a {
    transition: 1s;
}

body a:hover {
    opacity: 0.6;
}

.sp_only {
	display: none;
}
@media (max-width: 768px) {
	.sp_only {
		display: block;
	}
	
	.pc_only {
		display: none;
	}
}

/*スムーススクロール*/
html {
    scroll-behavior: smooth;
	scroll-padding-top: 110px;
}
@media (max-width: 1024px) {
		html {
		scroll-padding-top: 70px;
	}
}

/*メニュー展開時に背景をスクロールさせないため*/
body.active {
  height: 100%;
  overflow: hidden;
}

/*--------------------------------------------------

  header

--------------------------------------------------*/

/*test*/
.header .menu_toggle .nav_wrap {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

button, input, select, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: 0 0;
    border: none;
    border-radius: 0;
    font: inherit;
    outline: 0;
}

.header {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    padding: 30px 0 33px;
    -webkit-transition: .2s;
    transition: .2s;
}
@media (max-width: 1024px){
	.header {
		padding: 20px 0;
	}
}

.header .header_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /*max-width: 1262px;*/
	padding: 0 20px 0 30px;
    margin: 0 auto;
}
@media (max-width: 1250px){
	.header .header_inner {
		padding: 0 15px;
	}
}
@media (max-width: 1024px){
	.header .header_inner {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		padding: 0 20px;
	}
}


.header .header_inner h1{
    font-size: 24px;
	margin: 0;
}
@media (max-width: 1250px){
	.header .header_inner h1{
		font-size: 20px;
	}
}
@media (max-width: 768px){
	.header .header_inner h1{
		font-size: 17px;
	}
}

.header .header_inner h1 a{
    text-decoration: none;
	color: #fff;
}

.header.is-open .menu {
    opacity: 1;
    pointer-events: all;
}
@media (max-width: 1024px){
.header .menu {
    pointer-events: none;
    position: fixed;
    opacity: 0;
    top: 0;
    right: 0;
    width: 100%;
    /*min-height: 34.5vh;
    height: 34.5%;*/
	min-height: 40vh;
    height: auto;
    padding: 104px 0 85px;
    overflow-y: auto;
    background-color: #fff;
    z-index: 102;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
}
	
	.header .menu .site_nav {
		margin: 0 auto;
	}
}

.header .menu_toggle .nav_wrap {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.header .menu_toggle .nav_wrap span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #2567A7;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.header .menu_toggle .nav_wrap span:nth-child(1) {
    top: 0;
}

.header .menu_toggle.toggle-open>.nav_wrap>span:nth-child(1) {
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    top: 50%;
}


.header .menu_toggle .nav_wrap span:nth-child(2) {
    top: calc(50% - 1px);
}

.header .menu_toggle.toggle-open>.nav_wrap>span:nth-child(2) {
    height: 0;
    width: 0;
}

.header .menu_toggle .nav_wrap span:nth-child(3) {
    bottom: -1px;
}

.header .menu_toggle.toggle-open>.nav_wrap>span:nth-child(3) {
    -webkit-transform: translateX(-50%) rotate(-45deg);
    transform: translateX(-50%) rotate(-45deg);
    top: 50%;
}

.header .menu .site_nav {
    -webkit-transition: .2s;
    transition: .2s;
}

.header .menu .site_nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 50px;
	list-style: none;
    margin: 0;
    padding: 0;
}
@media (max-width: 1250px){
.header .menu .site_nav ul {
    gap: 25px;
	}
}
@media (max-width: 1024px){
.header .menu .site_nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px;
	}
}

.header .menu .site_nav ul li a {
	text-decoration: none;
	font-size: 16px;
	font-weight: bold;
	color: #39424C;
}

.header .menu .site_nav ul li.button a {
    width: 100%;
    max-width: 280px;
    text-align: center;
    background-color: #3FB5A4;
    border-radius: 2em;
    padding: 13px 32px 17px;
    margin: 0;
    font-size: 17px;
    line-height: 1;
}
@media (max-width: 1250px){
  .header .menu .site_nav ul li.button a {
    padding: 13px 25px 17px;
    font-size: 16px;
  }
}
@media (max-width: 1024px){
  .header .menu .site_nav ul li.button a {
      padding: 13px 32px 17px;
      margin: 0;
      font-size: 17px;
    }
  }

.header .menu .site_nav ul li a img {
	width: 216px;
	max-width: 100%;
}

@media (max-width: 1024px){
.header .mask {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 101;
    pointer-events: none;
    cursor: pointer;
    -webkit-transition: .2s;
    transition: .2s;
}}

.header .menu_toggle {
    display: none;
    width: 32px;
    height: 16px;
    z-index: 103;
    padding: 0;
}
@media (max-width: 1024px){
.header .menu_toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}	
}

/*スクロール後に背景色入れる*/
.header.is-fixed {
  background-color: #fff;
	transition: 0.3s;
}

.header.is-fixed .header_inner h1 a {
	color: #39424C;
	transition: 0.3s;
}

/*--------------------------------------------------

  MV

--------------------------------------------------*/
.mv {
    width: 100%;
	/*height: 870px;*/
    position: relative;
	display: flex;
    /*justify-content: center;*/
}

.mv picture {
	width: 100%;
}

.mv picture img {
	width: 100%;
	max-width: 100%;
}

.mv_txt {
    position: absolute;
	top: 33%;
	 /*top: 33.5%;
    left: 50%; */
    /* transform: translate(290px,-50%); */
     left: 7.5vw; 
    width: 1160px;
    max-width: 100%;
    /* height: auto; */
    /* margin: 0 auto;
	padding: 290px 0 250px;*/
}
@media (max-width: 1220px) {
	.mv_txt {
		width: 578px;
	}
}
/*@media (max-width: 1160px) {
	.mv_txt {
		top: calc(290 / 1160 * 100vw);
	}
}
*/
@media (max-width: 1024px) {
	.mv_txt {		
    	/*top: 20%;*/
		left: 1.5vw;
		/*width: 100%;*/
	}
}
@media (max-width: 768px) {
	.mv_txt {		
    	top: 23%;
		left: 0;
		width: 100%;
	}
}

.mv .mv_txt img {
	/*max-width: 100%;*/
	max-width: 578px;
}
@media (max-width: 1160px) {
	.mv .mv_txt img {
		height: calc(329 / 1160 * 100vw);
	}
}
@media (max-width: 768px) {
	.mv .mv_txt img {
		max-width: unset;
		height: unset;
		width: 80%;
		padding-left: 20px;
	}
}

/*.mv_txt span {
    font-size: 107px;
    display: block;
	line-height: 1;
}

.mv_txt_jp {
    margin-top: 40px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.mv_txt_jp_border {
    border-bottom: 1px solid #fff;
    width: 24px;
	position: relative;
    bottom: 1.5px;
}

.mv_txt_jp span {
	font-size: 19px;
}*/

.mv_scroll {
    position: absolute;
    right: 1.5%;
    bottom: 78px;
    height: 125px;
    color: #fff;
	display: flex;
    flex-direction: column;
    align-items: center;
	gap: 15px;
}
@media (max-width: 768px) {
	.mv_scroll {
		right: 4%;
		bottom: 61px;
	}
}

.mv_scroll p {
	transform: rotate(90deg);
	font-size: 11px;
	margin: 0;
	color: #fff;
}

.mv_scroll_border {
    border-left: 1px solid #fff;
    height: 74px;
	/*margin-left: 2.5px;*/
}

/*--------------------------------------------------

  About

--------------------------------------------------*/
.about {
	text-align: center;
	margin-top: 20px;
}
@media (max-width: 1024px) {
	.about {
		width: 90%;
   		margin: 20px auto 0;
	}
}
@media (max-width: 768px) {
	.about {
		width: 90%;
	}
}

.about h2 {
    vertical-align: bottom;
	width: 87px;
    margin: 0 auto 27px;
	line-height: 1;
}

.about_catch {
	color: #2567A7;
	font-size: 30px;
	font-weight: 500;
	line-height: 1.7;
	margin: 0 0 30px;
}
@media (max-width: 768px) {
	.about_catch {
		font-size: 19px;
		margin: 0 0 20px;
	}
}

.about_txt {
	font-size: 15px;
	font-weight: 400;
	line-height: 2.1;
	margin: 0;
}
@media (max-width: 768px) {
	.about_txt {
		font-size: 14px;
		text-align: left;
	}
}


/*--------------------------------------------------

  事業内容

--------------------------------------------------*/
.jigyou {
	margin-top: 120px;
	background-color: #EFF0F1;
	position: relative;
	height: 3083px;
}
@media (max-width: 1024px) {
	.jigyou {
		height: 2303px
	}
}
@media (max-width: 768px) {
	.jigyou {
		margin-top: 60px;
		height: auto;
	}
}

.jigyou h3 {
	color: #2567A7;
	text-align: center;
	position: absolute;
	top: -11px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    margin: 0;
}

.jigyou h3 img {
	width: 213px;
	max-width: 100%;
}
@media (max-width: 767px) {
	 .jigyou h3 img {
		width: 80%;
	}
}

.jigyou h3 span {
	display: block;
	font-size: 17px;
	font-weight: 500;
	margin-top: 20px;
}
@media (max-width: 768px) {
	.jigyou h3 span {
		font-size: 15px;
		margin-top: 15px;
	}
}

.jigyou_contents {
	padding-top: 90px;
}
@media (max-width: 768px) {
	.jigyou_contents {
		padding-top: 60px;
	}
}

.jigyou_contents:first-of-type {
	padding-top: 135px;
}
@media (max-width: 768px) {
	.jigyou_contents:first-of-type {
		padding-top: 90px;
	}
}


.jigyou_contents div {
	position: relative;
}

.jigyou_contents div.jigyou_contents_pump {
	/*background-image: url("../img/top_img_service1.png");
	background-repeat: no-repeat;
	height: 100%;
	position: relative;*/
}

.jigyou_contents_img img {
	width: 100%;
	max-width: 100%;
    height: 600px;
    object-fit: cover;
}
@media (max-width: 1024px) {
	.jigyou_contents_img img {
    	width: 100%;
		height: unset;
		object-fit: unset;
	}
}
@media (max-width: 768px) {
	.jigyou_contents_img img {
		width: 100%;
		height: auto;
	}	
}

.jigyou_contents div.jigyou_contents_back {
    background-color: rgba(255, 255, 255, 0.95);
	width: 358px;
	max-width: 100%;
	position: absolute;
    top: 100px;
}
@media (max-width: 1024px) {
	.jigyou_contents div.jigyou_contents_back {
		width: 310px;
		top: 30px;
	}
}
@media (max-width: 768px) {
	.jigyou_contents div.jigyou_contents_back {
		/*top: 0;*/
		position: unset;
		width: 80%;
		margin: 30px auto 0;
	}
}

@media screen and (min-width:1360px) and (max-width:1920px) {
	.jigyou_contents div.jigyou_left {
		padding: 86px 62px 110px calc(50% - 580px);
		/* padding-left: calc(50% - 580px);*/
	}
}
@media screen and (max-width:1360px) {
	.jigyou_contents div.jigyou_left {
		padding: 86px 62px 110px 100px;
	}	
}
@media screen and (max-width:1024px) {
	.jigyou_contents div.jigyou_left {
		padding: 45px 60px 60px 80px;
	}	
}
@media screen and (max-width:768px) {
	.jigyou_contents div.jigyou_left {
		padding: 26px 20px;
	}	
}

.jigyou_contents div.jigyou_right {
	right: 0;
}
@media screen and (min-width:1360px) and (max-width:1920px) {
	.jigyou_contents div.jigyou_right {
		padding: 86px calc(50% - 580px) 110px 62px;
	}
}
@media screen and (max-width:1360px) {
	.jigyou_contents div.jigyou_right {
		padding: 86px 100px 110px 62px;
	}	
}
@media screen and (max-width:1024px) {
	.jigyou_contents div.jigyou_right {
		padding: 45px 80px 60px 60px;
	}	
}
@media screen and (max-width:768px) {
	.jigyou_contents div.jigyou_right {
		padding: 26px 20px;
	}	
}

.jigyou_contents_title {
	font-size: 26px;
	font-weight: 500;
	color: #2567A7;
	margin: 0 0 40px;
}
@media screen and (max-width:768px) {
	.jigyou_contents_title {
		font-size: 19px;
		margin: 0 0 20px;
	}	
}

.jigyou_contents_txt {
	font-size: 15px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 1.5px;
    margin: 0;
}
@media screen and (max-width:768px) {
	.jigyou_contents_txt {
		font-size: 14px;
		line-height: 1.75;
	}
}

.jigyou_contents_txt span {
	display: block;
}

.jigyou_contents_txt span:first-of-type {
    margin-bottom: 15px;
}



/*サービス工場*/
.jigyou_service {
	max-width: 100%;
	width: 1160px;
	height: 377px;
	margin: 0 auto;
	position: relative;
	top: 88px;
}
@media screen and (max-width:1024px) {
	.jigyou_service {
		width: 90%;
		height: 307px;
	}
}
@media screen and (max-width:768px) {
	.jigyou_service {
		width: 90%;
		height: auto;
		top: auto;
		margin-top: 60px;
		padding-bottom: 50px;
	}
}

.jigyou_service_box {
	height: 100%;
    background-color: #2567A7;
	display: flex;
    align-items: center;
    justify-content: center;
}

.jigyou_service_contents {
	width: 1000px;
	display: flex;
	gap: 70px;
}
@media screen and (max-width:1024px) {
	 .jigyou_service_contents {
		width: 100%;
		padding: 0 30px;
	}
}
@media screen and (max-width:768px) {
	.jigyou_service_contents {
		width: 85%;
		flex-direction: column;
		gap: 30px;
		padding: 0;
	}
}


@media screen and (max-width:1024px) {
	.jigyou_service_contents_img {
		align-self: center;
	}
	
	.jigyou_service_contents_img img {
		width: 100%;
	}
}
@media screen and (max-width:768px) {
	.jigyou_service_contents_img img {
		width: 100%;
		margin-bottom: 40px;
	}
}

.jigyou_service_contents_txt p {
	color: #fff;
	font-size: 15px;
	font-weight: 400;
	line-height: 2;
	margin: 0;
	letter-spacing: 1.5px;
}
@media screen and (max-width:768px) {
	.jigyou_service_contents_txt p {
		font-size: 14px;
	}
}

.jigyou_service_contents_txt p.jigyou_service_contents_txt_title {
	font-size: 26px;
	font-weight: 500;
	margin: 42px 0 40px;
	line-height: 1;
}
@media screen and (max-width:1024px) {
	.jigyou_service_contents_txt p.jigyou_service_contents_txt_title {
		margin: 10px 0 20px;
	}
}
@media screen and (max-width:768px) {
	.jigyou_service_contents_txt p.jigyou_service_contents_txt_title {
		font-size: 19px;
		margin: 42px 0 20px;
	}
}

.jigyou_service_contents_txt p span {
	display: block;
}

.jigyou_service_contents_txt p span:first-of-type {
	margin-bottom: 33px;
}
@media screen and (max-width:768px) {
	.jigyou_service_contents_txt p span:first-of-type {
		margin-bottom: 12px;
	}
}

.jigyou_service_triangle {
	position: absolute;
    top: 0;
}

.jigyou_service_triangle img {
	width: 35px;
	max-width: 100%;
}


/*その他の事業*/
 .jigyou_others {
	max-width: 100%;
    width: 1160px;
    margin: 280px auto 0;
}
@media screen and (max-width:1024px) {
	.jigyou_others {
		width: 90%;
		margin: 170px auto 0;
	}
}
@media screen and (max-width:768px) {
	 .jigyou_others {
		margin: 70px auto 0;
		padding: 0 20px;
	}
}

.jigyou_others_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media screen and (max-width:1160px) {
	.jigyou_others_title {
		padding: 0 20px;
	}
}

.jigyou_others_title p {
	color: #2567A7;
	font-size: 29px;
	font-weight: 500;
	margin: 0;
}
@media screen and (max-width:1160px) {
	.jigyou_others_title p {
		font-size: 24px;
	}
}
@media screen and (max-width:768px) {
	.jigyou_others_title p {
		font-size: 23px;
	}
}

.jigyou_others_title div {
    border-bottom: 1px solid #000;
	flex-basis: 945px;
}
@media screen and (max-width:1160px) {
	.jigyou_others_title div {
		flex-basis: calc(100% - 10em);
	}
}

.jigyou_others ul {
    margin: 45px 0 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width:1160px) {
	.jigyou_others ul{
		gap: 15px;
		padding: 0 20px;
	}
	
	.jigyou_others ul li {
		flex-basis: calc(100% / 3);
	}
	
	.jigyou_others ul li img {
		width: 100%;
	}
}
@media screen and (max-width:768px) {
	.jigyou_others ul {
		margin: 25px 0 0 0;
		flex-direction: column;
		gap: 20px;
	}
	
	 .jigyou_others ul li img {
		width: 100%;
	}
}

/*--------------------------------------------------

  主要取引先

--------------------------------------------------*/

.torihikisaki {
	/*position: relative;
	height: 843px;*/
	margin-top: 185px;
}
@media screen and (max-width:768px) {
	.torihikisaki {
		display: flex;
		justify-content: center;
		margin-top: 70px;
		height: auto;
		background-image: url("../img/top_back_cloents.jpg");
		background-size: contain;
    	background-repeat: no-repeat;
	}
	
	.torihikisaki_back {
		display: none;
	}
}

/*.torihikisaki div {
    height: 500px;
	background-image: url("../img/top_back_cloents.jpg")
}*/

.torihikisaki_back img {
	width: 100%;
	max-width: 100%;
}

.torihikisaki_contents {
	/*position: absolute;
	top: 95px;*/
	width: 100%;
	position: relative;
}
@media screen and (max-width:768px) {
	.torihikisaki_contents {
    	/*top: 38px;*/
		width: 90%;
		position: unset;
		margin-top: 32px;
	}
}

.torihikisaki_contents::before {
    content: "";
    position: absolute;
    top: -95px;
    left: 0;
    background-image: url(../img/top_back_cloents.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 500px;
	z-index: -1;
}

.torihikisaki_contents h3 {
	text-align: center;
	margin: 0 0 54px;
}
@media screen and (max-width:768px) {
	.torihikisaki_contents h3 {
		margin: 0px 0 34px;
	}
}

.torihikisaki_contents h3 img {
	width: 212px;
	max-width: 100%;
}
@media screen and (max-width:767px) {
	.torihikisaki_contents h3 img {
		width: 40%;
	}
}

.torihikisaki_contents h3 span {
	color: #fff;
	display: block;
	margin-top: 20px;
	font-size: 17px;
    font-weight: 500;
}
@media screen and (max-width:768px) {
	.torihikisaki_contents h3 span {
		font-size: 15px;
		margin-top: 15px;
	}
}

.torihikisaki_contents_txt {
	width: 1000px;
	margin: 0 auto;
    position: relative;
}
@media screen and (max-width:1024px) {	
	 .torihikisaki_contents_txt {
		width: 90%;
		filter: drop-shadow(0px 0px 6px rgba(27,37,46,.15));
		position: unset;
	}
}


.jouzan {
    margin: 0;
	box-shadow: -3px -3px 12px 3px rgba(189, 204, 212, 0.65), 3px 3px 12px 0px rgba(189, 204, 212, 0.65);
    height: 650px;
	 mix-blend-mode: multiply; 
}
@media screen and (max-width:1024px) {
	.jouzan {
		box-shadow: unset;}
}
@media screen and (max-width:768px) {
	.jouzan {
		height: auto;
	}
}

.normal {
    margin: 0;
    background-color: #fff;
    height: 634px;
	position: absolute;
    top: 0;
    width: 100%;
}
@media screen and (max-width:1024px) {
	.normal {
		height: auto;
	}
}
@media screen and (max-width:768px) {
	.normal {
		position: unset;
	}
}

.torihikisaki_contents_txt_box {
    padding: 35px 45px 55px;
}
@media screen and (max-width:768px) {
	.torihikisaki_contents_txt_box {
		padding: 25px 25px;
	}
}

.torihikisaki_contents_txt_box_1 p {
	font-size: 14.5px;
	font-weight: 400;
	line-height: 1.7;
	margin: 30px 0 0;
}
@media screen and (max-width:768px) {
	.torihikisaki_contents_txt_box_1 p {
		font-size: 14px;
		margin: 20px 0 0;
	}
}


.torihikisaki_contents_txt_box_1 p.torihikisaki_contents_txt_box_title,
.torihikisaki_contents_txt_box_2 p.torihikisaki_contents_txt_box_title{
    font-size: 20px;
    font-weight: 500;
    color: #2567A7;
    border-bottom: 1px solid #B0B3B7;
    padding-bottom: 10px;
    margin: 0 0 30px;
}
@media screen and (max-width:768px) {
	.torihikisaki_contents_txt_box_1 p.torihikisaki_contents_txt_box_title, .torihikisaki_contents_txt_box_2 p.torihikisaki_contents_txt_box_title {
		font-size: 18px;
		padding-bottom: 7px;
		margin: 0 0 20px;
	}
}

.maker_list {
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
    font-size: 15px;
    line-height: 1.7;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em 1em;
}

.torihikisaki_contents_txt_box_2 {
    margin-top: 40px;
}
@media screen and (max-width:768px) {
	.torihikisaki_contents_txt_box_2 {
		margin-top: 25px;
	}
}

.box_2_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
@media only screen and (max-width: 1024px) {
	.box_2_wrap {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.5em;
	}
}

.box_2_wrap div {
	display: flex;
	flex-direction: column;
}

.box_2_wrap div ul {
	height: 36px;
	align-items: center;
}
@media only screen and (max-width: 1024px) {
	.box_2_wrap div ul {
		height: auto;
	}
}

.torihikisaki_contents_txt_box_2 p.box_2_list_title {
	margin: 0 0 0.5em;
	font-weight: 500;
    color: #2567A7;
}

ul.box_2_list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
    gap: 1em;
    align-items: flex-end;
}
@media screen and (max-width:1024px) {
	ul.box_2_list {
		flex-wrap: wrap;
		flex-direction: column;
		gap: 10px;
		align-items: stretch;
	}
	
	ul.box_2_list li {
		/*width: calc(50% - 5px);*/
		width: 100%;
	}
}

li.box_2_list_shinmaywa img{
    width: 167px;
	max-width: 100%;
}
@media screen and (max-width:768px) {
	li.box_2_list_shinmaywa img{
		max-width: 167px;
		width: 100%;
	}
	
	li.box_2_list_anlet img {
		max-width: 235px;
		width: 100%;
	}
}

li.box_2_list_shinmyouwa img{
    width: 142px;
}

li.box_2_list_commuter {
	font-size: 17px;
	font-weight: bold;
}

.torihikisaki_contents_txt_box_2 p {
    font-size: 15px;
    line-height: 2.1;
    margin: 30px 0 0;
    text-align: justify;
}
@media screen and (max-width:768px) {
	.torihikisaki_contents_txt_box_2 p {
		font-size: 14px;
		margin: 20px 0 0;
		line-height: 1.7;
	}
}

/*--------------------------------------------------

  会社概要

--------------------------------------------------*/
.company_contents {
	width: 1000px;
	margin: 80px auto 0;
}
@media screen and (max-width:1024px) {
	.company_contents {
		width: 100%;
		margin: 280px auto 0;
	}

	 .company_contents img {
		width: 100%;
	}
}
@media screen and (max-width:768px) {	
	 .company_contents {
		width: 100%;
		margin: 70px auto 0;
	}	
}

.company_contents h3 {
	margin: 0 0 50px;
	text-align: center;
}
@media screen and (max-width:768px) {
	.company_contents h3 {
		margin: 0 0 40px;
	}
}

.company_contents h3 img {
	width: 258px;
	max-width: 100%;
}
@media screen and (max-width:767px) {
	.company_contents h3 img {
		width: 40%;
	}
}

.company_contents h3 span {
	display: block;
	font-size: 17px;
	font-weight: 500;
	color: #2567a7;
	margin-top: 20px;
}
@media screen and (max-width:768px) {
	 .company_contents h3 span {
		font-size: 15px;
		margin-top: 15px;
	}
}


/* テーブル
--------------------------------------------------*/
.company_contents table {
    margin-top: 80px;
    width: 100%;
}
@media screen and (max-width:1024px) {
	.company_contents table  {
		width: 90%;
		margin: 80px auto 0;
	}
}
@media screen and (max-width:768px) {
	.company_contents table {
		border-top: unset!important;
		margin-top: 40px;
		width: 100%;
	}
	
	 .company_contents_table {
    padding: 0 20px;
}
	
}

.company_contents table , td, th {
	border-top: 1px solid #b0b3b7;
	border-collapse: collapse;
}


.company_contents tr:last-of-type {
	border-bottom: 1px solid #b0b3b7;
}

.company_contents td, th {
	padding: 20px 0;
	font-size: 15px;
	line-height: 1.75;
}
@media screen and (max-width:768px) {
	.company_contents td, th {
		display: block;
		font-size: 14px;
		padding: 10px 0;
	}
}

.company_contents td {
    padding-left: 48px;
	font-weight: 400;
}
@media screen and (max-width:768px) {
	.company_contents td {
		padding-left: 20px;
	}
}

.company_contents th {
	background-color: #eff0f1;
	width: 168px;
	font-weight: 500;
}
@media screen and (max-width:768px) {
	.company_contents th {
		width: unset;
		text-align: left;
		padding-left: 20px;
	}
}

.company_contents td span {
	display: block;
}

.company_contents td span:nth-child(2) {
    padding: 25px 0;
}
@media screen and (max-width:768px) {
	.company_contents td span:nth-child(2) {
		padding: 15px 0;
	}
}

.company_contents td span.flex {
	display: flex;
    align-items: center;
    margin-bottom: 10px;
}


/* Googleマップ
--------------------------------------------------*/
.company_contents_map {
    margin-top: 78px;
}
@media screen and (max-width:768px) {
	.company_contents_map {
		margin-top: 40px;
	}
}

.company_contents_map iframe {
	width: 100%;
	height: 420px;
}
@media screen and (max-width:768px) {
	.company_contents_map iframe {
		height: 250px;
	}
}


/*--------------------------------------------------

  お問い合わせ

--------------------------------------------------*/
.contact_contents {
    height: 420px;
    margin-top: 95px;
	background-image: url("../img/top_back_contact.jpg");
	background-size: cover;
    background-repeat: no-repeat;
}
@media screen and (max-width:1024px) {
	.contact_contents {
    	height: auto;
		background-position: center;
	}
}

.contact_contents h3 {
	text-align: center;
	margin: 0;
	padding-top: 58px;
}
@media screen and (max-width:768px) {
	.contact_contents h3 {
		padding-top: 25px;
	}
}

.contact_contents h3 img {
	width: 242px;
	max-width: 100%;
}
@media screen and (max-width:767px) {
	.contact_contents h3 img {
		width: 40%;
	}
}

.contact_contents h3 span {
	display: block;
	margin-top: 20px;
	color: #fff;
	font-size: 17px;
	font-weight: 500;
}
@media screen and (max-width:768px) {
	.contact_contents h3 span {
		font-size: 15px;
		margin-top: 15px;
	}
}

ul.contact_contents_list {
	list-style: none;
	margin: 63px auto 0;
	padding: 0;
	width: 1000px;
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width:1024px) {	
	 ul.contact_contents_list {
		width: 65%;
		flex-direction: column;
		margin: 30px auto 0;
		gap: 20px;
		padding-bottom: 30px;
	}
}
@media screen and (max-width:768px) {	
	 ul.contact_contents_list {
		 width: 80%;}
}

ul.contact_contents_list li {
    background-color: rgba(255,255,255,0.85);
    flex-basis: 318px;
	height: 120px;
	display: flex;
    flex-direction: column;
    /*justify-content: center;*/
}
@media screen and (max-width:1024px) {
	ul.contact_contents_list li {
		flex-basis: 100%;
		height: auto;
	}
}

ul.contact_contents_list li div {
	height: 72px;
	margin-top: 33px;
}
@media screen and (max-width:1024px) {
	ul.contact_contents_list li div {
		height: auto;
		padding: 15px 0;
	}
}

ul.contact_contents_list li div:last-of-type {
	/*height: 72px;*/
	margin-top: 23px;
}
@media screen and (max-width:1024px) {
	ul.contact_contents_list li div:last-of-type {
		margin-top: 0;
	}
}

ul.contact_contents_list li div p {
	margin: 0;
	text-align: center;
}



ul.contact_contents_list li div p:first-of-type {
	font-size: 15px;
	font-weight: 500;
}

li.contact_contents_list_tel div p:nth-child(1){
    margin-top: 4px;
}
@media screen and (max-width:1024px) {
	li.contact_contents_list_tel div p:nth-child(1){
		margin-top: 0;
	}
}

li.contact_contents_list_tel div p:nth-child(2){
    margin-top: 20px;
}
@media screen and (max-width:768px) {
	li.contact_contents_list_tel div p:nth-child(2){
		margin-top: 10px;
	}
}

li.contact_contents_list_tel div p a img {
	width: 243px;
	max-width: 100%;
}
@media screen and (max-width:1024px) {
	li.contact_contents_list_tel div p a img {
		width: 50%;
	}
}
@media screen and (max-width:768px) {
	li.contact_contents_list_tel div p a img {
		width: 60%;
	}
}

li.contact_contents_list_fax div p:nth-child(1) {
    margin-top: 4px;
}
@media screen and (max-width:1024px) {
	li.contact_contents_list_fax div p:nth-child(1) {
		margin-top: 0;
	}
}


li.contact_contents_list_fax div p:nth-child(2){
    margin-top: 20px;
}
@media screen and (max-width:768px) {
	li.contact_contents_list_fax div p:nth-child(2){
		margin-top:10px;
	}
}

li.contact_contents_list_fax div p img {
	width: 252px;
	max-width: 100%;
}
@media screen and (max-width:1024px) {
	li.contact_contents_list_fax div p img {
		width: 50%;
	}
}
@media screen and (max-width:768px) {
	li.contact_contents_list_fax div p img {
		width: 60%;
	}
}

a.btn {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    display: block;
    width: 100%;
    max-width: 220px;
    text-align: center;
    background-color: #2567a7;
    border-radius: 2em;
    padding: 13px 0;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1;
}
@media screen and (max-width:1024px) {
	a.btn {
	    padding: 12px 0;
		font-size: 14px;
	}
}

li.contact_contents_list_mail p:nth-child(2){
    margin-top: 12px;
}

li.contact_contents_list_mail a::before {
    content: "";
    display: inline-block;
    width: 19px;
    height: 15px;
    background: url("../img/icon_mail.svg") no-repeat;
    background-size: contain;
    margin-right: 15px;
    position: relative;
    top: 1px;
}

/*--------------------------------------------------

  採用情報

--------------------------------------------------*/
.recruit_contents {
	height: 230px;
	display: flex;
	background-image: url("../img/recruit_back3.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
@media screen and (max-width:1024px) {
	.recruit_contents {
		padding: 0 40px;
	}
}
@media screen and (max-width:768px) {
	.recruit_contents {
		height: auto;
		flex-direction: column;
		background-image: unset;
		/*background-color: #2567a7;*/
		padding: 0;
	}
}

.recruit_contents div.recruit_contents_title,
.recruit_contents div.recruit_contents_txt {
	flex-basis: 50%;
}
@media screen and (max-width:768px) {
	.recruit_contents div.recruit_contents_title{
	background-color: #2567a7;
	}
}

.recruit_contents div.recruit_contents_title {
	/*background: linear-gradient( 
		120deg,
		#2567a7 0%,
		#2567a7 83.7%,
		#eff0f1 16.3%,
		#eff0f1 100%
	);*/
	
	/*background-image: url("../img/recruit_back2.svg");
	background-repeat: no-repeat;
	background-size: cover;*/
	display: flex;
    flex-direction: column;
    /*align-items: flex-end;*/
}
@media screen and (max-width:768px) {
	.recruit_contents div.recruit_contents_title {
		align-items: center;
	}
}

.recruit_contents_title div.recruit_contents_title_1 {
	/*width: 500px;*/
	margin-top: 70px;
	/*background-color: #2567a7;*/
	padding-left: calc(100% - 500px);
}
@media screen and (max-width:768px) {
	.recruit_contents_title div.recruit_contents_title_1 {
		margin-top: 30px;
		padding-left:  0;
	}
}

.recruit_contents_title div.recruit_contents_title_1 h3 {
	margin: 0;
}
@media screen and (max-width:768px) {
	.recruit_contents_title div.recruit_contents_title_1 h3 {
		text-align: center;
		padding-bottom: 30px;
	}
}

.recruit_contents_title div.recruit_contents_title_1 h3 img {
	width: 233px;
	max-width: 100%;
}
@media screen and (max-width:767px) {
	.recruit_contents_title div.recruit_contents_title_1 h3 img {
		width: 50%;
	}
}

.recruit_contents_title div.recruit_contents_title_1 h3 span {
	display: block;
	margin-top: 20px;
	color: #fff;
	font-size: 17px;
	font-weight: 500;
}
@media screen and (max-width:768px) {
	.recruit_contents_title div.recruit_contents_title_1 h3 span {
		font-size: 15px;
    	margin-top: 15px;
	}
}

/*.recruit_contents_title div.recruit_contents_title_2 {
	width: 127px;
}
*/
.recruit_contents div.recruit_contents_txt {
	/*background-color: #eff0f1;*/
	background-color: #f2f2f2;
}

.recruit_contents_txt div {
	width: 100%;
	max-width: 100%;
	margin-top: 70px;
}
@media screen and (max-width:1024px) {
	.recruit_contents_txt div {
		width: auto;
		margin: 0 auto 30px;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}
@media screen and (max-width:768px) {
	.recruit_contents_txt div {
		width: 90%;
	}
}

.recruit_contents_txt div p {
	margin: 0 0 35px;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.75;
}
@media screen and (max-width:768px) {
	.recruit_contents_txt div p {
		margin: 30px 0 20px;
		font-size: 14px;
	}
}

.recruit_contents_txt div a {
    border-bottom: 1px solid #2567a7;
}

.recruit_contents_txt div a img {
	width: 302px;
	max-width: 100%;
	padding-bottom: 15px;
}
@media screen and (max-width:768px) {
	.recruit_contents_txt div a img {
		max-width: 302px;
		width: 100%;
	}
}

/*--------------------------------------------------

  footer

--------------------------------------------------*/
#footer {
	height: 50px;
	display: flex;
    justify-content: center;
    align-items: center;
}

.copylight {
	text-align: center;
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	color: #606870;
}



/*========= ページトップのためのCSS ===============*/
/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2567A7;
  border-radius: 100px;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  #page-top a {
    width: 50px;
    height: 50px;
  }
}

.Arrow-Top {
  border-top: solid 4px #fff;
  border-left: solid 4px #fff;
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  margin-top: 8px;
}

#page-top a:hover {
  opacity: 0.75;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
  margin: 0;
}

/*　上に上がる動き　*/

#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
