
body {
	font-family: "noto-sans-cjk-jp", sans-serif;
	font-weight: 400;
	position: relative;
    left: 0;
    overflow-x: hidden;
	-webkit-text-size-adjust: 100%; /* iphone横向き 文字拡大防止 */
}
img {
	display: block;
	width: 100%;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
a {
	text-decoration: none;
	color: #000;
	transition: all .3s;
}
a:hover {
	filter: brightness(1.1);
}
p {
	font-size: 18px;
	line-height: 2;
}

/*==================================================================================
ヘッダー
==================================================================================*/
header {
	width: 100%;
	box-sizing: border-box!important;
	padding-left: 60px!important;
	position: relative;
	z-index: 9999;
}
header .logo {
	display: block;
	width: 220px;
}
/* メニュー -----------------------*/
nav.gnav ul {
	display: flex;
	align-items: center;
}
nav.gnav ul li {
	margin-left: 40px;
}
nav.gnav ul li a {
    display: block;
	letter-spacing: .05em;
	position: relative;
}
nav.gnav ul li a::before {
	content: "";
	display: block;
	width: 0;
	border-bottom: 2px #337991 solid;
	position: absolute;
	top: 24px;
	left: 0;
	transition: all .2s;
}
nav.gnav ul li:last-child a {
	padding: 35px 40px;
	background: #337991;
	color: #fff;
}
nav.gnav ul li a:hover {
	color: #337991;
}
nav.gnav ul li a:hover::before {
	width: 100%;
}

/*==================================================================================
共通
==================================================================================*/
/* レイアウト */
section {
	padding: 120px 0!important;
	position: relative;
}
.container {
	width: calc(100% - 120px);
	padding: 0 60px;
	margin: auto;
}
.max1600 {
	max-width: 1600px;
	margin: auto;
}
.max1400 {
	max-width: 1400px;
	margin: auto;
}
.max1200 {
	max-width: 1200px;
	margin: auto;
}
.max960 {
	max-width: 960px;
	margin: auto;
}
.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.row.align_center {
	align-items: center;
}
.row.align_start {
	align-items: flex-start;
}
.row.align_end {
	align-items: flex-end;
}
.row.just_center {
	justify-content: center;
}
.row.just_start {
	justify-content: flex-start;
}
.row.just_end {
	justify-content: flex-end;
}
.col2 {
	width: 45%;
}
.col3 {
	width: 32%;
}

.border {
	width: 100%;
	border-bottom: 1px #999 solid;
	transform: scaleX(0);
	transform-origin: left center;
	transition: all 1s linear;
}
.border.animated {
	transform: scaleX(1);
}

.mb_10 {
	margin-bottom: 10px;
}
.mb_20 {
	margin-bottom: 20px;
}
.mb_40 {
	margin-bottom: 40px;
}
.mb_60 {
	margin-bottom: 60px;
}
.mb_120 {
	margin-bottom: 120px;
}
.mr_10 {
	margin-right: 10px;
}

.wrap {
	display: inline-block;
}
.z2 {
    position: relative;
    z-index: 2;
}

/* フォント */
h2 {
	padding-left: 60px!important;
	line-height: 1.4;
	position: relative;
}
h2::before {
	content: "";
	display: block;
	width: 40px;
	height: 40px;
	background: url("../img/h2.png") center center / contain no-repeat;
	position: absolute;
	top: 5%;
	left: 0;
}
section#main_2nd h2 {
	padding-left: 0!important;
}
section#main_2nd h2::before {
	display: none;
}
section#main_2nd h2 span {
	display: block;
	font-size: 18px;
	padding-left: 20px;
	position: relative;
}
section#main_2nd h2 span::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #337991;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
h3 {
	line-height: 1.8;
}
h3 span.eng {
	display: block;
}
.font_12 {
	font-size: 12px;
}
.font_14 {
	font-size: 14px;
}
.font_24 {
	font-size: 24px;
}
.font_30 {
	font-size: 30px;
}
.font_36 {
	font-size: 36px;
}
.font_50 {
	font-size: 50px;
	line-height: 1.2;
}
.txt_center {
	text-align: center;
}
.line1 {
	line-height: 1;
}
.line1_2 {
	line-height: 1.2;
}
.line1_4 {
	line-height: 1.4;
}
.line1_6 {
	line-height: 1.6;
}
.line2_2 {
	line-height: 2.2;
}
.eng {
	font-family: "josefin-sans", sans-serif;
	font-weight: 400;
	line-height: .2;
}
.medium {
	font-weight: 500;
}
.bold {
	font-weight: 700;
}
.mincho {
	font-family: "kinuta-mincho-stdn", sans-serif;
	font-weight: 700;
}
.gray {
	color: #999;
}
.white {
	color: #fff;
}
.green {
	color: #337991;
}

/* ボタン -----------------*/
.btn {
	display: flex;
	align-items: center;
	width: 360px;
	height: 90px;
	box-sizing: border-box;
	padding: 0 90px 0 30px;
	background: #C1DADB;
	position: relative;
}
.btn::before {
	content: "";
	display: block;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background-color: #fff;
	background-image: none;
	background-position: left center;
	background-size: 20px;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	transition: all .3s;
}
.btn::after {
	content: "";
	display: block;
	width: 50px;
	border-bottom: 1px #fff solid;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	transition: all .3s;
}
.btn:hover {
	filter: brightness(1.05);
}
.btn:hover::before {
	width: 50px;
	height: 50px;
	background-color: #337991;
	background-image: url("../img/icon_arrow_wh.png");
	background-position: center;
}
.btn:hover::after {
	width: 0;
	opacity: 0;
}
.btn.primary {
	background: #337991;
	color: #fff;
}
.btn.primary span {
	display: inline-block;
	padding-left: 30px;
	position: relative;
}
.btn.primary span::before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background: url("../img/icon_mail.png") center bottom / contain no-repeat;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.btn.primary:hover::before {
	background-color: #fff;
	background-image: url("../img/icon_arrow.png");
}

.icon_arrow {
	padding-right: 2em;
	position: relative;
}
.icon_arrow::after {
	content: "";
	display: block;
	width: 1.3em;
	height: 100%;
	background: url("../img/icon_arrow.png") center bottom / contain no-repeat;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	transition: all .2s;
}
.icon_arrow.white::after {
	background-image: url("../img/icon_arrow_wh.png");
}
a:hover .icon_arrow::after {
	right: -5px;
}
.link {
	text-decoration: underline;
}

/* アニメーション -----------*/
.animated.fadeinup {
	animation: fadeinup .6s;
}
@keyframes fadeinup {
	0% {opacity: 0; transform: translateY(30px);}
	100% {opacity: 1; transform: translateY(0);}
}
.animated.fadeinup.second {
	animation: fadeinup_2nd 1.2s;
}
@keyframes fadeinup_2nd {
	0% {opacity: 0; transform: translateY(30px);}
	50% {opacity: 0; transform: translateY(30px);}
	100% {opacity: 1; transform: translateY(0);}
}
.animated.fadeinup.third {
	animation: fadeinup_3rd 1.8s;
}
@keyframes fadeinup_3rd {
	0% {opacity: 0; transform: translateY(30px);}
	66.6% {opacity: 0; transform: translateY(30px);}
	100% {opacity: 1; transform: translateY(0);}
}
.animated.fadeinright {
	animation: fadeinright .6s;
}
@keyframes fadeinright {
	0% {opacity: 0; transform: translateX(30px);}
	100% {opacity: 1; transform: translateX(0);}
}
.animated.fadeinright.second {
	animation: fadeinright_2nd 1.2s;
}
@keyframes fadeinright_2nd {
	0% {opacity: 0; transform: translateX(30px);}
	50% {opacity: 0; transform: translateX(30px);}
	100% {opacity: 1; transform: translateX(0);}
}

