/* ---------------------------------------------------------------
	start max 700px
--------------------------------------------------------------- */


@media print,
screen and (max-width: 700px) {

	.sp_none {
		display: none;
	}


	/*------------ common ------------*/

	.col_breadcrumb {
		display: none;
	}

	.pagettl {
		font-size: 26px;
	}

	.pagettl:before {
		width: 72px;
		background-size: 72px auto;
	}

	.pagettl.action {
		font-size: min(26px, 5.2vw);
		line-height: 1.7;
	}

	.bg_pagettl {
		margin: 50px 0 4.5vw 0;
	}

	.mds1 {
		font-size: 22px;
	}

	.pagetop {
		width: 60px;
		padding-top: 60px;
		right: 20px;
		bottom: 20px;
	}

	.col_prepare {
		padding: 200px 0 0 0;
	}


	/*------------ header ------------*/

	#header {
		height: 50px;
		margin: 0;
		padding: 0 50px 0 0;
		background-color: #fff;
		box-sizing: border-box;
		display: flex;
		align-items: center;
		box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
		position: fixed;
		top: 0;
		left: 0;
		z-index: 10;
	}

	.logo_header {
		width: 62%;
		max-width: 276px;
		margin: 0 2% 0 0;
		padding: 0 0 0 10px;
	}

	ul.col_header_group {
		width: 30vw;
		min-width: 130px;
		margin: 0;
		padding: 0;
		flex-shrink: 1.5;
	}

	ul.col_header_group li {
		margin-bottom: 0;
	}

	ul.col_header_group li img {
		height: 6vw;
		max-height: 35px;
	}

	#navi {
		width: 50px;
		position: absolute;
		top: 0;
		right: 0;
	}

	#menubtn {
		width: 50px;
		height: 50px;
		margin: 0;
		padding: 0;
		position: relative;
		z-index: 0;
	}

	#menubtn span {
		width: 30px;
		height: 3px;
		margin: 0;
		padding: 0;
		background-color: #fff;
		display: inline-block;
		position: absolute;
		left: 10px;
	}

	#menubtn span:nth-child(1) {
		top: 13px;
	}

	#menubtn span:nth-child(2) {
		top: 24px;
	}

	#menubtn span:nth-child(3) {
		top: 35px;
	}

	#menubtn span:nth-of-type(1) {
		-webkit-animation: menu-bar01 .75s forwards;
		animation: menu-bar01 .75s forwards;
	}

	@-webkit-keyframes menu-bar01 {
		0% {
			-webkit-transform: translateY(11px) rotate(45deg);
		}

		50% {
			-webkit-transform: translateY(11px) rotate(0);
		}

		100% {
			-webkit-transform: translateY(0) rotate(0);
		}
	}

	@keyframes menu-bar01 {
		0% {
			transform: translateY(11px) rotate(45deg);
		}

		50% {
			transform: translateY(11px) rotate(0);
		}

		100% {
			transform: translateY(0) rotate(0);
		}
	}

	#menubtn span:nth-of-type(2) {
		transition: all .25s .25s;
		opacity: 1;
	}

	#menubtn span:nth-of-type(3) {
		-webkit-animation: menu-bar02 .75s forwards;
		animation: menu-bar02 .75s forwards;
	}

	@-webkit-keyframes menu-bar02 {
		0% {
			-webkit-transform: translateY(-11px) rotate(-45deg);
		}

		50% {
			-webkit-transform: translateY(-11px) rotate(0);
		}

		100% {
			-webkit-transform: translateY(0) rotate(0);
		}
	}

	@keyframes menu-bar02 {
		0% {
			transform: translateY(-11px) rotate(-45deg);
		}

		50% {
			transform: translateY(-11px) rotate(0);
		}

		100% {
			transform: translateY(0) rotate(0);
		}
	}

	#menubtn.active span:nth-of-type(1) {
		-webkit-animation: active-menu-bar01 .75s forwards;
		animation: active-menu-bar01 .75s forwards;
	}

	@-webkit-keyframes active-menu-bar01 {
		0% {
			-webkit-transform: translateY(0) rotate(0);
		}

		50% {
			-webkit-transform: translateY(11px) rotate(0);
		}

		100% {
			-webkit-transform: translateY(11px) rotate(45deg);
		}
	}

	@keyframes active-menu-bar01 {
		0% {
			transform: translateY(0) rotate(0);
		}

		50% {
			transform: translateY(11px) rotate(0);
		}

		100% {
			transform: translateY(11px) rotate(45deg);
		}
	}

	#menubtn.active span:nth-of-type(2) {
		opacity: 0;
	}

	#menubtn.active span:nth-of-type(3) {
		-webkit-animation: active-menu-bar03 .75s forwards;
		animation: active-menu-bar03 .75s forwards;
	}

	@-webkit-keyframes active-menu-bar03 {
		0% {
			-webkit-transform: translateY(0) rotate(0);
		}

		50% {
			-webkit-transform: translateY(-11px) rotate(0);
		}

		100% {
			-webkit-transform: translateY(-11px) rotate(-45deg);
		}
	}

	@keyframes active-menu-bar03 {
		0% {
			transform: translateY(0) rotate(0);
		}

		50% {
			transform: translateY(-11px) rotate(0);
		}

		100% {
			transform: translateY(-11px) rotate(-45deg);
		}
	}

	ul.col_navi {
		width: 100%;
		height: calc(100vh - 50px);
		margin: 0;
		padding: 0;
		background-color: rgba(114, 113, 113, 0.9);
		border-left: none;
		box-sizing: border-box;
		display: none;
		position: fixed;
		top: 50px;
		right: 0;
		z-index: 2;
		overflow-y: auto;
		overflow-x: hidden;
	}

	ul.col_navi li {
		border-right: none;
		border-bottom: solid 1px #fff;
		background-color: #e60039;
		display: block;
	}

	ul.col_navi li.col_closebtn {
		padding: 40px 0 30px;
		color: #fff;
		text-align: center;
		border: none;
		background-color: transparent;
	}

	ul.col_header_group li.btn_en {
		display: none;
	}

	ul.col_navi li.en {
		background-color: #0075c1;
	}

	.btn_close {
		width: 60px;
		height: 60px;
		margin: 0 auto 12px;
		padding: 0;
		background-color: #3e3a39;
		position: relative;
	}

	.btn_close span {
		width: 46px;
		height: 1px;
		margin: 0;
		padding: 0;
		background-color: #fff;
		position: absolute;
		top: 29px;
		left: 7px;
		transform: rotate(45deg);
	}

	.btn_close span:nth-child(2) {
		transform: rotate(-45deg);
	}


	ul.col_navi li a,
	ul.col_navi li span.navi {
		width: 100%;
		;
		height: auto;
		padding: 12px 10px 12px 15px;
		font-weight: normal;
		text-align: left;
		box-sizing: border-box;
		display: block;
		position: relative;
		z-index: 0;
	}

	ul.col_navi li.en a {
		text-align: center;
	}

	ul.col_navi li a:before {
		content: "";
		width: 8px;
		height: 8px;
		margin: -5px 0 0 0;
		padding: 0;
		border-right: solid 2px #fff;
		border-bottom: solid 2px #fff;
		position: absolute;
		top: 50%;
		left: 93.8%;
		transform: rotate(-45deg);
	}

	ul.col_navi li.en a:before {
		content: none;
	}

	ul.col_navi li.en a span {
		margin: 0;
		padding: 0 0 0 11px;
		display: inline-block;
		position: relative;
		z-index: 0;
	}

	ul.col_navi li.en a span:before {
		content: "";
		margin: -4px 0 0 0;
		padding: 0;
		border-left: solid 5px #fff;
		border-top: solid 4px transparent;
		border-bottom: solid 4px transparent;
		display: inline-block;
		position: absolute;
		top: 50%;
		left: 0;
	}

	ul.col_navi li span.navi:before {
		content: "\0FF0B";
		width: 20px;
		height: 20px;
		margin: -10px 0 0 0;
		padding: 0;
		color: #e60039;
		font-size: 13px;
		font-weight: bold;
		text-align: center;
		line-height: 20px;
		background-color: #fff;
		border-radius: 50%;
		-moz-border-radius: 50%;
		-webkit-border-radius: 50%;
		position: absolute;
		top: 50%;
		left: 93%;
		transition: all .3s;
		-moz-transition: all .3s;
		-webkit-transition: all .3s;
	}

	ul.col_navi li.active span.navi:before {
		content: "\02212";
	}

	ul.col_navi li a.sp_none {
		display: none;
	}

	ul.col_navi li ul.col_subnavi {
		border-left: none;
		position: relative;
		top: 0;
	}

	ul.col_navi li ul.col_subnavi li {
		border-bottom: none;
	}

	ul.col_navi li ul.col_subnavi li+li {
		border-top: solid 1px #aaa;
	}

	ul.col_navi li ul.col_subnavi li a {
		height: auto;
		padding: 12px 10px 12px 15px;
		text-align: left;
		color: #fff;
		font-size: 14px;
		background-color: #777;
		display: block;
	}

	ul.col_navi li ul.col_subnavi li a:before {
		border-right: solid 2px #FFF;
		border-bottom: solid 2px #FFF;
	}


	/*------------ footer ------------*/

	#footer {
		background-size: auto 150%;
	}

	.col_footer {
		padding: 7% 0;
	}

	.col_l_footer {
		width: 100%;
		float: none;
	}

	.logo_footer {
		max-width: 450px;
		margin: 0 auto 18px;
	}

	ul.list_foot_group li {
		width: 100%;
		text-align: center;
		float: none;
	}

	ul.list_foot_group li:nth-child(odd) {
		text-align: center;
		margin-right: 0;
	}

	.col_r_footer {
		display: none;
	}


	/* --------------- top --------------- */

	#mainimg {
		margin-top: 50px;
		height: 108.5vw;
	}

	.copy_mainimg div {
		transform: translateX(-20%);
		left: 0;
		will-change: transform;
	}

	.active .copy_mainimg div {
		transform: translateX(0%);
	}

	.bg_top1 {
		padding: 5% 0;
	}

	ul.tab_topnews li {
		width: 48.5%;
	}

	ul.tab_topnews li+li {
		margin-left: 3%;
	}

	.col_tabcont {
		padding: 5px 0 25px;
	}

	.col_tabcont dl {
		padding: 10px 15px;
		box-sizing: border-box;
		display: block;
	}

	.col_tabcont dl dt {
		width: 100%;
		margin: 0;
		padding: 0;
		display: block;
	}

	.col_tabcont dl dd {
		margin: 0;
		padding: 0;
		display: block;
	}

	a.btn_topnews {
		width: 80%;
		max-width: 250px;
		margin: 10px auto 0;
		padding: 8px 0;
		font-size: 14px;
		position: static;
	}

	.bg_topgreeting {
		padding: 7.5% 0 0;
		background-image: url(../img/top/sp/bg_topgreeting.jpg);
		background-size: cover;
	}

	.bg_topgreeting .col_top1 {
		padding-bottom: 50px;
	}

	.mds_topgreeting {
		width: 86.5%;
	}

	dl.txt_topgreeting {
		margin: 0;
	}

	dl.txt_topgreeting dt {
		width: 100%;
		font-size: 20px;
		display: block;
	}

	dl.txt_topgreeting dd {
		width: 100%;
		line-height: 1.8;
		box-sizing: border-box;
	}

	dl.txt_topgreeting dd p {
		margin-bottom: 50px;
	}

	.name_topgroup {
		width: 48%;
		max-width: 190px;
		margin: 0 0 35px 0;
		text-align: left;
		float: none;
	}

	.name_topgroup img {
		width: 100%;
		max-width: 180px;
	}

	a.btn_topgreeting {
		margin: 0 auto;
		position: relative;
		z-index: 1;
		float: none;
	}

	.img_topgreeting {
		width: 230px;
		z-index: 0;
		left: auto;
		right: 5%;
	}

	.bg_topgroup {
		padding: 8% 0;
		background-image: url(../img/top/sp/bg_topgroup.jpg);
		background-repeat: no-repeat;
		background-position: center top;
		background-size: cover;
	}

	.bg_topgroup:before {
		content: none;
	}

	.mds_topgroup {
		width: 95%;
		margin: 0 0 5%;
		float: none;
	}

	.img_topgroup {
		width: 84.1%;
		margin: 0 auto 5%;
		float: none;
	}

	dl.txt_topgroup {
		width: 100%;
		margin: 0;
		float: none;
	}

	dl.txt_topgroup dt {
		font-size: 20px;
	}

	.bg_topproduct {
		padding-bottom: 7%;
		background-image: none;
	}

	.txt_topproduct {
		width: 100%;
		min-height: auto;
		margin: 0 0 15px;
		font-size: 32px;
	}

	.mov_topproduct {
		width: 105%;
		position: relative;
		top: 0;
		right: auto;
		left: 0;
	}

	.img_topproduct {
		width: 100%;
		margin: 0;
		padding: 0;
		position: static;
	}

	.img_topproduct img {
		width: 110%;
		position: relative;
		top: 0;
		left: -5%;
		right: auto;
	}

	.bg_topbnr:before {
		top: 30%;
	}

	.col_topbnr {
		display: block;
	}

	.bnr_top {
		width: 100%;
	}

	.bnr_top+.bnr_top {
		margin-top: 3%;
	}

	.col_toprecruit {
		padding: 2%;
		background-size: auto 100%;
		background-position: right 0;
		display: block;
	}

	.img_l_toprecruit,
	.img_r_toprecruit {
		width: 50%;
		float: left;
	}

	.cont_toprecruit {
		width: 100%;
		margin: 0;
		padding: 10px 0 0 0;
		display: block;
		clear: both;
	}

	.cont_toprecruit dl dd {
		font-size: 14px;
	}

	a.btn_toprecruit {
		width: 100%;
		max-width: 400px;
	}





	/* --------------- contact --------------- */

	.bg_pagettl.contact {
		height: 102px;
		background-image: url(../img/contact/sp/bg_ttl.jpg);
		background-size: 100% auto;
	}

	p.note_contact1 {
		width: 100%;
		margin: 0 auto 3vw;
		text-align: left;
	}

	dl.list_contact {
		display: block;
	}

	dl.list_contact dt {
		width: 100%;
		margin: 0 0 3px 0;
		padding: 0 0 0 10px;
		display: block;
	}

	dl.list_contact dd {
		margin: 0;
		padding: 0;
		display: block;
	}

	dl.list_contact dd input {
		width: 100%;
		box-sizing: border-box;
	}

	dl.list_contact dd div.postcode {
		margin-left: 0;
	}

	dl.list_contact dd.radio_contact1 label {
		display: block;
	}

	dl.list_contact dd.radio_contact1 span {
		margin-right: 10px;
	}

	dl.list_contact dd textarea {
		width: 100%;
		box-sizing: border-box;
	}

	.btn_contact {
		padding: 8vw 0 6vw 0;
	}

	.btn_contact input {
		width: 60%;
	}

	.btn_contact input[name="submitBack"] {
		margin: 0 0 30px 0;
	}



	/* --------------- company --------------- */

	.bg_pagettl.company {
		height: 178px;
		background-image: url(../img/company/sp/bg_ttl.jpg);
		background-size: 720px auto;
	}

	.col_company1 {
		margin-bottom: 30px;
	}

	.tabbtn_company {
		border-bottom: none;
	}

	.tabbtn_company ul {
		width: 90%;
	}

	.tabbtn_company ul li {
		width: 49%;
		max-width: 100%;
		height: 52px;
		margin-right: 2%;
		margin-bottom: 8px;
		font-size: 16px;
		line-height: 20px;
	}

	.tabbtn_company ul li {
		background-image: url(../img/company/sp/bg_tab.png);
		background-repeat: no-repeat;
		background-size: 100% 100%;
	}

	.tabbtn_company ul li.active {
		background-image: url(../img/company/sp/bg_tab_on.png);
	}

	.tabbtn_company ul li img {
		display: none;
		opacity: 0;
	}

	.tabbtn_company ul li:nth-child(2n) {
		margin-right: 0;
	}

	.col_company_philosophy1 {
		padding: 60px 5% 50px;
	}

	.col_company_philosophy1.top {
		padding: 0 5% 35px;
	}

	.mds1.philosophy1 {
		margin-bottom: 50px;
	}

	.lead_company_philosophy1 {
		font-size: 18px;
		line-height: 27px;
	}

	ol.list_company_philosophy1 li {
		margin-bottom: 12px;
	}

	.lead_logo_company {
		font-size: 28px;
	}

	ul.col_logo_company {
		display: block;
	}

	ul.col_logo_company li {
		width: 100%;
		margin: 0 0 4% 0;
	}

	.img_logo_company {
		width: 32%;
		max-width: 180px;
	}

	.txt_logo_company {
		width: 60%;
		max-width: 200px;
		padding-left: 30px;
	}

	.txt_logo_company:before {
		height: 35%;
	}

	.tabbtn_company.btm {
		margin-bottom: 30px;
		border-top: none;
	}

	.col_company_group1,
	.col_company_group1:nth-of-type(3),
	.col_company_group1:nth-of-type(4) {
		padding: 10vw 0;
	}

	.col_company_group1 h4 {
		margin-bottom: 35px;
		font-size: 20px;
	}

	.col_company_group1 h4.company3,
	.col_company_group1 h4.company4 {
		margin-bottom: 25px;
	}

	.col_company_group1 h4 span {
		padding-left: 50px;
	}

	.col_company_group1 h4.company1 span,
	.col_company_group1 h4.company2 span,
	.col_company_group1 h4.company3 span,
	.col_company_group1 h4.company4 span {
		background-size: 35px auto;
	}

	.col_company_group1 dl {
		margin-bottom: 30px;
	}

	.col_company_group1 dl.top {
		margin-bottom: 45px;
	}

	.col_company_group1 dl dt {
		font-size: 16px;
	}

	.col_company_group1 dl dd p {
		margin-bottom: 20px;
		line-height: 23px;
	}

	.box_company_map {
		display: block;
	}

	.box_company_map .left {
		width: 100%;
		margin-bottom: 20px;
		display: block;
	}

	.box_company_map .right {
		width: 100%;
		margin: 0 0 5px 0;
		display: block;
	}

	.box_company_map #company2_kobe {
		min-height: auto;
	}

	.box_company_map .right iframe {
		height: 45vw;
	}

	.mds1.history1 {
		margin-bottom: 50px;
	}

	.box_company_history1 {
		width: 90%;
		margin-bottom: 60px;
		padding: 0;
	}

	.box_company_history1:before {
		content: none;
	}

	.box_company_history1 dl {
		width: 100%;
		margin: 0 0 25px 0 !important;
		padding: 0 !important;
		float: none;
	}

	.box_company_history1 dl:after {
		content: none !important;
	}

	.box_company_history1 dl dt {
		padding: 0 0 7px 5px !important;
		font-size: 17px;
	}

	.box_company_history1 dl dd {
		min-height: auto;
		padding: 0 15px !important;
	}

	dl.list_company_unit1 {
		margin-bottom: 45px;
	}

	dl.list_company_unit1 dt {
		width: 280px;
		height: 86px;
		padding-left: 20px;
		font-size: 20px;
		top: 48vw;
	}

	dl.list_company_unit1 dt .small {
		margin-top: 6px;
		font-size: 14px;
		line-height: 16px;
	}

	dl.list_company_unit1 dd {
		padding: 0;
	}

	dl.list_company_unit1:nth-of-type(odd) dd.img_company_unit1,
	dl.list_company_unit1:nth-of-type(even) dd.img_company_unit1 {
		margin: 0 0 65px 0;
	}

	dl.list_company_unit1:nth-of-type(odd) dd.img_company_unit1 {
		padding-right: 5%;
	}

	dl.list_company_unit1:nth-of-type(even) dd.img_company_unit1 {
		padding-left: 5%;
	}

	dl.list_company_unit1 dd.img_company_unit1 img {
		width: 100%;
		height: auto;
	}

	dl.list_company_unit1 dd.txt_company_unit1 {
		padding: 0 5%;
		word-wrap: break-word;
	}

	dl.list_company_unit1:nth-of-type(even) dd.txt_company_unit1 {
		margin: 0;
	}

	.col_company_unit1:nth-child(even) {
		margin-bottom: 30px;
		padding: 70px 0 0 0;
	}

	.col_company_unit1.btm {
		padding-top: 5%;
		margin-bottom: 13%;
	}

	.col_figure_group {
		width: 100%;
		padding: 2% 2% 11% 5%;
		box-sizing: border-box;
	}

	.col_figure_group img {
		width: 800px;
	}

	.tbl_company1 {
		width: 90%;
		margin-bottom: 30px;
		padding: 0;
	}

	.tbl_company1 th {
		width: auto;
		padding: 8px 0 0 0;
		font-size: 15px;
		display: block;
	}

	.tbl_company1 td {
		padding: 0 0 15px 0;
		display: block;
	}

	.tbl_company1 tr.noitem td {
		line-height: 0;
	}

	.col_company_unit1 .col_prepare {
		height: 300px;
		padding: 80px 0 0 0;
	}



	/* --------------- company_story --------------- */

	.bg_pagettl.story {
		height: 130px;
		margin-bottom: 0;
		background-image: url(../img/company/story/sp/bg_ttl.jpg);
		background-position: center;
		background-size: 100% auto;
	}

	#subcontent.story {
		width: 100%;
		margin: 0;
		background-image:
			url(../img/company/story/sp/bg_col1.jpg),
			url(../img/company/story/sp/bg_col2.jpg);
		background-repeat: no-repeat, no-repeat;
		background-position: center top, center bottom;
		background-size: 100% auto, 100% auto;
	}

	.col_story1 {
		margin: 0 0 10px 0;
		padding: 0 0 60px 0;
		background-image: url(../img/company/story/sp/bg_col2.jpg);
		background-repeat: no-repeat;
		background-position: center bottom;
		background-size: 100% auto;
	}

	.mds_story1 {
		margin: 0 0 35px 0;
		padding: 50px 0 0 0;
		text-align: center;
	}

	.mds_story1 h2 {
		margin: 0 0 5px 0;
		font-size: 37px;
	}

	.mds_story1 img {
		width: 195px;
	}

	.lead_story1 h3,
	.lead_story2 h3 {
		margin: 0 0 15px 0;
		padding: 0 0 15px 0;
		font-size: 18px;
		text-align: center;
		border-bottom: solid 3px #efefef;
	}

	.lead_story1 h3:after,
	.lead_story2 h3:after {
		left: 0;
		right: 0;
		bottom: -3px;
		width: 20%;
		margin: 0 auto;
		border-bottom: 3px solid #00aa71;
	}

	.bgimg_story1 {
		width: 70%;
		margin: 0 auto 20px auto;
		float: none;
	}

	.lead_story1 p,
	.lead_story2 p {
		display: block;
	}

	.bg_story2 {
		width: 100%;
		margin: 0;
		padding: 80px 0 60px 0;
		background-image: url(../img/company/story/sp/bg_col1.jpg);
		background-repeat: no-repeat;
		background-position: center top;
		background-size: 100% auto;
	}

	.bgimg_story2 {
		width: 70%;
		margin: 0 auto 20px auto;
		float: none;
	}



	/* --------------- csr --------------- */

	.bg_pagettl.csr {
		height: 130px;
		background-image: url(../img/csr/sp/bg_ttl.jpg);
		background-size: 720px auto;
	}

	.col_csr1 {
		padding: 40px 0;
	}

	.col_csr2 {
		padding: 60px 0 30px;
	}

	.mds1.csr2 {
		margin-bottom: 48px;
	}

	.col_csr3 {
		padding: 40px 0 60px;
	}

	.bg_csr3 {
		width: 88%;
		margin-left: 12%;
		margin-bottom: -3%;
	}

	.mds_policy1,
	.mds_policy1.right {
		width: 86%;
		margin-bottom: 20px;
		margin-left: 5%;
		padding-left: 40px;
		font-size: 20px;
		line-height: 50px;
		float: none;
	}

	.mds_policy1:before {
		height: 36px;
		top: 7px;
	}

	.mds_policy1:after {
		content: none;
	}

	.mds_policy1.right:after {
		content: none;
	}

	dl.list_policy2 {
		width: 90%;
		min-height: auto;
		margin-bottom: 15px;
		display: block;
	}

	dl.list_policy2.btm1 {
		margin-bottom: 40px;
	}

	dl.list_policy2 dt,
	dl.list_policy2.quality dt {
		width: auto;
		padding: 5px 0;
		font-size: 18px;
		border-bottom-width: 1px;
		display: block;
	}

	dl.list_policy2 dd {
		padding: 8px 0;
		border-bottom: none
	}

	dl.list_policy2.btm2 {
		margin-bottom: 60px;
	}

	.box_csr_for dl {
		width: 100%;
		margin-bottom: 50px;
	}

	.box_csr_for dl:last-child {
		margin-bottom: 0;
	}

	.box_csr_for dl dt {
		width: 86%;
		margin-bottom: 20px;
		margin-left: 5%;
		padding-left: 40px;
		font-size: 20px;
		line-height: 50px;
	}

	.box_csr_for dl dt:before {
		height: 36px;
		top: 7px;
	}

	.box_csr_for dl dt:after {
		content: none;
	}

	.box_csr_for dl dd {
		padding: 0 5%;
	}


	/* --------------- effort --------------- */

	.bg_pagettl.effort {
		height: 130px;
		background-image: url(../img/effort/sp/bg_ttl.jpg);
		background-size: 720px auto;
	}

	ul.pagenavi_effort {
		padding: 0 5% 18px;
	}

	ul.pagenavi_effort li a {
		padding: 0 0 0 20px;
		font-size: 14px;
		font-weight: 500;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

	ul.pagenavi_effort li span:before {
		width: 8px;
		height: 8px;
		top: 5px;
		left: -20px;
	}

	.col_effort1 {
		padding: 50px 0 25px;
	}

	.inner_effort1 {
		padding: 0;
	}

	.mds1.effort1 {
		margin-bottom: 40px;
	}

	.txt_effort1 {
		margin-bottom: 20px;
	}

	.box_effort7s {
		width: auto;
		margin-bottom: 35px;
	}

	ul.item_effort7s {
		line-height: 0;
	}

	ul.item_effort7s li {
		width: 88px;
		height: 88px;
		font-size: 16px;
	}

	.mds_effort1 {
		margin-bottom: 25px;
	}

	.mds_effort1 h3 {
		width: 120px;
		height: 69px;
		font-size: 16px;
		line-height: 50px;
	}

	.mds_effort1 h3:before {
		border-width: 69px 60px 0 60px;
	}

	.mds_effort1:before {
		width: 90%;
		margin: auto;
		left: 0;
		right: 0;
		background-color: #9fa0a0;
	}

	.wrap_readmore_effort {
		position: relative;
		z-index: 0;
	}

	.readmore_effort {
		margin: auto;
		padding-top: 10vh;
		display: block;
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 1;
		background: -webkit-linear-gradient(top, rgba(244, 244, 244, 0) 0%, rgba(244, 244, 244, 0.9) 50%, rgba(244, 244, 244, 0.9) 50%, #f4f4f4 100%);
		background: linear-gradient(top, rgba(244, 244, 244, 0) 0%, rgba(244, 244, 244, 0.9) 50%, rgba(244, 244, 244, 0.9) 50%, #f4f4f4 100%);

	}

	.btn_readmore_effort {
		width: 90%;
		margin: 0 auto;
		padding: 0 0 8px 0;
		color: #00aa71;
		font-size: 14px;
		font-weight: 500;
		line-height: 43px;
		text-align: center;
		border: solid 1px #00aa71;
		background-color: #fff;
	}

	.readmore_effort span {
		position: relative;
		z-index: 0;
	}

	.readmore_effort span:before {
		content: "";
		width: 0;
		height: 0;
		margin: auto;
		border-style: solid;
		border-width: 6px 7px 0 7px;
		border-color: #00c1a7 transparent transparent transparent;
		position: absolute;
		left: 0;
		right: 0;
		bottom: -12px;
	}

	.col_effort_hide {
		height: 60vh;
		padding: 0;
		position: relative;
		z-index: 0;
		overflow: hidden;
	}

	.col_effort_hide.is-hide:before {
		content: "";
		width: 100%;
		height: 35vw;
		display: block;
		position: absolute;
		bottom: 0;
		left: 0;
	}

	.list_effort7s {
		margin-bottom: 40px;
		padding: 0 5%;
	}

	.list_effort7s dl dd h4 {
		font-size: 17px;
	}

	.img_effort7s {
		margin-bottom: 60px;
	}

	.img_effort7s dl {
		width: 48%;
		max-width: 100%;
		margin-right: 4%;
		margin-bottom: 15px;
	}

	.circle_effort7s dl:before {
		width: 56px;
		height: 56px;
		top: 26px;
		left: 26px;
	}

	.img_effort7s dl:nth-child(3n) {
		margin-right: 4%;
	}

	.img_effort7s dl:nth-child(2n) {
		margin-right: 0;
	}

	.img_effort7s dl dt {
		margin-bottom: 5px;
	}

	.mds_effort1.effect {
		margin-bottom: 30px;
	}

	.circle_effort7s {
		width: auto
	}

	.circle_effort7s dl,
	.circle_effort7s dl:last-child {
		width: 380px;
		height: 380px;
		margin: 0 auto 24px;
		padding-top: 122px;
		float: none;
	}

	.circle_effort7s dl:last-child {
		margin-bottom: 10vw;
	}

	.circle_effort7s dl dd {
		font-size: inherit;
		line-height: inherit;
	}

	.circle_effort7s dl:nth-child(2) dd .sp_none {
		display: block;
	}

	.circle_effort7s dl dt {
		margin-bottom: 34px;
		font-size: 22px;
	}

	.txt_effort2 {
		margin-bottom: 25px;
		padding: 0 5%;
		text-align: left;
	}

	.lead_effort1 {
		padding: 0 5%;
	}

	.col_effort2 {
		padding: 60px 0 30px;
	}

	.inner_effort2 {
		padding: 0;
		border: none;
	}

	.readmore_effort.smile {
		background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.9) 50%, #fff 100%);
		background: linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.9) 50%, #fff 100%);
	}

	.col_effort_hide.smile {
		height: 15vh;
	}

	.img_effort_smile {
		width: 76%;
		margin-bottom: 4%;
	}

	.img_effort_smile img {
		width: 43%;
		margin-bottom: 7%;
		margin-right: 14%;
	}

	.img_effort_smile img:nth-child(even),
	.img_effort_smile img:last-child {
		margin-right: 0;
	}

	.catch_effort1 {
		margin-bottom: 35px;
		font-size: 22px;
		font-weight: 600;
		line-height: 32px;
	}

	.list_effort_smile {
		padding: 0 5%;
	}

	.list_effort_smile dl {
		margin-bottom: 32px;
	}

	.list_effort_smile dl dt {
		width: 50px;
	}

	.list_effort_smile dl dt img {
		width: 36px;
	}

	.list_effort_smile dl dd h4 {
		font-size: 18px;
		line-height: 23px;
	}

	.col_effort_hide.smile {
		padding-bottom: 20px;
	}

	.col_effort_hide.smile.is-hide {
		height: 25vh;
	}

	.col_effort_hide.smile.is-hide:before {
		height: 20vh;
	}

	.col_effort3 {
		padding: 50px 0;
	}

	.col_effort_club {
		margin-top: -20px;
	}

	.col_effort_club dl,
	.col_effort_club dl.fleft,
	.col_effort_club dl.fright {
		width: 100%;
		max-width: 100%;
	}

	.col_effort_club dl.fleft {
		margin-bottom: 2%;
	}

	.col_effort_club dl dt {
		width: 50%;
		min-width: 200px;
		margin: auto;
		font-size: 16px;
		line-height: 52px;
		background-size: 100% 100%;
		bottom: -32px;
		left: 0;
		right: 0;
	}

	.col_effort_club img:nth-child(2),
	.col_effort_club img:nth-child(3) {
		max-width: 306px;
	}


	/* --------------- sustainability --------------- */

	.bg_pagettl.sustainability {
		height: 130px;
		background-image: url(../img/csr/sp/bg_ttl.jpg);
		background-size: 720px auto;
	}

	.col_sustainability1 {
		margin: 0 auto 12%;
		padding: 4% 0 0;
	}

	.col_sustainability1 .mds1 {
		margin-bottom: calc(22px + 9%);
	}

	.cont_logo_sdgs {
		margin: 0 auto 22px;
		display: block;
	}

	.cont_logo_sdgs .logo {
		width: 100%;
		margin: 0 0 5%;
	}

	.cont_logo_sdgs ul.list_logo_sdgs {
		width: 100%;
		justify-content: center;
	}

	.col_sustainability2 {
		padding: 13vw 0;
	}

	.col_sustainability2 .mds1 {
		margin-bottom: calc(22px + 10vw);
	}

	.col_activities {
		margin: 0 auto 9vw;
		display: block;
	}

	.col_activities .img {
		width: 100%;
		max-width: 100%;
	}

	.col_activities .img::before {
		top: min(calc(7.27vw + 30px), 80px);
		left: auto;
		right: 29.23%;
	}

	.col_activities.social .img::before {
		left: 29.23%;
		right: auto;
	}

	.col_activities .cont {
		width: 100%;
		max-width: 100%;
		position: relative;
	}

	.col_activities.social .cont {
		max-width: 100%;
	}

	.col_activities .cont .mds {
		margin: 0 0 15px;
		padding: 15px 0 0;
	}

	.col_activities.environment .cont .mds,
	.col_activities.governance .cont .mds {
		color: #fff;
		border-bottom: none;
	}

	.col_activities.social .cont .mds {
		margin: 0 0 15px;
		padding: 15px 0 0;
		color: #fff;
		border-bottom: none;
	}

	.col_activities .cont .mds .jp {
		font-size: 6.66vw;
	}

	.col_activities.social .cont .mds .jp {
		margin: 0 0.5em 0 0;
		order: 0;
	}

	.col_activities.environment .cont .mds .en {
		width: 22vw;
	}

	.col_activities.social .cont .mds .en {
		width: 9.24vw;
	}

	.col_activities.governance .cont .mds .en {
		width: 17.156vw;
	}

	.col_activities .list_link_activities {
		width: 96%;
		margin: 0 0 0 auto;
		padding: 4% 0;
	}

	.col_activities.environment .list_link_activities {
		border-left: solid 1px #00aa71;
	}

	.col_activities.social .list_link_activities {
		margin: 0;
		padding: 4% 6% 4% 0;
		border-right: solid 1px #e972ab;
	}

	.col_activities.governance .list_link_activities {
		border-left: solid 1px #0075c2;
	}

	.col_activities .list_link_activities a {
		width: 82%;
		margin: 0 auto 6px;
		font-size: min(4.1vw, 15px);
	}

	.col_activities .list_link_activities a::before {
		width: 3.33vw;
		max-width: 14px;
		height: 3.33vw;
		max-height: 14px;
		left: 2.85vw;
	}

	.col_activities .list_link_activities a::after {
		left: min(calc(3vw + 4.5px), calc(3vw + (3.33vw - 5px)/2));
	}

	/* --------------- common - sustainability --------------- */

	.wrap_sustainability #main {
		width: 100%;
	}

	.col_ttl_sustainability {
		width: 92%;
		margin: 0 auto 4.5vw;
	}

	.col_anchor_sustainability {
		width: 92%;
		margin: 0 auto min(40px, 10.4vw);
	}

	.col_anchor_sustainability a {
		width: 49%;
		min-height: 3em;
		margin: 0 2% 2% 0;
		padding: 0.2em 10px 0.2em 28px;
	}

	.col_anchor_sustainability a:nth-child(even) {
		margin-right: 0;
	}

	.col_anchor_sustainability a::before {
		left: 12px;
	}

	.environment .col_anchor_sustainability a {
		color: #00aa71;
		background-color: #fff;
		background-image: none;
		border: solid 1px #00aa71;
	}

	.environment .col_anchor_sustainability a::before {
		border-right-color: #00aa71;
		border-bottom-color: #00aa71;
	}

	.social .col_anchor_sustainability a {
		color: #e972ab;
		background-color: #fff;
		background-image: none;
		border: solid 1px #e972ab;
	}

	.social .col_anchor_sustainability a::before {
		border-right-color: #e972ab;
		border-bottom-color: #e972ab;
	}

	.governance .col_anchor_sustainability a {
		color: #0075c2;
		background-color: #fff;
		background-image: none;
		border: solid 1px #0075c2;
	}

	.governance .col_anchor_sustainability a::before {
		border-right-color: #0075c2;
		border-bottom-color: #0075c2;
	}

	.col_sustainability_d {
		margin: 0 0 60px;
	}

	.mds_sustainability_d .mds {
		width: 100%;
		margin: 0;
		padding: 0.5em 5px 0.5em 32px;
		transform: none;
	}

	.environment .mds_sustainability_d .mds,
	.social .mds_sustainability_d .mds,
	.governance .mds_sustainability_d .mds {
		background-color: unset;
	}

	.mds_sustainability_d .mds::after {
		content: none;
	}

	.mds_sustainability_d .img {
		width: 100%;
		height: 100%;
		max-width: unset;
	}

	.mds_sustainability_d .img img.w100 {
		height: 100%;
		object-fit: cover;
	}

	.cont_sustainability_d {
		width: 92%;
		margin: 0 auto 40px;
	}

	.cont_sustainability_d .submds span {
		padding: 0 0 14px;
	}

	.cont_sustainability_d .cont {
		padding: 0;
	}

	.cont_chart_iso .box {
		margin: 0 auto 4.28vw;
		font-size: 3.5vw;
	}

	.cont_chart_iso .box::before {
		height: calc(4.28vw + 1px);
	}

	.cont_chart_iso .double {
		margin: 0 0 3.42vw;
	}

	.cont_chart_iso .double::before {
		height: calc(100% + 3.42vw + 1px);
	}

	.cont_chart_iso .double .box {
		width: 44%;
	}

	.cont_chart_iso .double .box:first-child {
		margin-right: 12%;
	}

	.cont_chart_iso .double .box:first-child::before {
		width: calc(27.27% + 2px);
	}

	.cont_chart_iso .area {
		padding: 3.42vw 0 0;
	}

	.cont_chart_iso .area dl::before {
		height: 3.42vw;
	}

	.cont_chart_iso .area dl dt {
		font-size: 3.5vw;
	}

	.cont_chart_iso .area dl dd {
		height: calc(100% - 11.83vw);
		font-size: min(2.8vw, 15px);
	}

	.cont_sustainability_d table.tbl_iso th {
		width: 80px;
		padding: 0.8em 5px;
	}

	.cont_sustainability_d table.tbl_iso td {
		width: calc(100% - 80px);
		padding: 0.8em 1.5em;
	}

	.cont_list_environment dl {
		margin: 0 0 2em;
		display: block;
	}

	.cont_list_environment dl dt {
		width: 100%;
		padding: 0;
		text-align: left;
		background: none;
		border-bottom: none;
		display: block;
	}

	.cont_list_environment dl dd {
		width: 100%;
		min-height: unset;
		padding: 0;
		border-bottom: none;
		display: block;
	}


	/* --------------- material - sustainability --------------- */

	.material .col_anchor_sustainability a {
		width: 100%;
		max-width: 100%;
		margin: 0 0 2%;
	}

	.material .col_sustainability_d {
		margin: 0 0 80px;
	}

	.material .cont_sustainability_d {
		margin: 0 auto 50px;
	}


	/* --------------- climate - sustainability --------------- */

	.climate .col_ttl_sustainability {
		margin: 0 auto min(10vw, 40px);
	}


	/* --------------- quality - sustainability --------------- */

	p.lead_quality1 {
		margin: 0 0 1.5em;
	}

	ol.list_num_quality1 {
		margin: 0 0 60px 0;
	}

	ol.list_num_quality1 li {
		margin: 0 0 1.5em;
	}

	ol.list_num_quality1 li .indent1 {
		margin: 0 0 1em;
	}

	ol.list_num_quality1 li .indent1:last-child {
		margin-bottom: 0;
	}

	/* --------------- rights - sustainability --------------- */
	p.lead_quality1 {
		margin: 0 0 1.5em;
	}

	/* --------------- education - sustainability --------------- */
	p.lead_education1 {
		margin: 0 0 1.5em;
	}

	/* --------------- diversity - sustainability --------------- */
	p.lead_diversity1 {
		margin: 0 0 1.5em;
	}
	.diversity .col_anchor_sustainability a {
    width: 100%;
	margin: 0 0 2% 0;
}
	/* --------------- safety - sustainability --------------- */
	p.lead_safety1 {
		margin: 0 0 1.5em;
	}

	.cont_chart_safe {
	margin: 0 0 60px 0;
	padding: 0;
}

	.cont_chart_safe .box {
		margin: 0 auto 4.28vw;
		font-size: 3.5vw;
	}

	.cont_chart_safe .box::before {
		height: calc(4.28vw + 1px);
	}

	.cont_chart_safe .double {
		margin: 0 0 3.42vw;
	}

	.cont_chart_safe .double::before {
		height: calc(100% + 3.42vw + 1px);
	}

	.cont_chart_safe .double .box {
		width: 44%;
	}

	.cont_chart_safe .double .box:first-child {
		margin-right: 12%;
	}

	.cont_chart_safe .double .box:first-child::before {
		width: calc(27.27% + 2px);
	}

	.cont_chart_safe .area {
		padding: 3.42vw 0 0;
	}

	.cont_chart_safe .area .bot_box::before {
		height: 3.42vw;
	}

	.cont_chart_safe .area .bot_box span.name{
		/* height: calc(100% - 11.83vw); */
		font-size: min(2.8vw, 15px);
		padding: 3.7vw 0;
	}

	/* --------------- provide - sustainability --------------- */
	p.lead_provide1 {
		margin: 0 0 1.5em;
	}

	/* --------------- governance - sustainability --------------- */

	#governance1 .mds_sustainability_d, #governance2 .mds_sustainability_d {
    	margin: 0 0 25px;
	}

	#governance1.col_sustainability_d {
    	margin: 0px 0 60px;
	}

	#governance2 .cont_sustainability_d {
    	width: 92%;
        margin: 0 auto 40px;
	}

	p.lead_governance1 {
		margin: 0 0 1.5em;
	}

	.governance .col_anchor_sustainability a {
    width: 100%;
	margin-right: 0;
}

	.flex_img{
	width: 100%;
	display:block;
}

