@charset "UTF-8";
/* 共通 */
html {
	font-size: 100%;
}
body {
	position: relative;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 700;
	line-height: 1.7;
	color: #593202;
	font-size: 16px;
	background: #fff;
	-webkit-font-smoothing: antialiased; /*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: 0.1em;
	line-height: 1.9;
}
a {
	text-decoration: none;
	color: #5eb551;
	transition: .4s;
}
a:hover {
	color: #83bf7a;
}
ul, ol {
	list-style: none;
	padding: 0;
}
main {
	display: block;
	position: relative;
}
main section {
	padding: 110px 0;
	position: relative;
}
main section:last-child {
	padding-bottom: 110px;
}
@media (max-width: 950px) {
	main section {
		padding: 60px 0;
	}
}
@media (max-width: 550px) {
	main section {
		padding: 40px 0;
	}
	main section:last-child {
		padding-bottom: 60px;
	}
}
/* 画像 */
img {
	line-height: 1;
	vertical-align: top;
	max-width: 100%;
	transition: .4s;
}
section img {
	border-radius: 20px;
}
/* テキスト */
p {
	margin-bottom: 10px !important;
}
.p_mgb20 {
	margin-bottom: 20px !important;
}
.marker {
	background: linear-gradient(transparent 70%, #dcecd4 30%);
}

.marker02 {
	text-decoration: underline;
	text-decoration-thickness: 0.15em;
	text-decoration-color: rgba(94, 181, 81, 0.25);
	text-underline-offset: 0.07em;
	text-decoration-skip-ink: none;
}
/*見出し01*/
.maintitle {
	margin-bottom: 70px;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 700;
	font-style: normal;
	text-align: center;
	color: #593202;
	font-size: 1.9rem;
	line-height: 1.4;
}
.maintitle .en {
	color: #8BC882;
	font-size: 1.5rem;
	font-family: 'Zen Maru Gothic', sans-serif;
}
.maintitle img {
	margin: auto auto 20px;
	width: 100%;
	max-width: 90px !important;
}
@media (max-width: 950px) {
	.maintitle {
		font-size: 1.8rem;
		margin-bottom: 45px;
	}
	.maintitle .en {
		font-size: 1.3rem;
	}
}
@media (max-width: 450px) {
	.maintitle {
		font-size: 1.5rem;
		margin-bottom: 35px;
	}
	.maintitle .en {
		font-size: 1.2rem;
	}
	.maintitle img {
		margin: auto auto 10px;
		width: 100%;
		max-width: 60px !important;
	}
}
/*見出し02*/
.mtitle {
	position: relative;
	font-size: clamp(1.1rem, 0.92rem + 0.64vw, 1.4rem);
	font-weight: 700;
	margin-bottom: 20px;
	letter-spacing: 0.1em;
}
/*見出し03*/
.stitle {
	position: relative;
	font-size: 1.4rem;
	font-weight: 700;
	border-bottom: 2px solid #a8dea0;
	margin-bottom: 20px;
	color: #593202;
}
.stitle::before {
	content: '';
	position: absolute;
	bottom: -2px;
	width: 100px;
	height: 2px;
	background: #5eb551;
	opacity: 0.75;
}
@media (max-width: 450px) {
	.stitle {
		font-size: 1.15rem;
	}
}
/*ボタン*/
.mainbtn a {
	width: 300px;
	text-align: center;
	position: relative;
	vertical-align: middle;
	margin: 0 auto;
	padding: 15px 0;
	border-radius: 20px;
	color: #fff;
	background: #5eb551;
	border: 2px solid #83bf7a;
	transition: .4s;
	display: inline-block;
}
.mainbtn a:hover {
	background: #fff;
	color: #5eb551;
	border: 2px solid #5eb551;
	transition: .2s;
}
@media (max-width: 350px) {
	.mainbtn a {
		width: 80%;
	}
}
.white a {
	border: 2px solid #fff;
}
/*flex要素*/
.flexbox {
	display: flex;
	justify-content: space-between;
}
.reverse {
	flex-direction: row-reverse;
}
@media (max-width: 950px) {
	.flexbox {
		display: block;
	}
	.flexbox img {
		width: 100%;
	}
	.flexbox div {
		width: 100%;
	}
}
/*幅*/
.inner {
	width: 92%;
	max-width: 1300px;
	margin: 0 auto;
}
.w58 {
	width: 58%;
}
.w50 {
	width: 50%;
}
.w48 {
	width: 48%;
}
.w47 {
	width: 47.2%;
}
.w38 {
	width: 38%;
}
.w31 {
	width: 31%;
}
.white_wrap {
	background-color: #fff;
	padding: 40px;
	border-radius: 20px;
	box-shadow: rgb(0 0 0 / 7%) 0px 2px 8px 0px;
}
@media (max-width: 750px) {
	.white_wrap {
		padding: 40px 20px;
	}
}
/* 背景 */
.bg_blue::after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #f0f8fc;
	z-index: -2;
}
.bg_brown {
	background: #d4b494;
}
.bg_green {
	background: #8BC882;
}
.bg_green02::after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #e0ecd4;
	z-index: -2;
}
.bg_white::after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #fff;
	z-index: -2;
}
.bg_blue .en, .bg_green02 .en {
	color: #5eb551;
}
.top_bg01 {
	width: 100%;
	background: url(../img/top_bg01.png);
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: 130% 70%;
	overflow: hidden;
}
@media (max-width: 950px) {
	.top_bg01 {
		background-size: 350% 88%;
	}
}
.top_bg02 {
	width: 100%;
	background: url(../img/top_bg02.png);
	background-repeat: no-repeat;
	background-position: bottom;
	overflow: hidden;
}
@media (max-width: 450px) {
	.top_bg02 {
		background-size: 390% 63%;
	}
}
.top_bg03 {
	width: 100%;
	background: url(../img/top_bg03.png);
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: 130% 70%;
	overflow: hidden;
}
@media (max-width: 950px) {
	.top_bg03 {
		background-size: 342% 80%;
	}
}
.sub_bg01 {
	width: 100%;
	background: url(../img/sub_bg01.png);
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: 130% 70%;
	overflow: hidden;
	z-index: 0;
}
@media (max-width: 950px) {
	.sub_bg01 {
		background-size: 350% 110%;
	}
}
.sub_bg02 {
	width: 100%;
	background: url(../img/sub_bg02.png);
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: 130% 70%;
	overflow: hidden;
	z-index: 0;
}
@media (max-width: 950px) {
	.sub_bg02 {
		background-size: 350% 88%;
	}
}
.sub_bg03 {
	width: 100%;
	background: url(../img/sub_bg03.png);
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: 130% 70%;
	overflow: hidden;
	z-index: 0;
}
@media (max-width: 950px) {
	.sub_bg03 {
		background-size: 342% 80%;
	}
}
.sp {
	display: none;
}
@media (max-width: 450px) {
	.sp {
		display: block;
	}
}
.pc {
	display: block;
}
@media (max-width: 605px) {
	.pc {
		display: none;
	}
}
/*=== 共通部分ここまで ===*/
/* header */
.header_sticky {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
}
.header {
	padding: 15px 5px;
	transition: all .5s;
	width: 100%;
	background-color: #fff;
	box-shadow: 0px 4px 4px -5px rgb(0 0 0 / 20%);
	z-index: 110;
	position: relative;
}
.header_inner {
	max-width: 1300px;
	width: 96%;
	margin: 10px auto 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header_title a {
	display: flex;
	align-items: center;
}
.header_logo {
	width: 275px;
}
.header_logo_left {
	margin-right: -1px;
	max-width: 37px;
}
.header h1 {
	transition: .3s;
	z-index: 110;
}
.header_title:hover h1 {
	opacity: 0.6;
	transition: .3s;
}
.header ul {
	display: flex;
	text-align: center;
	align-items: center;
}
.header ul li {
	width: calc(100% / 6);
	padding: 0 5px;
	border-left: 1px dotted #ddd;
	height: 65px;
	display: flex;
	align-items: center;
}
.header ul li:last-child {
	border-right: 1px dotted #ddd;
}
.header ul li a {
	display: block;
	width: 100%;
	transition: all .3s;
	position: relative;
	top: 0;
	padding: 5px 0;
	color: #593202;
	font-size: 0.95rem;
}
.header ul li a:hover {
	top: -3px;
	color: #593202;
}
.header ul li a::after {
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #8BC882;
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translate(-50%, 0);
	opacity: 0;
	transition: 0.4s;
}
.header ul li a:hover::after {
	opacity: 1;
}
.header_item {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.header_item > div {
	margin: 0 6px;
}
.header_item .mainbtn a {
	width: 195px;
	padding: 5px 0;
}
/* アイコンボタン */
.iconbtn {
	display: block;
	position: relative;
	width: 41px;
	height: 41px;
	background: #fff;
	color: #5eb551;
	border: 2px solid #5eb551;
	border-radius: 50%;
	text-align: center;
}
.iconbtn i {
	position: absolute;
	top: 50%;
	left: 52%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	font-size: 22px;
}
/*Safari*/
::-webkit-full-page-media, :future, :root .iconbtn i {
	left: 53%;
}
.iconbtn:hover {
	color: #fff;
	background: #5eb551;
}
.tel {
	border-bottom: 2px solid #8BC882;
}
.tel a {
	color: #593202;
	font-size: 1.5rem;
}
.tel a:hover {
	opacity: 0.6;
}
.info {
	margin-top: 5.5px !important;
}
.menu_btn_mgt, .hamburger_menu, .header_inner label {
	display: none;
}
/* ハンバーガーメニュー */
/* 電話番号 */
.hum_tel {
	text-align: center;
	margin-bottom: 10px;
	font-size: 1.2rem;
}
/* ボタン */
.menu_btn {
	position: fixed;
	top: 16px;
	right: 20px;
	cursor: pointer;
	display: flex;
	height: 25px;
	width: 25px;
	justify-content: center;
	align-items: center;
	z-index: 110;
}
@media (max-width: 450px) {
	.menu_btn {
		top: 10px;
	}
}
@media (max-width: 300px) {
	.menu_btn {
		top: 1.5%;
		right: 4%;
	}
	.hum_br {
		display: none;
	}
}
.menu_btn span, .menu_btn span:before, .menu_btn span:after {
	content: '';
	display: block;
	height: 3px;
	width: 30px;
	background: #593202;
	position: absolute;
	transition: all 0.4s;
}
.menu_btn span:before {
	bottom: 8px;
}
.menu_btn span:after {
	top: 8px;
}
#menu_btn_check:checked ~ .menu_btn span {
	background-color: rgba(255, 255, 255, 0) !important;
	transition: all 0.4s;
}
#menu_btn_check:checked ~ .menu_btn span::before {
	bottom: 0;
	transform: rotate(45deg) !important;
	transition: all 0.4s;
}
#menu_btn_check:checked ~ .menu_btn span::after {
	top: 0;
	transform: rotate(-45deg) !important;
	transition: all 0.4s;
}
#menu_btn_check {
	display: none;
}
/* ハンバーガー内メニュー */
.menu_content {
	width: 100%;
	height: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 80;
	background-size: cover;
	background-position: center;
	overflow: auto;
}
.menu_content .menu_padding {
	margin: 105px 30px auto;
	padding: 20px;
	background: #fff;
	border-radius: 20px;
}
@media (max-width: 450px) {
	.menu_content .menu_padding {
		margin: 75px 30px auto;
	}
}
.menu_content nav {
	padding: 0 30px 20px;
}
.menu_content ul {
	text-align: center;
}
.menu_content ul li {
	border-bottom: 1px dotted #ddd;
	padding: 3px 0;
	list-style: none;
}
.menu_content ul li a {
	display: block;
	width: 100%;
	font-size: 1.1rem;
	box-sizing: border-box;
	text-decoration: none;
	padding: 9px 0;
	position: relative;
	color: #593202;
}
.menu_content {
	width: 100%;
	height: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 0;
	background: #8BC882;
	transition: all 0.6s;
	pointer-events: none;
	opacity: 0;
}
#menu_btn_check:checked ~ .menu_content {
	opacity: 1;
	pointer-events: auto;
}
@media (max-width: 1000px) {
	.header {
		padding: 10px 20px;
	}
	.menu_btn_mgt, .hamburger_menu, .header_inner label {
		display: block;
	}
	.header_nav {
		display: none;
	}
	.header .inner {
		display: none;
	}
	.header_inner {
		margin: 0 auto;
	}
}
@media (max-width: 450px) {
	.header_title {
		width: 200px;
	}
	.header {
		padding: 10px;
	}
}
/* footer */
/* フッターお問い合わせリンク */
.footer_contact {
	position: relative;
	z-index: 1;
	background: url(../img/bg_contact.jpg);
	background-size: cover;
	background-position: 50% 20%;
	padding: 40px 0 60px;
	text-align: center;
	background-attachment: fixed;
}
/*Safari*/
::-webkit-full-page-media, :future, :root .footer_contact {
	background-attachment: scroll;
}
.footer_contact::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	opacity: 0.7;
	z-index: -1;
}
.footer_contact .maintitle {
	margin-bottom: 40px;
}
.btn_wrap {
	display: flex;
	justify-content: space-around;
	margin: 40px auto 0;
	max-width: 1000px;
}
.btn_wrap .btn {
	width: 305px;
	margin: 0 auto;
	margin-bottom: 30px;
}
.btn_wrap .btn a {
	display: block;
	width: 100%;
	border-radius: 20px;
	border: 2px solid #593202;
	color: #fff;
	padding: 13px 0;
	font-size: 1.3rem;
	background-color: #593202;
}
.btn_wrap .btn a span {
	font-size: 1.05rem;
}
.btn_wrap .btnflex a {
	display: flex;
	align-items: center;
	justify-content: center;
}
.mailbtn i {
	margin-right: 7px;
}
.btn_wrap .fax a {
	background-color: #fff;
	color: #593202;
}
.btn_wrap .btn a:hover {
	background-color: #fff;
	color: #593202;
}
@media (max-width: 1020px) {
	.btn_wrap .btn a {
		height: auto;
	}
	.footer_contact .btn_wrap {
		display: block;
	}
	.footer_contact .btn_wrap .btn {
		width: 70%;
		min-width: 310px;
	}
}
@media (max-width: 450px) {
	.footer_contact .btn_wrap .btn a {
		font-size: 1.1rem;
	}
}
@media (max-width: 350px) {
	.footer_contact .btn_wrap .btn {
		min-width: auto;
		width: 90%;
	}
}
/* ロゴとアドレス */
.footer_address h3 {
	transition: .3s;
	z-index: 110;
	pointer-events: none;
}
.footer_address h3 a {
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer_address img {
	max-width: 300px;
	pointer-events: auto;
}
.footer_title h3 {
	margin: 0 auto 30px;
}
.footer_title h3:hover {
	opacity: 0.6;
	transition: .3s;
}
.footer_address {
	position: relative;
	text-align: center;
	padding: 35px 0 20px;
}
.footer_address p {
	margin-bottom: 0;
	font-weight: 700;
	font-size: 1.15rem;
}
@media (max-width: 550px) {
	.footer_title h3 {
		margin: 0 auto 20px;
	}
	.footer_address img {
		max-width: 65vw;
	}
	.footer_address p {
		font-size: 1rem;
	}
}
/* コピーライト */
.copyright {
	margin: 0;
	text-align: center;
	padding: 15px 0;
	background: #593202;
	color: #fff;
	font-weight: 500;
}
/*ページ上に戻るボタン*/
.go_top {
	display: block;
	width: 65px;
	height: 65px;
	box-sizing: border-box;
	border: 2.5px solid #fff;
	background: #5eb551;
	padding-top: 30px;
	text-align: center;
	letter-spacing: -1px;
	font-size: 85%;
	text-decoration: none;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 79;
	border-radius: 50px;
}
.go_top::before {
	content: "";
	display: block;
	border-top: 3.5px solid #fff;
	border-right: 3.5px solid #fff;
	width: 37%;
	height: 37%;
	top: 22px;
	left: 0;
	right: 0;
	margin: auto;
	position: absolute;
	transform: rotate(-45deg);
}
.go_top:hover {
	background: #fff;
	border: 2.5px solid #5eb551;
}
.go_top:hover::before {
	border-top: 3.5px solid #5eb551;
	border-right: 3.5px solid #5eb551;
}
@media(max-width:450px) {
	.go_top {
		width: 55px;
		height: 55px;
		text-indent: -9999px;
		bottom: 10px;
		right: 10px;
		opacity: 1;
	}
	.go_top::before {
		bottom: 18px;
	}
}
.center {
	text-align: center;
}
/* margin-bottom */
.mgb100 {
	margin-bottom: 100px;
}
.mgb60 {
	margin-bottom: 60px !important;
}
.mgb30 {
	margin-bottom: 30px !important;
}
/* sp margin-bottom */
@media(max-width:950px) {
	.sp_mgb40 {
		margin-bottom: 40px !important;
	}
	.sp_mgb30 {
		margin-bottom: 30px !important;
	}
	.sp_mgb20 {
		margin-bottom: 20px !important;
	}
	.sp_mgb15 {
		margin-bottom: 15px !important;
	}
}
/* スライド */
.slide_inner {
	width: 100%;
}
.topslide {
	overflow: hidden;
	position: relative;
	clip-path: ellipse(100% 100% at top);
}
.slide_items {
	width: 100%;
	overflow: hidden;
}
.slide_items img {
	width: 100%;
	height: 750px;
	object-fit: cover;
}
.slide_text {
	white-space: nowrap;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	font-size: clamp(1.5rem, 0.6rem + 3.2vw, 3rem);
	letter-spacing: 0.2em;
	text-shadow: 0px 1px 2px rgb(0 0 0 / 40%);
	color: #fff;
}
.slide_br {
	display: none;
}
@media (max-width: 950px) {
	.slide_items img {
		height: 550px;
	}
	.slide_br {
		display: block;
	}
}
@media (max-width: 750px) {
	.slide_items img {
		height: 350px;
	}
}
@media (max-width: 295px) {
	.slide_text {
		font-size: 8vw;
		left: 51.6%;
	}
}
/* 左に画像 */
.inner_leftimg {
	width: 92%;
	margin-right: auto;
}
.inner_leftimg p {
	padding-left: 7%;
}
/* 右に画像 */
.inner_rightimg {
	width: 92%;
	margin-left: auto;
}
.inner_rightimg p {
	padding-right: 7%;
}
.top_rbtn {
	margin-top: 50px;
	padding-right: 7%;
}
.inner_leftimg p, .inner_rightimg p {
	max-width: 831px;
	margin: auto;
}
.inner_leftimg img {
	border-radius: 0 20px 20px 0;
}
.inner_rightimg img {
	border-radius: 20px 0 0 20px;
}
.inner_leftimg .flexbox, .inner_rightimg .flexbox {
	align-items: center;
}
@media(max-width:950px) {
	.inner_leftimg p, .inner_rightimg p {
		max-width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
	.top_rbtn {
		margin-top: 30px;
		padding-right: 0;
	}
	.inner_leftimg, .inner_rightimg {
		margin: auto;
	}
	.inner_leftimg img, .inner_rightimg img {
		border-radius: 20px;
	}
}
/* 種子島物産合同会社について */
.box a {
	display: block;
	position: relative;
}
.box a img {
	display: block;
	border-radius: 20px;
	width: calc(100% - 10px);
	margin: 0 0 0 auto;
}
.box a p {
	display: inline-block;
	background-color: #5eb551;
	color: #fff;
	text-align: center;
	width: 300px;
	border-radius: 20px;
	padding: 25px 0;
	position: absolute;
	left: 0;
	bottom: 0;
	transform: translateY(10px);
	transition: 0.3s;
	line-height: 1;
	border: 2px solid #fff;
}
.box a:hover p {
	transform: translateY(10px) translateX(10px);
}
.box a:hover {
	transform: scale(1.01, 1.01);
}
.box a:hover img {
	box-shadow: rgb(0 0 0 / 20%) 0px 2px 8px 0px;
}
@media (max-width: 950px) {
	.box {
		width: 100%;
		max-width: 600px;
		margin: 0 auto;
		margin-bottom: 30px;
	}
	.box a img {
		width: 100%;
	}
	.box a:hover p {
		transform: translateY(10px) translateX(0);
	}
}
@media (max-width: 450px) {
	.box a p {
		width: 67%;
	}
}
@media (max-width: 360px) {
	.box a p {
		width: 85%;
	}
}
/* さとうきびについての上 */
.about {
	background: url(../img/about.jpg);
	background-attachment: fixed;
	background-position: 25% 50%;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 220px 0;
	position: relative;
}
/*Safari*/
::-webkit-full-page-media, :future, :root .about {
	background-attachment: scroll;
}
@media (max-width: 750px) {
	.about {
		padding: 120px 0;
	}
}
@media (max-width: 450px) {
	.about {
		padding: 145px 0;
	}
}
/* 種子島の広大なさとうきび畑で和気あいあいと働く */
.recruit_br {
	display: block;
}
@media (max-width: 1300px) {
	.recruit_br {
		display: none;
	}
}
/* 下層ページトップ ================================*/
.kasou_top {
	height: 320px;
	width: 100%;
	display: flex;
	align-items: center;
	background: url(../img/kasou.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 45%;
}
.kasou_top .inner {
	max-width: 80%;
}
.kasou_top h2 {
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
	text-shadow: 0px 0.3px 3px rgb(0 0 0 / 25%), 0px -0.3px 3px rgb(0 0 0 / 25%);
	text-align: center;
	line-height: 1.6;
}
@media(max-width:950px) {
	.kasou_top {
		height: 250px;
		background-position: 50% 57%;
	}
	.kasou_top h2 {
		font-size: 1.9rem;
	}
	.kasou_top .inner {
		max-width: 90%;
	}
}
@media(max-width:550px) {
	.kasou_top {
		height: 180px;
	}
	.kasou_top h2 {
		font-size: 1.4rem;
		text-shadow: 0px 0.3px 3px rgb(0 0 0 / 35%), 0px -0.3px 3px rgb(0 0 0 / 35%);
	}
}
/* イラスト ================================*/
/* 左上と右下 */
.sub_illust::before {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: url(../img/sub_illust01.svg), url(../img/sub_illust02.svg);
	background-repeat: no-repeat;
	background-position: top left, bottom right;
	background-size: 18%, 25%;
	z-index: -1;
	opacity: 0.7;
}
@media(max-width:650px) {
	.sub_illust::before {
		background-size: 40%, 45%;
	}
}
/* 右上と左下 */
.sub_illust_tb::before {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: url(../img/sub_illust_b.svg), url(../img/sub_illust_t.svg);
	background-repeat: no-repeat;
	background-position: top right, bottom left;
	background-size: 20%, 25%;
	z-index: -1;
	opacity: 0.7;
}
@media(max-width:650px) {
	.sub_illust_tb::before {
		background-size: 40%, 45%;
	}
}
/* 右上 */
.sub_illust_t::before {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: url(../img/sub_illust_t.svg);
	background-repeat: no-repeat;
	background-position: top right;
	background-size: 25%;
	z-index: -1;
	opacity: 0.7;
}
@media(max-width:650px) {
	.sub_illust_t::before {
		background-size: 45%;
	}
}
/* 左上 */
.sub_illust_t02::before {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: url(../img/sub_illust01.svg);
	background-repeat: no-repeat;
	background-position: top left;
	background-size: 18%;
	z-index: -1;
	opacity: 0.7;
}
@media(max-width:650px) {
	.sub_illust_t02::before {
		background-size: 45%;
	}
}
/* 左下 */
.sub_illust_b::before {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: url(../img/sub_illust_b.svg);
	background-repeat: no-repeat;
	background-position: bottom left;
	background-size: 20%;
	z-index: -1;
	opacity: 0.7;
}
@media(max-width:650px) {
	.sub_illust_b::before {
		background-size: 40%;
	}
}
/* 左下 */
.sub_illust_b::before {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: url(../img/sub_illust_b.svg);
	background-repeat: no-repeat;
	background-position: bottom left;
	background-size: 20%;
	z-index: -1;
	opacity: 0.7;
}
@media(max-width:650px) {
	.sub_illust_b::before {
		background-size: 40%;
	}
}
/* 横一列 */
.sub_illust_l::before {
	content: "";
	width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	top: 35%;
	bottom: 0;
	background: url(../img/sub_illust03.svg);
	background-size: 70%;
	background-repeat: repeat-x;
	opacity: 0.7;
	z-index: -1;
}
@media(max-width:650px) {
	.sub_illust_l::before {
		background-size: 140%;
	}
}
/* 会社案内 ================================*/
/* 代表者ご挨拶 */
.welcome {
	font-size: 1.05rem;
}
.gimg img {
	object-fit: cover;
	height: 370px;
	width: 100%;
	object-position: 50% 35%;
}
@media(max-width:750px) {
	.gimg img {
		height: 270px;
	}
}
@media(max-width:450px) {
	.gimg img {
		height: 200px;
	}
}
.fleximg {
	display: flex;
}
.fleximg img {
	object-fit: cover;
}
.greeting {
	background-size: 113% 29%;
}
.greeting .inner {
	max-width: 1020px;
	margin: auto;
}
@media(max-width:550px) {
	.greeting {
		background-size: 460% 57%;
	}
}
.greeting_last {
	text-align: right;
	margin-bottom: 0 !important;
}
/* 会社概要 */
.info_table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
.info_table tr {
	border: 2px solid #f5f5f5;
}
.info_table th, .info_table td {
	padding: 15px 0;
}
.info_table th {
	background: #5eb551;
	color: #fff;
	width: 30%;
	border-right: 2px solid #f5f5f5;
}
.info_table td {
	padding-left: 10px;
	background: #fff;
	width: 70%;
	border-right: 2px solid #f5f5f5;
	border-left: 2px solid #f5f5f5;
}
/* アクセスマップ */
.mapbox {
	padding: 30px 40px 40px;
	background: #fff;
	border-radius: 20px;
	z-index: 1;
	position: relative;
	box-shadow: rgb(0 0 0 / 7%) 0px 2px 8px 0px;
}
@media (max-width: 700px) {
	.mapbox {
		padding: 20px;
	}
}
.mapbox .mtitle {
	margin-bottom: 7px;
}
.map_mgb {
	margin-bottom: 40px !important;
}
@media (max-width: 450px) {
	.map iframe {
		height: 250px;
	}
}
/* 事業内容 ================================*/
@media (max-width: 450px) {
	.business .sub_illust_b::before {
		opacity: 0.5;
	}
}
.ai_c {
	align-items: center;
}
.pdb0 {
	padding-bottom: 0;
}
.maintenance_img .flexbox img {
	margin-bottom: 20px;
}
.mgl {
	margin-left: -10px;
}
/* さとうきびの一年 ================================*/
.mgb10{
	margin-bottom: 10px;
}
.oneyear .mapbox .maintitle{
	font-size: clamp(1.3rem, 1.06rem + 0.8533vw, 1.7rem);
}
.oneyear .mapbox .mtitle{
	margin-bottom: 70px;
}
@media (max-width: 600px) {
	.oneyear .mapbox .mtitle{
	margin-bottom: 45px;
}
	.oneyear .mgb10{
	margin-bottom: 5px;
}
}
/* さとうきびの一年 図 */
.oneyear .mapbox{
	padding-top: 40px;
	padding-bottom: 100px;
	max-width: 1100px;
	margin: auto;
}
@media (max-width: 500px) {
	.oneyear .mapbox{
		padding: 30px 15px 60px;
}
}
.boxmini{
	padding-bottom: 40px !important;
	
}
.minitext{
	max-width: 500px;
	margin: auto;
}
.year{
	width: 100%;
	max-width: 870px;
	margin: auto;
	border-radius: 0 !important;
}
.ymini{
	max-width: 720px;
}
.b0img img {
	border-radius: 0;
}
@media (max-width: 800px) {
	.year {
		max-width: 100%;
	}
}

/* 求人情報 ================================*/
.recruit::after {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: -25%;
	background: url(../img/sub_illust01.svg);
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: 18%;
	z-index: -1;
	opacity: 0.7;
}
@media(max-width:650px) {
	.recruit::after {
		bottom: -13%;
		background-size: 45%;
	}
	.recruit::before {
		top: -10%;
	}
}
@media(max-width:950px) {
	.rs_illust {
		background-size: 130% 70%;
	}
}
.recruit_text {
	max-width: 980px;
	margin: auto;
}
.recruit_slider .slick-slide {
	margin-left: 10px !important;
	transition: .3s ease;
}
.recruit_title::before {
	font-family: "Font Awesome 5 Free";
	content: "\f058";
	font-weight: bold;
	display: inline-block;
	color: #5eb551;
	margin-right: 0.4em;
	font-size: 0.93em;
}
.rb {
	color: #ff392b;
}
/* お問い合わせ ================================*/
.c_illust::before {
	background: url(../img/c_illust02.svg), url(../img/c_illust01.svg);
	background-repeat: no-repeat;
	background-position: top left, bottom right;
	background-size: 23%;
	z-index: -1;
	opacity: 1;
}
@media(max-width:450px) {
	.c_illust::before {
		background-size: 45%;
	}
}
.c_illust02::before {
	background: url(../img/c_illust03.svg), url(../img/c_illust04.svg);
	background-repeat: no-repeat;
	background-position: top right, bottom left;
	background-size: 27%, 25%;
	z-index: -1;
	opacity: 1;
}
@media(max-width:450px) {
	.c_illust02::before {
		content: none;
	}
}
.contact_text {
	font-size: 1.1rem;
	margin-bottom: 60px !important;
}
@media (max-width: 950px) {
	.contact_text {
		font-size: 0.95rem;
		margin-bottom: 30px !important;
	}
}
/*お電話でのお問い合わせ*/
.mgb40 {
	margin-bottom: 40px;
}
.cbox {
	padding: 10px 20px 30px;
	max-width: 550px;
	margin: auto;
	border-radius: 20px;
	background: #fff;
	box-shadow: rgb(0 0 0 / 7%) 0px 2px 8px 0px;
	margin-bottom: 40px;
}
.cbox p {
	margin-bottom: 0 !important;
	font-size: clamp(0.8rem, 0.71rem + 0.32vw, 0.95rem);
}
.tel_contact {
	text-align: center;
	padding: 15px 30px;
	line-height: 1.5;
}
@media (max-width: 950px) {
	.cbox {
		margin-bottom: 30px;
	}
}
@media (max-width: 450px) {
	.cbox {
		padding: 3px 10px 10px;
	}
	.tel_contact {
		padding: 0;
	}
	.cbox p {
		margin-bottom: 10px !important;
	}
}
.tel_contact a {
	display: block;
	font-size: clamp(1.8rem, 1.44rem + 1.28vw, 2.4rem);
	margin-bottom: 3px;
	white-space: nowrap;
	color: #593202;
}
.tel_contact a:hover {
	opacity: 0.6;
}
@media (max-width: 750px) {
	.tel_contact {
		padding: 10px 5px;
	}
}
/*メールフォーム*/
.mailform {
	max-width: 1100px;
	margin: 90px auto 0;
}
@media (max-width: 850px) {
	.mailform {
		margin: 50px auto 0;
	}
}
@media (max-width: 450px) {
	.mailform {
		margin-top: 0;
	}
}
.mailform .row {
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
}
.mailform .row:not(.last) {
	border-bottom: 0.5px dashed #593202;
}
.mailform .row div {
	text-align: left;
}
.mailform .row div:nth-child(1) {
	width: 28%;
	font-weight: 500;
	font-size: 0.9rem;
}
.mailform .row div:nth-child(2) {
	width: 70%;
	line-height: 1.5;
}
.mailform .row span {
	color: #fff;
	background: #5eb551;
	padding: 5px;
	margin-right: 5px;
	font-size: 11px;
	border-radius: 2px;
	font-weight: 500;
}
.mailform .row small {
	display: block;
	margin-top: 3px;
}
.mailform label {
	color: #593202;
	font-weight: 700;
}
.mailform .box, .mailform textarea {
	border: 1px solid #ddd;
	padding: 5px;
	width: 100% !important;
	border-radius: 0;
	-webkit-appearance: none;
	margin-bottom: 5px;
	background: #fff;
}
.mailform button {
	display: block;
	text-align: center;
	font-size: 1rem;
	font-weight: 500;
	padding: 8px 5px;
	margin: 0 auto;
}
.mailform button {
	white-space: nowrap;
	border: 2px solid transparent;
	color: #fff;
	background: #5eb551;
	font-weight: 400;
	padding: 2% 8%;
	border-radius: 50px;
	transition: .4s;
}
.mailform button:hover {
	background-color: #fff;
	color: #5eb551;
	border: 2px solid #5eb551;
	opacity: 1;
}
.mailform button::before {
	font-family: "Font Awesome 5 Free";
	content: "\f0e0";
	font-weight: 700;
	margin-right: 10px;
}
@media (max-width: 800px) {
	.mailform .row {
		padding: 20px 0;
		flex-direction: column;
	}
	.mailform .row div:nth-child(1) {
		width: 100%;
		margin-bottom: 20px;
	}
	.mailform .row div:nth-child(2) {
		width: 100%;
	}
}
/*プライバシーポリシー*/
.privacy {
	padding-top: 0;
}
.privacy_wrap {
	font-size: 1.4rem;
	font-weight: 500;
	margin: 0 auto;
	background: #fff;
	max-width: 1100px;
	border-bottom: 2px solid #5eb551;
}
@media(max-width:450px) {
	.privacy_wrap {
		font-size: 1.1rem;
		margin: 10px auto 20px;
	}
}
.privacy_item {
	position: relative;
	width: 100%;
	margin: 0 auto;
	cursor: pointer;
	padding: 0 10px;
}
.privacy_header {
	transition: ease-in-out 100ms;
	color: #593202;
	font-weight: 700;
}
.privacy_text {
	width: 100%;
	display: none;
	padding: 20px 35px 30px;
	background: #fff;
	line-height: 1.7;
	font-size: 0.95rem;
}
.privacy_text span {
	font-weight: 700;
}
@media(max-width:750px) {
	.privacy_text {
		padding: 20px 15px 30px;
	}
}
.privacy_text p {
	margin-bottom: 17px;
}
.arrow {
	transition: ease-in-out 300ms;
}
.rotate-fa {
	transform: rotate(180deg);
}
.privacy_header span {
	position: absolute;
	top: 50%;
	right: 3%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.privacy_gold {
	color: #5eb551;
}