/* イメージ ----------------*/
.img_vtcl {
	height: 680px;
	overflow: hidden;
}
.img_vtcl img {
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transform: scale(1.1);
	transition: all 1s .3s;
}
.img_vtcl.animated img {
	opacity: 1;
	transform: scale(1);
}
.img_w {
	width: calc(100% - 60px);
	height: 500px;
	overflow: hidden;
	margin: 0 0 0 auto;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	position: relative;
}
.img_w img {
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transform: scale(1.1);
	transition: all 1s .3s;
}
.img_w.animated img {
	opacity: 1;
	transform: scale(1);
}
img.cover {
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transform: scale(1.1);
	transition: all 1s .3s;
}
.animated img.cover {
	opacity: 1;
	transform: scale(1);
}

/* テーブル -----------------------*/
table {
	width: 100%;
}
table tr {
	border-bottom: 1px #000 solid;
}
table th {
	padding: 30px 20px;
	color: #999;
	text-align: left;
	font-weight: 700;
	vertical-align: top;
	white-space: nowrap;
}
table td {
	padding: 30px 20px 30px 40px;
	position: relative;
}
table td::before {
	content: "";
	display: block;
	height: calc(100% - 60px);
	border-left: 1px #ccc solid;
	position: absolute;
	top: 30px;
	left: 0;
}
table p {
	line-height: 1.6;
}

/* アイコン */
.icon_pdf {
	display: inline-block;
	padding-left: 1.6em;
	line-height: 1;
	position: relative;
}
.icon_pdf::before {
	content: "";
	display: block;
	width: 1.3em;
	height: 100%;
	background: url("../img/icon_pdf.png") left top 5% / contain no-repeat;
	position: absolute;
	top: 0;
	left: 0;
}

/*==================================================================================
INDEX
==================================================================================*/
section#main {
	padding: 0!important;
}
section#main .main_img {
    width: 60%;
	height: 110vh;
	overflow: hidden;
	position: relative;
	top: 0;
	left: 60px;
}
section#main .main_img img {
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
h1 {
	display: inline-block;
	font-family: "kinuta-mincho-stdn", sans-serif;
	font-weight: 700;
	font-size: 120px;
	color: #fff;
	line-height: 1.6;
	position: absolute;
	top: 10%;
	left: 15%;
	z-index: 2;
}
h1 span {
	display: inline-block;
}
section#main .scrolldown {
	color: #fff;
	letter-spacing: 0.05em;
	position: absolute;
	bottom: 23%;
	left: 15%;
	z-index: 2;
}
section#main .scrolldown::before {
	content: "";
	display: block;
	height: 100px;
	border-left: 1px #fff solid;
	position: absolute;
	top: -110px;
	left: 0;
	transform-origin: center bottom;
	animation: scrolldown 1.6s ease infinite;
}
@keyframes scrolldown {
	0% {transform: scaleY(100%);}
	62.5% {transform: scaleY(0);}
	100% {transform: scaleY(0);}
}
/* スライド */
section#main .container {
	max-width: 1920px;
	position: absolute;
	top: 10%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}
section#main .main_slide {
	width: calc(45% - 60px);
	margin: 0 0 0 auto;
}
section#main .main_slide a {
	display: block;
	transition: filter .5s!important;
}
section#main .main_slide .img {
	width: 100%;
	height: 50vh;
	overflow: hidden;
	box-shadow: 2px 2px 6px rgba(0,0,0,0.5);
	position: relative;
}
section#main .main_slide .img img {
	height: 100%;
	object-fit: cover;
	position: relative;
}
section#main .main_slide .sp-slide.sp-selected .img img {
	animation: slide_img 6s linear;
}
@keyframes slide_img {
	0% {transform: scale(1.1);}
	100% {transform: scale(1);}
}
section#main .main_slide .sp-slide.sp-selected .img::before {
	content: "";
	display: block;
	width: calc(100% - 60px);
	height: 1px;
	background: #CECECE;
	position: absolute;
	bottom: 31px;
	left: 30px;
	z-index: 3;
}
section#main .main_slide .sp-slide.sp-selected .img::after {
	content: "";
	display: block;
	width: calc(100% - 60px);
	height: 3px;
	background: #fff;
	position: absolute;
	bottom: 30px;
	left: 30px;
	z-index: 3;
	animation: slide_delay 6s linear;
	transform-origin: left center;
}
@keyframes slide_delay {
	0% {transform: scaleX(0);}
	100% {transform: scaleX(1);}
}
section#main .main_slide .txt {
	width: 65%;
	max-width: 460px;
    margin: 0 0 0 auto;
    padding: 0 30px 40px 0;
	border-right: 1px #999 solid;
	border-bottom: 1px #999 solid;
}
section#main .main_slide .sp-buttons {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding-top: 20px;
}
section#main .main_slide .sp-button {
    display: inline-block;
	width: 4px;
    height: 4px;
	background: #999;
	border: none;
	border-radius: 50%;
    margin: 0 0 0 10px;
    cursor: pointer;
}
section#main .main_slide .sp-selected-button {
	width: 8px;
	height: 8px;
	background: #337991;
}
/* 肥料部 -------------------------------------------------------------------------*/
section#top_fertilizer {
	padding-top: 0!important;
	overflow: hidden;
}
section#top_fertilizer .img_w {
	height: 460px;
	margin: 0 auto 120px 0;
	background-image: url("../img/top_fertilizer.jpg");
}
section#top_fertilizer .img_w span {
	font-size: 360px;
	color: #fff;
	position: absolute;
	top: 0;
	left: 60px;
	opacity: 0.4;
}
section#top_fertilizer .container {
	position: relative;
	z-index: 2;
}
section#top_fertilizer h2 {
	display: inline-block;
	background: #fff;
}
section#top_fertilizer p {
	background: #fff;
}
section#top_fertilizer .img01 {
	width: calc(100% + 60px);
	height: 340px;
	overflow: hidden;
}
section#top_fertilizer .img02 {
	width: 300px;
	height: 300px;
	overflow: hidden;
	margin: 0 0 0 auto;
}
/* マウスストーカー */
section#top_fertilizer .seed {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
}
section#top_fertilizer .seed div[class^="dot0"] {
	width: 10px;
	height: 10px;
	box-sizing: border-box;
	border-radius: 50%;
    background: #382907;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	animation: cursor_dot 1s;
}
section#top_fertilizer .seed div.dot02 {
	top: -20px;
	left: 20px;
	animation: cursor_dot 1s .15s;
}
section#top_fertilizer .seed div.dot03 {
	top: 10px;
	left: 35px;
	animation: cursor_dot 1s .3s;
}
section#top_fertilizer .seed div.dot04 {
	top: -30px;
	left: 40px;
	animation: cursor_dot 1s .45s;
}
section#top_fertilizer .seed div.dot05 {
	top: -5px;
	left: 45px;
	animation: cursor_dot 1s .6s;
}
section#top_fertilizer .seed div.dot06 {
	top: 20px;
	left: 50px;
	animation: cursor_dot 1s .75s;
}
@keyframes cursor_dot {
	0% {opacity: 1; transform: scale(0) skewX(-20deg);}
	100% {opacity: 0; transform: scale(1) skewX(-20deg);}
}