.flex_img .img1,
.flex_img .img2{
	max-width: 518px;
	width:100%;
}

.flex_img .img1{
	margin: 0 0 12px 0;
}


/* --------------- news --------------- */

	.bg_pagettl.news {
		height: 102px;
		background-image: url(../img/news/sp/bg_ttl.jpg);
		background-size: 100% auto;
	}

	.col_news1 {
		margin: 0 auto 40px;
	}

	dl.list_news1 {
		padding: 20px 0;
	}

	dl.list_news1 dd:last-child {
		width: 80%;
	}

	dl.list_news1.noimg dd {
		width: 95%;
	}



	/* --------------- rnews --------------- */

	.bg_pagettl.rnews {
		height: 102px;
		background-image: url(../img/news/sp/bg_ttl.jpg);
		background-size: 100% auto;
	}

	.bg_pagettl.rnews .pagettl {
		font-size: 23px;
	}



	/* --------------- advantage --------------- */

	.bg_pagettl.advantage {
		height: 130px;
		background-image: url(../img/advantage/sp/bg_ttl.jpg);
		background-size: 720px auto;
	}

	.col_advantage1 {
		margin: 90px 0 0 0;
		padding: 130px 0 40px 0;
	}

	.catch_advantage1 {
		margin: 25px 5% 0;
		font-size: 17px;
		line-height: 28px;
	}

	.img_advantage1 {
		width: 150px;
		top: -64px;
	}

	.mds_advantage1 {
		top: -25px;
		left: 15px;
	}

	.mds_advantage1 img {
		width: auto;
		height: 32px;
	}

	.img_advantage2,
	.col_advantage5 .img_advantage2 {
		margin: 0 auto 25px;
	}

	.lead_advantage1 {
		width: 90%;
		margin: 0 auto 35px auto;
		padding: 0 0 30px 0;
	}

	.lead_advantage2 {
		width: 90%;
		margin: 0 auto 30px auto;
		padding: 0;
	}

	.img_advantage3 {
		width: 90%;
		margin: 0 auto 30px auto;
	}

	.mds_advantage2 {
		margin: 0 auto 30px;
		font-size: 19px;
	}

	.mds_advantage2:before {
		width: 25px;
		border-bottom: solid 4px #00aa71;
		bottom: -13px;
	}

	.col_advantage3 {
		width: 100%;
		margin: 0 0 20px 0;
		padding: 35px 25px 25px 25px;
		border: 1px solid #00aa71;
		float: none;
	}

	.col_advantage3:last-child {
		margin: 0;
	}

	.mds_advantage3 {
		margin: 0 auto 25px;
		font-size: 19px;
	}

	.mds_advantage3:before {
		width: 23px;
		margin: 0 0 0 -18px;
		border-bottom: solid 3px #00aa71;
		bottom: -13px;
	}

	.lead_advantage3 {
		width: 90%;
		max-width: 780px;
		margin: 0 auto;
		padding: 0;
	}

	.col_advantage4 {
		margin: 0 auto;
		padding: 70px 0 50px;
	}

	.col_advantage5 {
		padding: 70px 0 40px;
	}



	/* --------------- company_world --------------- */

	.bg_pagettl.world {
		height: 130px;
		background-image: url(../img/company/world/sp/bg_ttl.jpg);
		background-position: center;
		background-size: 100% auto;
	}

	.col_world1 {
		width: 100%;
		height: auto;
		margin: 0 auto 30px;
	}

	.mov_imgworld {
		width: 100%;
		margin: 0 0 15px 0;
		padding: 0;
		text-align: right;
		position: static;
	}

	.mov_imgworld img {
		width: 95%;
	}

	.lead_world1 {
		width: 90%;
		margin: 0 auto;
		padding: 0;
		position: static;
	}

	.lead_world1 span {
		font-size: 22px;
	}

	.name_world {
		margin: 15px 0 0 0;
	}

	.name_world img {
		width: 175px;
	}

	.wrap_world2 {
		overflow-x: hidden;
		overflow-y: auto;
	}

	.col_world2 {
		margin: 0 auto 45px;
		padding: 0 0 90px 0;
	}

	.col_world2:before {
		width: 100px;
		left: auto;
		right: 10px;
		top: -200px;
	}

	.col_world2:after {
		width: 100px;
		height: 93px;
		margin: auto;
		right: 0;
		left: 0;
		bottom: -20px;
		background-size: 100% auto;
	}

	.col_btmlink {
		padding: 20px 0 50px 0;
	}

	.inner_btmlink a {
		width: 100%;
		margin: 0 0 20px 0;
		padding: 0;
		text-align: center;
		background-color: #FFF;
		box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.1);
		display: block;
		float: left;
		transition: all .4s ease;
	}



	/* --------------- company_story --------------- */

	.bg_pagettl.story {
		height: 130px;
		background-image: url(../img/company/story/sp/bg_ttl.jpg);
		background-position: center;
		background-size: 100% auto;
	}



	/* --------------- recruit_new --------------- */

	.bg_pagettl.recruit_new {
		height: 130px;
		background-image: url(../img/recruit_new/sp/bg_ttl.jpg);
		background-position: center;
		background-size: 100% auto;
	}

	.col_tabs {
		border-bottom: none;
	}

	ul.tabs_recruit {
		width: 92%;
		flex-wrap: wrap;
	}

	.col_tabs.btm {
		padding-top: 1.5%;
		border-top: none;
	}

	ul.tabs_recruit li,
	.col_tabs.btm ul.tabs_recruit li {
		width: 49%;
		margin-bottom: 1.5%;
		border-radius: 5px;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
	}

	ul.tabs_recruit li+li {
		margin-left: 0;
	}

	ul.tabs_recruit li:nth-child(2n) {
		margin-left: 2%;
	}

	.col_tabcont_rec {
		border-top: none;
		overflow-x: hidden;
		overflow-y: auto;
	}

	.col_recruit {
		padding: 7% 0;
	}

	.copy_recnew {
		font-size: 22px;
		text-align: center;
	}

	.col_recruit .mds1 {
		margin-bottom: 10%;
	}

	.col_recruit:before {
		top: 0;
	}

	.col_message_rec {
		width: 100%;
		margin: 0 auto;
		padding: 0;
		display: block;
		float: none;
	}

	.col_message_rec .img_message_rec {
		width: 46%;
		margin: 0 auto;
		padding: 0;
		display: block;
	}

	.col_message_rec div {
		width: 100%;
		margin: 0;
		padding: 0;
		line-height: 1.4;
		text-align: center;
		display: block;
	}

	.box_recwork {
		width: 100%;
		padding: 6% 4% 4%;
	}

	.box_recwork.close {
		padding: 4% 4% 2%;
		position: relative;
		z-index: 0;
		transition: all .5s;
		-moz-transition: all .5s;
		-webkit-transition: all .5s;
	}

	.box_recwork.close:before {
		content: "";
		margin: -4px 0 0 0;
		padding: 0;
		border-top: solid 8px #00aa71;
		border-left: solid 6px transparent;
		border-right: solid 6px transparent;
		position: absolute;
		top: 50%;
		left: 4%;
	}

	.box_recwork.right {
		margin-left: 0;
	}

	.box_recwork .mds1 {
		margin-bottom: 7%;
	}

	.box_recwork.close .ac_recruit {
		display: none;
	}

	.lead_recwork {
		margin-bottom: 4%;
	}

	.box_recwork dl,
	.box_recwork.wide dl {
		margin: 0 0 16px 0;
		padding: 0;
		display: block;
	}

	.box_recwork dl dt,
	.box_recwork.wide dl dt {
		width: 100%;
		max-width: unset;
		margin: 0 0 6px 0;
		display: block;
	}

	.box_recwork dl dd,
	.box_recwork.wide dl dd {
		width: 100%;
		padding: 0;
		display: block;
	}

	.bg_reccorp {
		padding: 10% 0 7%;
	}

	.col_reccorp {
		padding: 5% 4%;
		transition: all .5s;
		-moz-transition: all .5s;
		-webkit-transition: all .5s;
	}

	.col_reccorp.close,
	.col_reccorp.btm.close {
		padding: 4%;
		position: relative;
		z-index: 0;
	}

	.col_reccorp.close:before {
		content: "";
		margin: -4px 0 0 0;
		padding: 0;
		border-top: solid 8px #00aa71;
		border-left: solid 6px transparent;
		border-right: solid 6px transparent;
		transition: all .5s;
		-moz-transition: all .5s;
		-webkit-transition: all .5s;
		position: absolute;
		top: 50%;
		left: 4%;
	}

	.col_reccorp.close .ac_recruit {
		display: none;
	}

	.col_reccorp .mds_reccorp {
		width: 100%;
		margin: 0 0 15px;
		padding: 0 0 15px 0;
		font-size: 18px;
		text-align: center;
		transition: all .5s;
		-moz-transition: all .5s;
		-webkit-transition: all .5s;
		float: none;
	}

	.col_reccorp.close .mds_reccorp {
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: none;
	}

	.col_reccorp .txt_reccorp {
		width: 100%;
		float: none;
	}

	.col_reccorp ul.fleft,
	.col_reccorp ol.fleft {
		width: 100%;
		margin: 0 0 15px 0;
		padding: 0;
		float: none;
	}

	.img_reccorp {
		width: 85%;
		max-width: 500px;
		margin: 0 auto;
		padding: 0;
		float: none;
	}

	.col_reccorp.btm {
		padding-bottom: 8%;
	}

	.col_reccorp.btm .img_reccorp {
		width: 85%;
		max-width: 500px;
		margin: 0 auto;
		padding: 20px 0 0 0;
		float: none;
	}

	a.link_reccorp {
		margin: 10px 0 20px;
	}

	.mds_recevent {
		margin: 20px 0 8px 0;
		font-size: 17px;
	}

	.col_recevent {
		width: 100%;
		margin-bottom: 0;
	}

	.col_recevent div {
		width: 48.5%;
		max-width: 100%;
	}

	.col_recevent div:last-child {
		display: none;
	}

	.col_recevent.right {
		margin-left: 0;
	}



	/* 先輩社員インタビュー */

	.bg_recinterview {
		padding-top: 5%;
	}

	.img_recinterview {
		margin: 0 0 4%;
	}

	.num_recinterview {
		width: 9.4vw;
		margin: 0;
		padding: 3.3vw;
	}

	.num_recinterview:before {
		content: "";
		margin: 0;
		padding: 0;
		border-top: solid 21.6vw #00aa71;
		border-right: solid 21.6vw transparent;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
	}

	.lead_recinterview {
		width: 92%;
		padding-left: 4.5%;
		font-size: 3.5vw;
		bottom: 4%;
	}

	.cont_recinterview {
		margin: 0;
		display: block;
	}

	.cont_recinterview .close .ac_recruit {
		display: none;
	}

	.img_recinterview2 {
		width: 100%;
		margin: 0 0 4%;
		display: flex;
		align-items: center;
	}

	.img_recinterview2 img {
		width: 30%;
		max-width: 200px;
		height: auto;
		margin: 0 20px 0 0;
	}

	.txt_recinterview {
		padding: 0;
		display: block;
		transition: all .5s;
		-moz-transition: all .5s;
		-webkit-transition: all .5s;
	}

	.txt_recinterview dl {
		margin: 0 0 25px;
	}

	.txt_recinterview dl dt {
		font-size: 16px;
	}

	.btn_rec_more {
		width: 100%;
		margin: 0;
		padding: 25% 0 0 0;
		background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 75%);
		;
		position: absolute;
		left: 0;
		bottom: 0;
		transition: background .5s;
		-moz-transition: background .5s;
		-webkit-transition: background .5s;
	}

	.close .btn_rec_more {
		background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 75%);
	}

	.btn_rec_more span {
		margin: 0 auto;
		padding: 7px 5px 16px;
		color: #00aa71;
		text-align: center;
		background-color: #fff;
		border: solid 1px #00aa71;
		box-sizing: border-box;
		display: block;
		position: relative;
	}

	.btn_rec_more span:before {
		content: "";
		margin: 0 0 0 -7px;
		padding: 0;
		border-top: solid 5px #00aa71;
		border-left: solid 7px transparent;
		border-right: solid 7px transparent;
		position: absolute;
		top: 35px;
		left: 50%;
	}



	/* 入社式・研修 */

	.col_list_training dl {
		padding: 0;
	}

	.col_list_training dl dt {
		width: 160px;
	}


	/* 募集要項・エントリー */


	.mds_require {
		font-size: 3.3vw;
	}

	.tbl_require {
		width: 100%;
		float: none;
	}

	.tbl_require.right {
		margin-left: 0;
	}

	.tbl_require:not(.right) .btm dt {
		border-bottom: solid 1px #00aa71;
	}

	.tbl_require:not(.right) .btm dd {
		border-bottom: solid 1px #b5b5b6;
	}

	.cont_form_recruit dl {
		margin-bottom: 10px;
		display: block;
	}

	.cont_form_recruit dl.jobtype {
		/* display: none; */
	}

	.cont_form_recruit dl dt {
		width: 100%;
		margin: 0 0 5px 0;
		display: block;
	}

	.cont_form_recruit dl dd {
		padding: 0;
		display: block;
	}

	.cont_form_recruit dl dd.address div {
		margin-bottom: 10px;
	}

	.cont_form_recruit dl dd input[type="text"] {
		padding: 15px 5px;
		font-size: 15px;
	}

	.cont_form_recruit dl dd textarea {
		padding: 15px 10px;
		font-size: 15px;
	}

	.btnarea_recform {
		padding: 7% 0;
	}

	.col_tbl_require.close .ac_recruit {
		display: none;
	}

	.col_tbl_require.close .btn_rec_more {
		background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 50%);
		padding-bottom: 10%;
	}



	/* --------------- recruit_career --------------- */

	.bg_pagettl.recruit_career {
		height: 130px;
		background-image: url(../img/recruit_career/sp/bg_ttl.jpg);
		background-position: center;
		background-size: 100% auto;
	}

	ul.tabs_recruit.tabs_career li {
		width: 49%;
	}

	ul.tabs_recruit.tabs_career li.entry,
	.col_tabs.btm ul.tabs_recruit.tabs_career li.entry {
		width: 100%;
		margin-left: 0;
	}



	/* --------------- product --------------- */

	.bg_pagettl.product {
		height: 130px;
		margin: 50px 0 0 0;
		background-image: url(../img/product/sp/bg_ttl.jpg);
		background-size: 720px auto;
	}

	.bg_product1 {
		margin: 0;
		padding: 12% 0 6%;
		background-image: url(../img/product/sp/bg_product1.jpg);
		background-repeat: no-repeat;
		background-size: 100% auto;
	}

	p.lead_product1 {
		margin: 0 0 10px 0;
		font-size: 18px;
	}

	.figure_product1 {
		width: 100%;
		max-width: 600px;
		margin: 0 auto 7%;
		padding: 0;
		float: none;
	}

	.figure_product1 img {
		margin-bottom: 5%;
	}

	ul.list_img_product {
		width: 100%;
		margin: 0;
		padding: 0;
		float: none;
	}

	.name_list_product {
		font-size: 17px;
	}

	.bg_product2 {
		padding: 8% 0 12%;
	}

	.col_pickup_product {
		padding-bottom: 40px;
	}

	.slick-slide {
		padding: 0 1px;
		box-sizing: border-box;
	}

	.box_pickup_product {
		float: none;
	}

	.col_pickup_product .slick-arrow {
		width: 50px;
		height: 50px;
		margin: -25px 0 0 0;
		padding: 0;
		text-indent: -9999px;
		background-color: rgba(0, 71, 157, 0.8);
		border: none;
		border-radius: 50%;
		-moz-border-radius: 50%;
		-webkit-border-radius: 50%;
		position: absolute;
		top: 48%;
		z-index: 5;
		cursor: pointer;
		transition: background .3s;
		-moz-transition: background .3s;
		-webkit-transition: background .3s;
	}

	.col_pickup_product .slick-arrow.slick-disabled {
		background-color: rgba(204, 204, 204, 0.4);
		cursor: unset;
	}

	.col_pickup_product .slick-prev {
		left: -2%;
	}

	.col_pickup_product .slick-next {
		right: -2%;
	}

	.col_pickup_product .slick-prev:before {
		content: "";
		width: 15px;
		height: 15px;
		margin: -9px 0 0 -5px;
		padding: 0;
		border-left: solid 1px #fff;
		border-bottom: solid 1px #fff;
		transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		position: absolute;
		top: 50%;
		left: 50%;
	}

	.col_pickup_product .slick-next:before {
		content: "";
		width: 15px;
		height: 15px;
		margin: -9px 0 0 -11px;
		padding: 0;
		border-right: solid 1px #fff;
		border-bottom: solid 1px #fff;
		transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		position: absolute;
		top: 50%;
		left: 50%;
	}

	.slick-dots {
		width: 100%;
		padding: 0;
		margin: 0;
		position: absolute;
		bottom: -0;
		display: block;
		list-style: none;
		text-align: center;
	}

	.slick-dots li {
		width: 14px;
		height: 14px;
		margin: 0 10px;
		padding: 0;
		position: relative;
		display: inline-block;
		cursor: pointer;
	}

	.slick-dots li button {
		width: 14px;
		height: 14px;
		padding: 0;
		color: transparent;
		font-size: 0;
		line-height: 0;
		display: block;
		cursor: pointer;
		border: 0;
		outline: none;
		background-color: #b5b5b6;
		border-radius: 50%;
	}

	.slick-dots li button:hover,
	.slick-dots li button:focus {
		outline: none;
	}

	.slick-dots li button:hover:before,
	.slick-dots li button:focus:before {
		opacity: 1;
	}

	.slick-dots li.slick-active button {
		background-color: #00aa71;
	}

	.col_product3 {
		padding: 10% 0;
	}

	.box_product {
		width: 100%;
		margin: 0 0 6%;
	}

	.box_product:nth-child(even) {
		margin-left: 0;
	}

	.box_product:last-child {
		padding-bottom: 5px;
	}



	/* --------------- product-water --------------- */

	.bg_pagettl.water {
		height: 130px;
		background-image: url(../img/product/water/sp/bg_ttl.jpg);
		background-size: 720px auto;
	}

	.col_productlist .box_product {
		width: 100%;
		margin: 0 0 5%;
	}


	/* --------------- product-heat --------------- */

	.bg_pagettl.heat {
		height: 130px;
		background-size: auto 100%;
	}


	/* --------------- product-metal --------------- */

	.bg_pagettl.metal {
		height: 130px;
		background-size: auto 100%;
	}


	/* --------------- product-commission --------------- */

	.bg_pagettl.commission {
		height: 130px;
		background-image: url(../img/product/commission/sp/bg_ttl.jpg);
		background-size: 720px auto;
	}



	/* --------------- product-detail --------------- */

	.mds_product_d {
		padding-top: 3%;
		margin-bottom: 5%;
	}

	.img_product_d1 {
		margin-bottom: 5%;
	}

	.bg_product_d {
		padding-bottom: 10%;
	}

	.img_product_d2 {
		height: 76vw;
		margin-bottom: 5%;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.img_product_d2 img {
		max-width: 90%;
		max-height: 90%;
	}

	.mds_img_product_d {
		top: 18px;
		left: 18px;
	}

	table.tbl_product_d th {
		width: 100px;
		padding: 10px;
	}

	table.tbl_product_d td {
		padding: 10px;
	}

	ul.link_product_d {
		padding: 8% 0;
		display: block;
	}

	ul.link_product_d li {
		width: 100%;
		max-width: 300px;
		margin: 0 auto 20px;
	}

	ul.link_product_d li+li {
		margin-left: auto;
	}

	ul.link_product_d li a {
		padding: 15px 3px;
	}



	/* --------------- actionplan --------------- */

	.bg_pagettl.actionplan {
		height: 130px;
		background-image: url(../img/actionplan/sp/bg_ttl.jpg);
		background-size: 720px auto;
	}

	.logo_actionplan {
		margin: 0 auto 40px;
	}

	.lead_actionplan {
		margin: 0 auto 50px;
	}

	.cont_actionplan {
		width: 92%;
		padding: 8vw 0;
	}

	dl.box_announce_actionplan {
		padding: 15px 16px 15px;
	}

	dl.box_announce_actionplan dt {
		padding: 0 10px 10px;
	}

	dl.box_announce_actionplan dd {
		padding: 0;
	}








	/* ---------------------------------------------------------------
	end max 700px
--------------------------------------------------------------- */
}