/* 化学品部 -----------------------------------------------------------------------*/
section#top_chemicals {
	padding-top: 0!important;
	overflow: hidden;
}
section#top_chemicals .img_w {
	height: 460px;
	margin: 0 0 120px auto;
	background-image: url("../img/top_chemicals.jpg");
}
section#top_chemicals .img_w span {
	font-size: 360px;
	color: #fff;
	position: absolute;
	top: 0;
	right: 60px;
	opacity: 0.4;
}
/* 波紋 */
section#top_chemicals .wave01 {
	position: absolute;
	top: 54%;
	right: 18%;
	z-index: 1;
}
section#top_chemicals .wave02 {
	position: absolute;
	bottom: 10%;
	left: 15%;
	z-index: 1;
}
section#top_chemicals .wave03 {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
}
section#top_chemicals .wave01 div[class^="ring0"],
section#top_chemicals .wave02 div[class^="ring0"],
section#top_chemicals .wave03 div[class^="ring0"] {
	width: 600px;
	height: 600px;
	box-sizing: border-box;
	border-radius: 50%;
    border: 5px rgba(51,121,145,0.20) solid;
	position: absolute;
	top: -300px;
	left: -300px;
	opacity: 0;
}
section#top_chemicals .wave02 div[class^="ring0"] {
	width: 400px;
	height: 400px;
	top: -200px;
	left: -200px;
}
section#top_chemicals .wave03 div[class^="ring0"] {
	width: 100px;
	height: 100px;
    border: 3px rgba(51,121,145,0.20) solid;
	top: -50px;
	left: -50px;
}
section#top_chemicals div[class^="wave0"].animated .ring01 {
	animation: cursor_wave 3s infinite;
}
section#top_chemicals div[class^="wave0"].animated .ring02 {
	animation: cursor_wave 3s .15s infinite;
}
section#top_chemicals div[class^="wave0"].animated .ring03 {
	animation: cursor_wave 3s .3s infinite;
}
section#top_chemicals div[class^="wave0"].animated .ring04 {
	animation: cursor_wave 3s .45s infinite;
}
section#top_chemicals div[class^="wave0"].animated .ring05 {
	animation: cursor_wave 3s .6s infinite;
}
section#top_chemicals .wave03 .ring01 {
	animation: cursor_wave 3s;
}
section#top_chemicals .wave03 .ring02 {
	animation: cursor_wave 3s .15s;
}
@keyframes cursor_wave {
	0% {opacity: 1; transform: scale(0);}
	33.3% {opacity: 0; transform: scale(1);}
	100% {opacity: 0; transform: scale(1);}
}
section#top_chemicals .container {
	position: relative;
	z-index: 2;
}
section#top_chemicals .img01 {
	height: 360px;
	overflow: hidden;
}
section#top_chemicals .img02 {
	width: 300px;
	height: 300px;
	overflow: hidden;
	margin: 0 0 0 auto;
}
/* お知らせ -----------------------------------------------------------------------*/
section#top_news {
	background: rgba(0,0,0,0.03);
}
section#top_news h2 {
	padding-left: 0!important;
	font-size: 16px;
	font-weight: 400;
	line-height: 2.2;
}
section#top_news h2::before {
	display: none;
}
section#top_news h2 span {
	font-size: 120px;
	color: rgba(51,121,145,0.20);
	line-height: .2;
}
section#top_news .cont {
	width: calc(100% - 280px - 40px);
	max-width: 960px;
}
.article {
	padding: 20px 0;
	border-bottom: 1px #999 solid;
}
.article:first-child {
	border-top: 1px #999 solid;
}
section#top_news .article p:last-child {
	width: calc(100% - 210px);
	transition: all .3s;
}
section#top_news .article:hover p:last-child {
	color: #337991;
}
/* 会社案内 -----------------------------------------------------------------------*/
section#infomation {
	padding-bottom: 160px!important;
	overflow: hidden;
}
section#infomation a {
	display: block;
	width: calc(100% / 3 - 20px);
	height: 420px;
	box-sizing: border-box;
	padding: 40px;
	overflow: hidden;
	position: relative;
	z-index: 2;
}
section#infomation a:last-child {
	background: #337991;
}
section#infomation a img {
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	transition: all .8s;
}
section#infomation a:hover img {
	transform: translate(-50%,-50%) scale(1.05);
}
section#infomation a h2 {
	padding-left: 0!important;
	position: relative;
	z-index: 2;
}
section#infomation a h2::before {
	display: none;
}
section#infomation p:last-child {
	position: absolute;
	right: 30px;
	bottom: 30px;
	z-index: 2;
}
section#infomation .slide_txt {
	width: 100%;
	position: absolute;
	bottom: 20px;
	left: 0;
}
section#infomation .slide_txt span {
	display: inline-block;
	color: rgba(0,0,0,0.03);
	font-size: 200px;
	letter-spacing: -0.05em;
	white-space: nowrap;
	animation: slide_txt 250s linear infinite;
}
@keyframes slide_txt {
	0% {transform: translateX(100vw);}
	100% {transform: translateX(-100%);}
}

/* リクルートバナー */
section#infomation a.bana_rec {
	width: 100%;
}
section#infomation a.bana_rec h2 {
	color: #fff;
	font-size: 16px;
	line-height: 2.2;
}
section#infomation a.bana_rec h2 span {
	font-size: 120px;
	opacity: .6;
}


/*==================================================================================
下層ページ共通
==================================================================================*/
section#main_2nd {
	padding: 60px 0!important;
	border-top: 1px #000 solid!important;
}
section#main_2nd .slag {
	display: block;
	color: rgba(51,121,145,0.20);
	font-size: 12vw;
	position: absolute;
	right: 60px;
	bottom: 620px;
}
ul.pannav {
	display: flex;
	flex-wrap: wrap;
}
ul.pannav li {
	margin-right: 20px;
	padding-right: 60px;
	position: relative;
}
ul.pannav li:last-child {
	margin: 0;
	padding: 0;
}
ul.pannav li::after {
	content: "";
	display: block;
	width: 40px;
	border-bottom: 1px #999 solid;
	position: absolute;
	top: 50%;
	right: 0;
}
ul.pannav li:last-child::after {
	display: none;
}
/* ページ下部お問い合わせ ------------------------------------------------------------*/
section#howto_contact {
	padding: 0!important;
}
section#howto_contact .col_tel,
section#howto_contact .col_form {
	width: 50%;
	box-sizing: border-box;
	padding: 60px 20px;
	background: rgba(0,0,0,0.06);
}
section#howto_contact .col_form {
	background: rgba(0,0,0,0.02);
}
section#howto_contact .col_tel p,
section#howto_contact .col_form p {
	width: 100%;
}
.tel span {
	display: inline-block;
	padding-left: 50px;
	font-size: 70px;
	line-height: 0.3;
	position: relative;
}
.tel span::before {
	content: "";
	display: block;
	width: 35px;
	height: 35px;
	background: url("../img/icon_tel.png") center center / contain no-repeat;
	position: absolute;
	top: 40%;
	left: 0;
}
section#howto_contact .font_30.eng {
	line-height: 1;
}

/*==================================================================================
事業内容
==================================================================================*/
section#service .s02 {
	align-items: flex-end;
	margin-top: -120px;
}
section#service_links a {
	display: block;
	width: calc(50% - 20px);
	height: 360px;
	box-sizing: border-box;
	padding: 30px 40px;
	overflow: hidden;
	position: relative;
}
section#service_links a::after {
	content: "";
	display: block;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: rgba(51,121,145,0.30) url("../img/icon_arrow_wh.png") center center / 30% no-repeat;
	position: absolute;
	right: 20px;
	bottom: 20px;
	transition: all .3s;
}
section#service_links a:hover::after {
	background-color: #337991;
}
section#service_links a img {
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	transition: all .6s;
}
section#service_links a:hover img {
	transform: scale(1.1);
	filter: brightness(0.8);
}
section#service_links a p {
	position: relative;
	z-index: 2;
}

/*==================================================================================
肥料部
==================================================================================*/
section#fertilizer .img01,
section#chemicals .img01 {
	width: calc(100% + 120px);
	height: 340px;
	overflow: hidden;
	position: relative;
	left: -120px;
}
section#fertilizer .img02,
section#chemicals .img02 {
	width: 300px;
	height: 300px;
	overflow: hidden;
	position: relative;
	left: 100px;
}
section#fertilizer .txt01,
section#chemicals .txt01 {
	padding-left: 60px;
}
section#fertilizer .img03,
section#chemicals .img03 {
	width: calc(100% + 60px);
	height: 540px;
	overflow: hidden;
}
section#sales h3 + p {
	width: calc(100% - 460px);
}
.bg_beige {
	padding: 60px;
	background: rgba(221,180,78,0.05);
}
section#sales .col3 {
	display: block;
	box-sizing: border-box;
	padding: 20px;
	background: #fff;
	position: relative;
}
section#sales a.col3 {
	padding: 20px 20px 50px;
	background: #fff url("../img/icon_arrow.png") right 20px bottom 20px / 20px no-repeat;
}
section#sales a.col3:hover {
	background-position: right 15px bottom 20px;
}
section#sales .col3.dummy {
	padding: 0;
	background: none;
}
section#sales .col3 .company_name {
	padding: 0 0 15px 40px;
	border-bottom: 1px #999 solid;
	font-size: 20px;
	line-height: 1;
	position: relative;
}
section#sales .col3 .company_name::before {
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	background: url("../img/icon_company.png") center center / contain no-repeat;
	position: absolute;
	bottom: 10px;
	left: 0;
}
section#sales .col3 .company_name span {
	display: inline-block;
}
/* 特約品目 ----------------------------------------------------------------------*/
section#products {
	padding-top: 0!important;
}
section#products .txt {
	width: 400px;
	padding-bottom: 20px;
}
/* スライド */
section#products .swiper {
	width: calc(100% - 400px);
	margin: 0;
	padding-bottom: 80px;
	position: relative;
}
section#products .swiper-slide {
	display: block;
	width: 200px;
	margin-right: 30px;
	transition: filter .3s;
}
section#products .swiper-slide:last-child {
	margin-right: 0;
}
section#products .swiper-slide img {
	box-shadow: 3px 3px 8px rgba(0,0,0,0.4);
}
/* 前へ次へ */
section#products .swiper-button-prev,
section#products .swiper-button-next {
	display: flex;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(51,121,145,0.10);
	position: absolute;
	bottom: 0;
	right: 50px;
	z-index: 10;
	cursor: pointer;
}
section#products .swiper-button-next {
	left: auto;
	right: 0;
}
section#products .swiper-button-prev::after,
section#products .swiper-button-next::after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	box-sizing: border-box;
	border-bottom: 3px #337991 solid;
	border-left: 3px #337991 solid;
	position: absolute;
	top: 45%;
	left: 35%;
	transform: rotate(45deg) translateY(-50%);
}
section#products .swiper-button-next::after {
	top: 31%;
	left: 45%;
	transform: rotate(-135deg) translateY(-50%);
}
/* ページネーション */
section#products .swiper-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	position: absolute;
	right: 0;
	bottom: 50px;
}
section#products .swiper-pagination span {
	display: block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	margin: 0 0 5px 5px;
	background: rgba(51,121,145,0.20);
	cursor: pointer;
}
section#products .swiper-pagination span:last-child {
	margin-right: 0;
}
section#products .swiper-pagination span.active {
	background: #337991;
}

/*==================================================================================
会社概要
==================================================================================*/
section#message .img {
	height: 600px;
	overflow: hidden;
}
/* 会社概要 ------------------------------------------------------------------------*/
section#company .cont {
	width: calc(100% - 360px);
}
/* 沿革 ---------------------------------------------------------------------------*/
.bg_green {
	padding: 60px;
	background: rgba(51,121,145,0.10);
}
section#history {
	padding-top: 0!important;
}
section#history .cont {
	width: calc(100% - 260px);
}

/*==================================================================================
お問い合わせ
==================================================================================*/
section#main_2nd.contact .slag {
	bottom: 20%;
}
section#contact {
	padding-top: 0!important;
}
section#contact form {
	padding-top: 60px;
}
section#contact .policy {
	width: 100%;
	height: 160px;
	box-sizing: border-box;
	padding: 15px;
	border: 1px #cfcfcf solid;
	background: #f7f7f7;
	overflow-y: scroll;
  	-webkit-overflow-scrolling: touch;
}
section#contact .policy::-webkit-scrollbar {
	width: 8px;
}
section#contact .policy::-webkit-scrollbar-track {
	margin: 2px 0;
	background: #efefef;
	border-radius: 5px;
}
section#contact .policy::-webkit-scrollbar-thumb {
	border-radius: 5px;
	background: #ccc;
}

/*==================================================================================
プライバシーポリシー
==================================================================================*/
section#main_2nd.policy .slag {
	font-size: 10vw;
	letter-spacing: -0.05em;
	bottom: 20%;
}
section#policy {
	padding-top: 0!important;
}
section#policy .bg_green {
	padding-top: 120px;
}

/*==================================================================================
お知らせ
==================================================================================*/
section#main_2nd.news .slag {
	bottom: 20%;
}
section#news .article {
	display: block;
	padding: 30px 0 20px;
}
section#news .article p.bold {
	transition: all .3s;
}
section#news .article:hover p.bold {
	color: #337991;
}

/*==================================================================================
採用情報
==================================================================================*/
.recruit section#main_2nd {
    height: 640px;
    box-sizing: border-box;
	position: relative;
}
.recruit section#main_2nd .slag {
    letter-spacing: -0.05em;
	right: 0;
	bottom: 100px;
}
.recruit section#main_2nd .img_w {
    width: calc(100% - 500px);
	position: absolute;
    top: 0;
    right: 0;
}
.recruit section#main_2nd h2.font_30 span {
    display: inline-block;
    padding: 5px 8px!important;
    background: #337991;
    color: #fff;
    font-size: 30px;
}
.recruit section#main_2nd h2.font_50 {
    display: inline-block;
    padding: 8px 10px!important;
    background: #fff;
}
.recruit h3 .eng {
    display: block;
    margin-bottom: 20px;
    font-size: 100px;
    line-height: 1;
    letter-spacing: -0.03em;
    opacity: .2;
}
/* 職種紹介 ------------------------------------------------------------------------*/
section#rec_job h3 {
    position: relative;
    top: -80px;
}
section#rec_job .bg_green {
    padding-top: 0;
}
section#rec_job .row {
    flex-wrap: nowrap;
    align-items: flex-start;
}
section#rec_job .img {
    width: calc(50% - 40px);
    box-shadow: 2px 2px 6px rgba(0,0,0,0.5);
    height: auto;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
section#rec_job .txt {
    width: calc(50% + 80px);
    box-sizing: border-box;
    padding: 60px 40px 60px 80px;
    background: #fff;
    margin: 40px 0 0 -40px;
}
section#rec_job .txt.left {
    padding: 60px 80px 60px 40px;
    margin: 40px -40px 0 0;
}
section#rec_job h4 {
	padding-left: 60px!important;
	line-height: 1.4;
	position: relative;
}
section#rec_job h4::before {
	content: "";
	display: block;
	width: 40px;
	height: 40px;
	background: url("../img/h2.png") center center / contain no-repeat;
	position: absolute;
	top: 5%;
	left: 0;
}
section#rec_job .btn.primary span {
	padding-left: 0;
}
section#rec_job .btn.primary span::before {
	display: none;
}
/* 福利厚生 ------------------------------------------------------------------------*/
section#rec_benefits {
	background: rgba(0,0,0,0.03);
}
section#rec_benefits ul li {
    width: calc(100% / 5 - 20px);
    box-sizing: border-box;
    padding: 30px 20px;
    background: #fff;
}
section#rec_benefits ul li.dummy {
    background: none;
}
section#rec_benefits ul li p:first-child {
    padding-bottom: 15px;
    position: relative;
}
section#rec_benefits ul li p:first-child::after {
    content: "";
    display: block;
    width: 20px;
    border-bottom: 3px #337991 solid;
    position: absolute;
    bottom: -3px;
    left: 0;
}
/* よくあるご質問 --------------------------------------------------------------------*/
section#rec_faq .bg_beige {
    padding-top: 0;
}
section#rec_faq h3 {
    position: relative;
    top: -60px;
}
section#rec_faq ul li {
    padding: 30px 0;
    border-bottom: 1px #999 solid;
}
section#rec_faq ul li:last-child {
    border-bottom: none;
}
section#rec_faq ul li .txt_q {
    padding-left: 70px;
    position: relative;
}
section#rec_faq ul li .txt_q::before {
    content: "Q";
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #337991;
    color: #fff;
	font-family: "josefin-sans", sans-serif;
	font-weight: 400;
	line-height: .2;
    position: absolute;
    top: -7px;
    left: 0;
}
section#rec_faq ul li .txt_a {
    padding-left: 70px;
    position: relative;
}
section#rec_faq ul li .txt_a::before {
    content: "A";
    color: #337991;
    font-size: 24px;
	font-family: "josefin-sans", sans-serif;
	font-weight: 400;
	line-height: .2;
    position: absolute;
    top: 15px;
    left: 16px;
}
/* ページ下部お問い合わせ ------------------------------------------------------------*/
section#howto_contact.rec .col_tel {
	/*background: rgba(216,164,61,0.15);*/
    background: #337991;
}
section#howto_contact.rec .col_form {
	background: rgba(51,121,145,0.07);
}
section#howto_contact.rec .col_tel p.eng,
section#howto_contact .col_form p.eng {
	/*color: rgba(216,164,61,0.20);*/
    color: rgba(255,255,255,0.40);
	font-size: 80px;
    line-height: .5;
}
section#howto_contact .col_form p.eng {
	color: rgba(51,121,145,0.20);
}
/*section#howto_contact .tel span {
	color: #d8a43d;
}
section#howto_contact .tel span::before {
	background-image: url("../img/icon_tel_ylw.png");
}*/
section#howto_contact.rec .col_tel .btn.primary {
	background: #fff;
    color: #337991;
}
section#howto_contact.rec .col_tel .btn.primary::before {
	background-color: #337991;
}
section#howto_contact.rec .col_tel .btn.primary:hover::before {
	background-color: #337991;
    background-image: url("../img/icon_arrow_wh.png");
}
section#howto_contact.rec .col_tel .btn.primary::after {
	border-color: #337991;
}
section#howto_contact .btn.primary span {
	padding-left: 0;
}
section#howto_contact .btn.primary span::before {
	display: none;
}
/* 募集要項 ------------------------------------------------------------------------*/
.recruit section#main_2nd.doc {
    height: auto;
}
.recruit section#main_2nd.doc .img_w {
    height: 260px;
}
section#rec_job .switching {
    padding-top: 80px;
    position: relative;
}
section#rec_job .switching input[type="radio"] {
    display: none;
}
section#rec_job .switching .tab_cont {
    padding: 60px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    transition: all .3;
}
section#rec_job .switching input[type="radio"]:checked + .tab_cont {
    opacity: 1;
    visibility: visible;
    position: relative;
}
section#rec_job .switching .tab_cont table tr {
    border-bottom: 1px #ccc solid;
}
section#rec_job .switching .tab_cont table tr:last-child {
    border-bottom: none;
}
section#rec_job .switching label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% / 3 - 2px);
    height: 75px;
    border-radius: 8px 8px 0 0;
    background: #c1ced1;
    color: #fff;
    cursor: pointer;
    transition: all .3s;
    position: absolute;
    top: 5px;
    left: 0;
}
section#rec_job .switching label#tab02 {
    left: 50%;
    transform: translateX(-50%);
}
section#rec_job .switching label#tab03 {
    left: auto;
    right: 0;
}
section#rec_job .switching input[type="radio"]#trigger01:checked ~ label#tab01,
section#rec_job .switching input[type="radio"]#trigger02:checked ~ label#tab02,
section#rec_job .switching input[type="radio"]#trigger03:checked ~ label#tab03 {
    height: 80px;
    background: #337991;
    top: 0;
}
section#rec_message {
    padding-top: 0!important;
}
section#rec_message p:first-child {
    padding-bottom: 200px;
    position: relative;
}
section#rec_message p:first-child::after {
    content: "";
    display: block;
    height: 100px;
    border-left: 1px #000 solid;
    position: absolute;
    bottom: 50px;
    left: 50%;
}

/*==================================================================================
フッター
==================================================================================*/
footer {
	padding: 60px 0!important;
}
footer .logo {
	width: 200px;
}
footer ul.foot_nav li {
	padding-right: 20px;
	text-align: right;
	position: relative;
}
footer ul.foot_nav li::after {
	content: "";
	display: block;
	width: 7px;
	height: 2px;
	background: #337991;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
footer ul.foot_nav li a {
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
}
footer ul.foot_nav li a:hover {
	color: #337991;
	transform: translateX(-5px);
}

.tb {display: none;}
.pc {display: inline;}
.sp {display: none;}


@media screen and (max-width : 1400px) {
	/*==================================================================================
	ヘッダー
	==================================================================================*/
    header .logo {
        width: 180px;
    }
	/* メニュー -----------------------*/
    nav.gnav ul li {
        margin-left: 30px;
    }
	nav.gnav ul li a p {
	    font-size: 14px;
	}
    nav.gnav ul li:last-child a {
        padding: 30px;
    }
	/*==================================================================================
	INDEX
	==================================================================================*/
	section#main .main_img {
	    width: 55%;
	}
	h1 {
		font-size: 90px;
	}
	/* スライド */
	section#main .main_slide {
		width: calc(50% - 60px);
	}
	/*==================================================================================
	下層ページ共通
	==================================================================================*/
	/* ページ下部お問い合わせ ------------------------------------------------------------*/
	.tel span {
		padding-left: 30px;
		font-size: 50px;
	}
	.tel span::before {
		width: 25px;
		height: 25px;
	}
}


@media screen and (max-width : 960px) {
	.pc {display: none;}
	.tb {display: inline;}
	
	p { font-size: 14px; }
	
	/*==================================================================================
	ヘッダー
	==================================================================================*/
	header {
		padding: 20px!important;
		background: rgba(255,255,255,0.2);
		position: fixed;
		top: 0;
		left: 0;
	}
	header.active {
		background: #fff;
		border-bottom: 1px #000 solid;
	}
	header .logo {
		width: 160px;
	}
	/* スマホ版 メニュー -----------------------*/
	nav.gnav {
	    z-index: 2;
	    width: 100%;
		height: calc(100vh - 59px);
		background: rgba(0,0,0,0.8);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s;
	    position: fixed;
	    top: 59px;
	    left: 0;
	}
	nav.gnav.active {
	    opacity: 1;
		visibility: visible;
	}
	nav.gnav ul {
		display: block;
		max-width: 360px;
		height: 100%;
		margin: 0 0 0 auto;
		padding: 20px;
		background: #fff;
		transform: translateX(100%);
		transition: all .3s;
		opacity: 0;
	}
	nav.gnav.active ul {
		transform: translateX(0);
		opacity: 1;
	}
	nav.gnav ul li {
		max-width: 360px;
		margin: auto;
	}
	nav.gnav ul li a {
	    display: block;
		padding: 15px 0;
	}
	nav.gnav ul li a::before {
		display: none;
	}
	nav.gnav ul li:last-child a {
		padding: 20px;
	}
	.gnavToggle {
	    z-index: 9999;
	    display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	    width: 40px;
	    height: 40px;
	    text-align: center;
	    cursor: pointer;
	    position: fixed;
	    right: 20px;
	    top: 10px;
	}
	.gnavToggle span {
	    display: block;
	    width: 100%;
		margin-bottom: 5px;
	    border-bottom: 3px #337991 solid;
	    transition: .35s ease-in-out;
	}
	.gnavToggle span:nth-child(3) {
		width: 100%;
		margin: 5px 0 0;
	    border: none;
	    color: #337991;
	    font-size: 10px;
	    font-weight: bold;
		text-align: center;
	}
	.gnavToggle.active span:nth-child(1) {
	    transform: translateY(4px) rotate(-20deg);
	}
	.gnavToggle.active span:nth-child(2) {
	    transform: translateY(-4px) rotate(20deg);
	}
	/*==================================================================================
	共通
	==================================================================================*/
	/* レイアウト */
	main {
		margin-top: 59px!important;
	}
	section {
		padding: 60px 0!important;
	}
	.container {
		width: calc(100% - 40px);
		padding: 0 20px;
	}
	.max1400 {
		max-width: 680px;
	}
	.max1200 {
		max-width: 540px;
	}
	.col2 {
		width: 48%;
	}
	.col2.tb100 {
		width: 100%;
		max-width: 680px;
		margin: 0 auto 40px;
	}
	.col2.tb100:last-child {
		margin: 0 auto;
	}
	.col3 {
		width: 49%;
	}
	.order2 {
		order: 2;
	}
	.mb_10 {
		margin-bottom: 5px;
	}
	.mb_20 {
		margin-bottom: 15px;
	}
	.mb_40 {
		margin-bottom: 30px;
	}
	.mb_60 {
		margin-bottom: 40px;
	}
	.mb_120 {
		margin-bottom: 80px;
	}
	/* フォント */
	h2 {
		padding-left: 36px!important;
	}
	h2::before {
		width: 26px;
		height: 26px;
	}
	section#main_2nd h2 span {
		font-size: 14px;
		padding-left: 15px;
	}
	section#main_2nd h2 span::before {
		width: 8px;
		height: 8px;
	}
	h3 {
		line-height: 1.6;
	}
	.font_12 {
		font-size: 10px;
	}
	.font_14 {
		font-size: 12px;
	}
	.font_24 {
		font-size: 20px;
	}
	.font_30 {
		font-size: 24px;
	}
	.font_36 {
		font-size: 28px;
	}
	.font_50 {
		font-size: 34px;
	}
	/* ボタン -----------------*/
	.btn {
		width: 100%;
		max-width: 340px;
		height: 70px;
		padding: 0 70px 0 20px;
	}
	.btn::before {
		width: 10px;
		height: 10px;
		background-size: 15px;
		right: 15px;
	}
	.btn::after {
		width: 40px;
		right: 15px;
	}
	.btn:hover::before {
		width: 40px;
		height: 40px;
	}
	/* イメージ ----------------*/
	.img_vtcl {
		height: 540px;
	}
	.img_w {
		width: calc(100% - 20px);
		height: 300px;
	}
	/* テーブル -----------------*/
	table th {
		padding: 15px 20px 0 0;
	}
	table td {
		padding: 15px 0 15px 20px;
	}
	table td::before {
		height: calc(100% - 30px);
		top: 15px;
	}
	/*==================================================================================
	INDEX
	==================================================================================*/
	section#main .main_img {
	    width: calc(100% - 20px);
		height: 70vh;
		min-height: 540px;
		position: absolute;
		left: 20px;
	}
	h1 {
		margin-bottom: 120px!important;
		font-size: 75px;
		line-height: 1.6;
		position: relative;
		top: 60px;
		left: 15%;
	}
	section#main .scrolldown {
		bottom: 40%;
		left: 15%;
		font-size: 12px;
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;
	}
	section#main .scrolldown::before {
		height: 60px;
		top: -70px;
	}
	/* スライド */
	section#main .container {
		position: relative;
		top: 0;
		left: 0;
		transform: none;
		z-index: 2;
	}
	section#main .main_slide {
		width: calc(85% - 20px);
		max-width: 460px;
	}
	section#main .main_slide .img {
		height: 35vh;
	}
	section#main .main_slide .sp-slide.sp-selected .img::before {
		width: calc(100% - 40px);
		bottom: 21px;
		left: 20px;
	}
	section#main .main_slide .sp-slide.sp-selected .img::after {
		width: calc(100% - 40px);
		bottom: 20px;
		left: 20px;
	}
	section#main .main_slide .txt {
		width: calc(100% - 21px);
		max-width: 100%;
	    padding: 0 20px 30px 0;
	}
	/* 事業紹介 -----------------------------------------------------------------------*/
	section#top_service .container.max1200 {
		max-width: 100%;
	}
	/* 肥料部 -------------------------------------------------------------------------*/
	section#top_fertilizer .img_w {
		height: 240px;
		margin: 0 auto 80px 0;
	}
	section#top_fertilizer .img_w span {
		font-size: 140px;
		left: 20px;
	}
	section#top_fertilizer .img01 {
		width: 100%;
		height: 300px;
	}
	section#top_fertilizer .img02 {
		width: 240px;
		height: 240px;
		margin: 0 40px 60px auto;
	}
	/* マウスストーカー */
	section#top_fertilizer .seed div[class^="dot0"] {
		width: 8px;
		height: 8px;
	}
	/* 化学品部 -----------------------------------------------------------------------*/
	section#top_chemicals .img_w {
		height: 240px;
		margin: 0 0 80px auto;
	}
	section#top_chemicals .img_w span {
		font-size: 140px;
		right: 20px;
	}
	/* 波紋 */
	section#top_chemicals .wave01 {
		top: 20%;
		right: 15%;
	}
	section#top_chemicals .wave02 {
		bottom: 35%;
		left: 12%;
	}
	section#top_chemicals .wave01 div[class^="ring0"],
	section#top_chemicals .wave02 div[class^="ring0"],
	section#top_chemicals .wave03 div[class^="ring0"] {
		width: 400px;
		height: 400px;
		top: -200px;
		left: -200px;
	}
	section#top_chemicals .wave02 div[class^="ring0"] {
		width: 300px;
		height: 300px;
		top: -150px;
		left: -150px;
	}
	section#top_chemicals .wave03 div[class^="ring0"] {
		width: 50px;
		height: 50px;
		top: -25px;
		left: -25px;
	}
	section#top_chemicals .img01 {
		height: 300px;
	}
	section#top_chemicals .img02 {
		width: 240px;
		height: 240px;
		margin: 0 40px 60px auto;
	}
	/* お知らせ -----------------------------------------------------------------------*/
	section#top_news h2 {
		font-size: 12px;
	}
	section#top_news h2 span {
		font-size: 70px;
	}
	section#top_news .cont {
		width: calc(100% - 160px - 40px);
	}
	.article {
		padding: 15px 0;
	}
	section#top_news .article p:last-child {
		width: calc(100% - 170px);
	}
	/* 会社案内 -----------------------------------------------------------------------*/
	section#infomation {
		padding-bottom: 100px!important;
	}
	section#infomation .container.max1400 {
		max-width: 100%;
	}
	section#infomation a {
		width: calc(100% / 3 - 10px);
		height: 300px;
		padding: 20px;
	}
	section#infomation p:last-child {
		right: 20px;
		bottom: 20px;
	}
	section#infomation .slide_txt {
		bottom: 15px;
	}
	section#infomation .slide_txt span {
		font-size: 120px;
	}
	/* リクルートバナー */
	section#infomation a.bana_rec h2 {
		font-size: 12px;
	}
	section#infomation a.bana_rec h2 span {
		font-size: 70px;
	}

	/*==================================================================================
	下層ページ共通
	==================================================================================*/
	section#main_2nd {
		padding: 40px 0!important;
	}
	section#main_2nd .slag {
		right: 20px;
		bottom: 370px;
	}
	ul.pannav li {
		margin-right: 15px;
		padding-right: 40px;
	}
	ul.pannav li::after {
		width: 30px;
	}
	/* ページ下部お問い合わせ ------------------------------------------------------------*/
	section#howto_contact .col_tel,
	section#howto_contact .col_form {
		padding: 40px 20px;
	}
	.tel span {
		padding-left: 25px;
		font-size: 40px;
	}
	.tel span::before {
		width: 20px;
		height: 20px;
	}
	/*==================================================================================
	事業内容
	==================================================================================*/
	section#service .s02 {
		align-items: flex-end;
		margin-top: 60px;
	}
	section#service .col2.tb100.order2 {
		margin: 40px auto 0;
	}
	section#service_links .max1200 {
		max-width: 100%;
	}
	section#service_links a {
		width: calc(50% - 10px);
		height: 200px;
		padding: 20px;
	}
	section#service_links a::after {
		width: 50px;
		height: 50px;
		right: 15px;
		bottom: 15px;
	}
	/*==================================================================================
	肥料部
	==================================================================================*/
	section#fertilizer .img01,
	section#chemicals .img01 {
		width: 100%;
		height: 300px;
		left: 0;
	}
	section#fertilizer .img02,
	section#chemicals .img02 {
		width: 240px;
		height: 240px;
		left: 0;
		margin: 0 40px 0 auto;
	}
	section#fertilizer .txt01,
	section#chemicals .txt01 {
		padding-left: 0;
	}
	section#fertilizer .max1200,
	section#chemicals .max1200 {
		max-width: 100%;
	}
	section#fertilizer .img03,
	section#chemicals .img03 {
		width: 100%;
		height: 300px;
	}
	section#fertilizer .col2.tb100.order2,
	section#chemicals .col2.tb100.order2 {
		width: 100%;
		margin: 40px 0 0;
	}
	section#sales h3 + p {
		width: 100%;
	}
	section#sales h3 + p {
		width: 100%;
	}
	.bg_beige {
		padding: 40px 20px;
	}
	section#sales a.col3 {
		padding: 20px 20px 40px;
		background-position: right 20px bottom 15px ;
		background-size: 15px;
	}
	section#sales a.col3:hover {
		background-position: right 17px bottom 15px;
	}
	section#sales .col3 .company_name {
		padding: 0 0 12px 30px;
		font-size: 16px;
	}
	section#sales .col3 .company_name::before {
		width: 20px;
		height: 20px;
	}
	/* 特約品目 ----------------------------------------------------------------------*/
	section#products {
		padding-top: 0!important;
	}
	section#products .txt {
		width: 260px;
	}
	/* スライド */
	section#products .swiper {
		width: calc(100% - 260px - 40px);
		padding-bottom: 70px;
	}
	section#products .swiper-slide {
		width: 160px;
		margin-right: 20px;
	}
	/* 前へ次へ */
	section#products .swiper-button-prev,
	section#products .swiper-button-next {
		width: 30px;
		height: 30px;
		right: 40px;
	}
	section#products .swiper-button-next {
		left: auto;
		right: 0;
	}
	section#products .swiper-button-prev::after,
	section#products .swiper-button-next::after {
		width: 6px;
		height: 6px;
		border-width: 2px;
		top: 48%;
	}
	section#products .swiper-button-next::after {
		top: 34%;
	}
	/* ページネーション */
	section#products .swiper-pagination {
		bottom: 45px;
	}
	/*==================================================================================
	会社概要
	==================================================================================*/
	section#message .img {
		height: 460px;
	}
	section#message .tb100.order2 {
		margin: 40px auto 0;
	}
	/* 会社概要 ------------------------------------------------------------------------*/
	section#company .cont {
		width: 100%;
	}
	/* 沿革 ---------------------------------------------------------------------------*/
	.bg_green {
		padding: 40px 20px;
	}
	section#history .cont {
		width: 100%;
	}
	/*==================================================================================
	お問い合わせ
	==================================================================================*/
	section#main_2nd.contact .slag {
		bottom: 5%;
	}
	section#contact .max1200 {
		max-width: 100%;
	}
	section#contact .container {
		max-width: 680px;
	}
	section#contact form {
		padding-top: 20px;
	}
	/*==================================================================================
	プライバシーポリシー
	==================================================================================*/
	section#main_2nd.policy .slag {
		bottom: 5%;
	}
	section#policy .bg_green {
		max-width: 100%;
		padding-top: 60px;
	}
	section#policy .container {
		max-width: 680px;
	}
	/*==================================================================================
	お知らせ
	==================================================================================*/
	section#main_2nd.news .slag {
		bottom: 5%;
	}
	section#news .article {
		padding: 20px 0 15px;
	}
    /*==================================================================================
    採用情報
    ==================================================================================*/
    .recruit section#main_2nd {
        height: 410px;
    }
    .recruit section#main_2nd .slag {
    	bottom: 80px;
    }
    .recruit section#main_2nd .img_w {
        width: calc(100% - 300px);
    }
    .recruit section#main_2nd h2.font_30 span {
        padding: 3px 8px!important;
        font-size: 18px;
    }
    .recruit section#main_2nd h2.font_50 {
        padding: 6px 8px!important;
    }
    .recruit h3 .eng {
        font-size: min(10vw,60px);
    }
    /* 職種紹介 ------------------------------------------------------------------------*/
    section#rec_job h3 {
        font-size: 14px;
        top: -40px;
    }
    section#rec_job .row {
        flex-wrap: wrap;
    }
    section#rec_job .img {
        width: calc(100% - 30px);
    }
    section#rec_job .txt {
        width: calc(100% - 30px);
        padding: 60px 30px 30px;
        margin: -30px 0 0 auto;
        order: 2;
    }
    section#rec_job .txt.left {
        padding: 60px 30px 30px;
        margin: -30px 0 0 auto;
    }
    section#rec_job h4 {
    	padding-left: 36px!important;
    }
    section#rec_job h4::before {
		width: 26px;
		height: 26px;
        top: 12%;
    }
    /* 福利厚生 ------------------------------------------------------------------------*/
    section#rec_benefits h3 {
        font-size: 14px;
    }
    section#rec_benefits ul li {
        width: calc(100% / 2 - 10px);
        padding: 20px;
        margin-bottom: 20px;
    }
    section#rec_benefits ul li p:first-child {
        padding-bottom: 15px;
    }
    /* よくあるご質問 --------------------------------------------------------------------*/
    section#rec_faq h3 {
        font-size: 14px;
        top: -40px;
    }
    section#rec_faq ul li {
        padding: 20px 0;
    }
    section#rec_faq ul li .txt_q {
        padding-left: 50px;
        font-size: 18px;
    }
    section#rec_faq ul li .txt_q::before {
        width: 35px;
        height: 35px;
        top: -5px;
        left: 0;
    }
    section#rec_faq ul li .txt_a {
        padding-left: 50px;
    }
    section#rec_faq ul li .txt_a::before {
        font-size: 18px;
        top: 11px;
        left: 12px;
    }
    /* ページ下部お問い合わせ ------------------------------------------------------------*/
    section#howto_contact.rec .col_tel p.eng,
    section#howto_contact .col_form p.eng {
        font-size: min(12vw,60px);
        letter-spacing: -0.02em;
    }
    /* 募集要項 ------------------------------------------------------------------------*/
    .recruit section#main_2nd.doc .img_w {
        height: 180px;
    }
    .recruit section#main_2nd.doc ul.pannav {
        margin-bottom: 40px;
    }
    section#rec_job .switching {
        padding-top: 40px;
    }
    section#rec_job .switching .tab_cont {
        padding: 20px;
    }
    section#rec_job .switching label {
        width: calc(100% / 3 - 2px);
        height: 35px;
        font-size: 14px;
    }
    section#rec_job .switching input[type="radio"]#trigger01:checked ~ label#tab01,
    section#rec_job .switching input[type="radio"]#trigger02:checked ~ label#tab02,
    section#rec_job .switching input[type="radio"]#trigger03:checked ~ label#tab03 {
        height: 40px;
    }
    section#rec_message p:first-child {
        padding-bottom: 140px;
    }
    section#rec_message p:first-child::after {
        height: 70px;
        bottom: 35px;
    }
	/*==================================================================================
	フッター
	==================================================================================*/
	footer {
		padding: 40px 0!important;
	}
	footer .logo {
		width: 140px;
	}
	footer ul.foot_nav li {
		padding-right: 15px;
	}
	footer ul.foot_nav li::after {
		width: 5px;
	}
	footer ul.foot_nav li a {
		font-size: 14px;
	}
}


@media screen and (max-width : 680px) {
	/*==================================================================================
	INDEX
	==================================================================================*/
	/* お知らせ -----------------------------------------------------------------------*/
	section#top_news {
		padding: 40px 0!important;
	}
	section#top_news h2 {
		margin-bottom: 20px;
	}
	section#top_news .cont {
		width: 100%;
	}
	.article {
		justify-content: flex-start;
		padding: 20px 0 15px;
	}
	section#top_news .article p:last-child {
		width: 100%;
		margin-top: 8px;
	}
	/* 会社案内 -----------------------------------------------------------------------*/
	section#infomation a {
		width: 100%;
		max-width: 460px;
		height: 300px;
		margin: 0 auto 20px;
	}
	section#infomation a:last-child {
		margin: 0 auto;
	}
	/* リクルートバナー */
	section#infomation a.bana_rec h2 span {
		font-size: 46px;
	}
	section#infomation a.bana_rec .font_36 {
		font-size: 24px;
	}

	/*==================================================================================
	事業内容
	==================================================================================*/
	section#service_links a {
		width: 100%;
		margin-bottom: 10px;
	}
	/*==================================================================================
	肥料部
	==================================================================================*/
	/* 特約品目 ----------------------------------------------------------------------*/
	section#products .txt {
		width: 100%;
		padding-bottom: 0;
	}
	/* スライド */
	section#products .swiper {
		width: 100%;
	}
	/*==================================================================================
	下層ページ共通
	==================================================================================*/
	/* ページ下部お問い合わせ ------------------------------------------------------------*/
	section#howto_contact .col_tel,
	section#howto_contact .col_form {
		width: 100%;
	}
}


@media screen and (max-width : 460px) {
	.tb {display: none;}
	.sp {display: inline;}
    nav.gnav ul {
        width: 70%;
        box-sizing: border-box;
    }
	/*==================================================================================
	共通
	==================================================================================*/
	/* レイアウト */
	.col2.sp100 {
		width: 100%;
		margin-bottom: 40px;
	}
	.col2.sp100:last-child {
		margin-bottom: 0;
	}
	.col3.sp100 {
		width: 100%;
	}
	/* フォント */
	.font_24 {
		font-size: 18px;
	}
	.font_30 {
		font-size: 22px;
	}
	.font_36 {
		font-size: 24px;
	}
	.font_50 {
		font-size: 30px;
	}
	/* イメージ ----------------*/
	.img_vtcl {
		height: 460px;
	}
	.img_w {
		height: 140px;
	}
	/* テーブル -----------------*/
	table th {
		display: block;
		width: 100%;
		box-sizing: border-box;
		padding: 15px 0 0 0;
	}
	table td {
		display: block;
		width: 100%;
		box-sizing: border-box;
		padding: 10px 0 15px;
	}
	table td::before {
		display: none;
	}
	/*==================================================================================
	INDEX
	==================================================================================*/
	h1 {
		margin-bottom: 120px!important;
		font-size: 50px;
		top: 40px;
	}
	/* 肥料部 -------------------------------------------------------------------------*/
	section#top_fertilizer .img_w {
		height: 200px;
	}
	section#top_fertilizer .img_w span {
		font-size: 100px;
	}
	section#top_fertilizer h2 {
		margin-bottom: 40px;
	}
	section#top_fertilizer .img01 {
		height: 140px;
	}
	section#top_fertilizer .img02 {
		width: 140px;
		height: 140px;
		margin: 0 20px 60px auto;
	}
	/* 化学品部 -----------------------------------------------------------------------*/
	section#top_chemicals .img_w {
		height: 200px;
	}
	section#top_chemicals .img_w span {
		font-size: 100px;
	}
	section#top_chemicals h2 {
		margin-bottom: 40px;
	}
	section#top_chemicals .img01 {
		height: 140px;
	}
	section#top_chemicals .img02 {
		width: 140px;
		height: 140px;
		margin: 0 20px 20px auto;
	}
	/*==================================================================================
	下層ページ共通
	==================================================================================*/
	section#main_2nd .slag {
		bottom: 200px;
	}
	/*==================================================================================
	肥料部
	==================================================================================*/
	section#fertilizer .img01,
	section#chemicals .img01 {
		height: 140px;
	}
	section#fertilizer .img02,
	section#chemicals .img02 {
		width: 140px;
		height: 140px;
	}
	section#fertilizer .img03,
	section#chemicals .img03 {
		height: 200px;
	}
	/* 特約品目 ----------------------------------------------------------------------*/
	/* スライド */
	section#products .swiper-slide {
		width: 140px;
		margin-right: 10px;
	}
	section#products .swiper-slide .font_14 {
		font-size: 10px;
	}
	/*==================================================================================
	会社概要
	==================================================================================*/
	section#message .img {
		height: 300px;
	}
	/* 沿革 ---------------------------------------------------------------------------*/
	section#history table th {
		display: table-cell;
		width: auto;
		padding: 15px 15px 0 0;
	}
	section#history table td {
		display: table-cell;
		width: auto;
		padding: 10px 0 15px 15px;
	}
	section#history table td::before {
		display: block;
	}
	section#history table p {
		font-size: 12px;
	}
    /*==================================================================================
    採用情報
    ==================================================================================*/
    .recruit section#main_2nd {
        height: auto;
        padding-bottom: 0!important;
    }
    .recruit section#main_2nd .slag {
        right: 20px;
    	bottom: 158px;
    }
    .recruit section#main_2nd .img_w {
        width: calc(100% - 20px);
    	position: relative;
    }
    .recruit section#main_2nd h2.font_30 {
        margin-bottom: 15px;
    }
    .recruit section#main_2nd h2.font_30 span {
        padding: 3px 6px!important;
        font-size: 14px;
    }
    .recruit section#main_2nd h2.font_50 {
        padding: 0!important;
    }
    /* 職種紹介 ------------------------------------------------------------------------*/
    section#rec_job h3 {
        top: -30px;
    }
    section#rec_job .img {
        width: calc(100% - 20px);
    }
    section#rec_job .txt {
        width: 100%;
        padding: 50px 20px 20px;
        margin: -20px 0 0;
    }
    section#rec_job .txt.left {
        padding: 50px 20px 20px;
        margin: -20px 0 0;
    }
    section#rec_job h4 {
    	padding-left: 36px!important;
    }
    /* 福利厚生 ------------------------------------------------------------------------*/
    section#rec_benefits ul li {
        width: 100%;
        margin-bottom: 10px;
    }
    /* よくあるご質問 --------------------------------------------------------------------*/
    section#rec_faq h3 {
        top: -20px;
    }
    section#rec_faq ul li .txt_q {
        padding-left: 40px;
        font-size: 16px;
    }
    section#rec_faq ul li .txt_q::before {
        width: 30px;
        height: 30px;
        top: -3px;
        left: 0;
    }
    section#rec_faq ul li .txt_a {
        padding-left: 40px;
    }
    section#rec_faq ul li .txt_a::before {
        font-size: 16px;
        left: 9px;
    }
    /* ページ下部お問い合わせ ------------------------------------------------------------*/
    section#howto_contact.rec .col_tel p.eng,
    section#howto_contact .col_form p.eng {
        line-height: 0;
    }
    /* 募集要項 ------------------------------------------------------------------------*/
    .recruit section#main_2nd.doc .img_w {
        height: 120px;
    }
    section#rec_job .switching {
        padding-top: 30px;
    }
    section#rec_job .switching .tab_cont {
        padding: 10px 20px 20px;
    }
    section#rec_job .switching label {
        width: calc(100% / 3 - 2px);
        height: 25px;
        font-size: 12px;
    }
    section#rec_job .switching input[type="radio"]#trigger01:checked ~ label#tab01,
    section#rec_job .switching input[type="radio"]#trigger02:checked ~ label#tab02,
    section#rec_job .switching input[type="radio"]#trigger03:checked ~ label#tab03 {
        height: 30px;
    }
    section#rec_message p:first-child {
        font-size: 18px;
    }
	/*==================================================================================
	フッター
	==================================================================================*/
	footer {
		padding: 40px 0!important;
	}
	footer ul.foot_nav {
		display: none;
	}
	footer .copy {
		width: 100%;
		margin-top: 6px;
		order: 2;
	}
	footer a.gray {
		text-decoration: underline;
	}
}



