@charset "utf-8";
html {
	line-height: 1;
	scroll-behavior: smooth;
}
body {
	font-size: 17px;
	font-weight: 300;
	font-family: source-han-sans-japanese, sans-serif;
	color: #333333;
}
img {
	width:100%;
}
a:hover {
	opacity: 0.8;
	transition: 0.3s;
}
.container {
	width:100%;
	margin:0 auto;
}
.inner {
	width:80vw;
	max-width: 1500px;
	margin:0 auto;
}
.pc {
	display: block;
}
.sp {
	display: none;
}
.center {
	text-align: center;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}
.absolute {
	position: absolute;
}
.relative {
	position: relative;
}
.bg-white {
	background-color:#fff;
}
.bg-light-blue {
	background-color:#f0f2f8;
}
.bg-light-brown {
	background-color:#ebebe7;
}
.text-white {
	color:#fff;
}
.text-red {
	color:#fe0000;
}
.text-vermilion {
	color:#d93213;
}
.text-blue {
	color:#0f3192;
}
.text-dark-blue {
	color:#1c2f60;
}
.font-weight-bold {
	font-weight: bold;
}
.br-03 {
	border-radius:3px;
}
.br-10 {
	border-radius:10px;
}
.pt-0 {
	padding-top: 0px!important;
}
.pt-10 {
	padding-top: 10px!important;
}
.pt-20 {
	padding-top: 20px!important;
}
.pt-30 {
	padding-top: 30px!important;
}
.pt-40 {
	padding-top: 40px!important;
}
.pt-50 {
	padding-top: 50px!important;
}
.pt-60 {
	padding-top: 60px!important;
}
.pt-70 {
	padding-top: 70px!important;
}
.pt-80 {
	padding-top: 80px!important;
}
.pt-90 {
	padding-top: 90px!important;
}
.pt-100 {
	padding-top: 100px!important;
}
.pt-120 {
	padding-top: 120px!important;
}
.pb-10 {
	padding-bottom: 10px!important;
}
.pb-20 {
	padding-bottom: 20px!important;
}
.pb-30 {
	padding-bottom: 30px!important;
}
.pb-40 {
	padding-bottom: 40px!important;
}
.pb-50 {
	padding-bottom: 50px!important;
}
.pb-60 {
	padding-bottom: 60px!important;
}
.pb-70 {
	padding-bottom: 70px!important;
}
.pb-80 {
	padding-bottom: 80px!important;
}
.pb-90 {
	padding-bottom: 90px!important;
}
.pb-100 {
	padding-bottom: 100px!important;
}
.pb-120 {
	padding-bottom: 120px!important;
}
.mt-10 {
	margin-top: 10px!important;
}
.mt-20 {
	margin-top: 20px!important;
}
.mt-30 {
	margin-top: 30px!important;
}
.mt-40 {
	margin-top: 40px!important;
}
.mt-50 {
	margin-top: 50px!important;
}
.mt-60 {
	margin-top: 60px!important;
}
.mt-80 {
	margin-top: 80px!important;
}
.mt-100 {
	margin-top: 100px!important;
}
.mb-10 {
	margin-bottom: 10px!important;
}
.mb-20 {
	margin-bottom: 20px!important;
}
.mb-30 {
	margin-bottom: 30px!important;
}
.mb-40 {
	margin-bottom: 40px!important;
}
.mb-60 {
	margin-bottom: 60px!important;
}
.mb-80 {
	margin-bottom: 80px!important;
}
.mb-100 {
	margin-bottom: 100px!important;
}

.ml-20 {
	margin-left: 20px;
}
.ml-30 {
	margin-left: 30px;
}
.ml-40 {
	margin-left: 40px;
}

.flex {
	display: flex;
}
.justify-center {
	justify-content: center;
}
.justify-between {
	justify-content: space-between;
}
.justify-around {
	justify-content: space-around;
}
.flex-wrap {
	flex-wrap: wrap;
}
.align-center {
	align-items: center;
}
.content-center {
	align-content: center;
}
.align-baseline {
	align-items: baseline;
}
.align-end {
	align-items: flex-end;
}
.col-1-2 {
	width:48%;
	margin:0 auto;
}
.col-1-3 {
	width:32%;
	margin:0 auto;
}
.col-2-3 {
	width:64%;
	margin:0 auto;
}
.col-1-4 {
	width:23%;
	margin:0 auto;
}
.col-3-4 {
	width:69%;
	margin:0 auto;
}
.col-1-5 {
	width:18%;
	margin:0 auto;
}
.col-4-5 {
	width:72%;
	margin:0 auto;
}
.col-1-6 {
	width:15%;
	margin:0 auto;
}

/* header */
header.fixed {
	position: fixed;
	padding: 20px 0;
	width:100%;
	z-index: 2;
}
header.active {
	background-color:#fff;
	transition: all 0.4s;
	box-shadow: 0 4px 4px rgba(15, 49, 146,0.25)
}
header .inner {
	width:90vw;
}
.gnav {
	width:80%;
	margin:0 auto;
}
.gnav ul {
	display: flex;
	justify-content: center;
	align-items: center;
}
.gnav ul li {
	margin:0 1.6vw;
	font-size:16px;
	line-height: 32px;
	font-weight:500;
	color:#fff;
	letter-spacing: 0.6px;
}
.gnav.text-gray ul li {
	color:#4D4D4D;
}
header.active .gnav ul li {
	color:#4D4D4D;
	transition: all 0.4s;
}
.gnav ul li a.cta {
	font-size:18px;
	line-height: 40px;
	padding:10px 32px;
	background-color: #0f3192;
	border-radius:50px; 
}
.gnav.text-gray ul li a.cta {
	color:#fff;
}
header.active .gnav ul li a.cta {
	color:#fff;	
}

/*=============================
.btn-trigger
=============================*/
.humberger-btn {
	top:10px;
	right: 10px;
	z-index: 2;
}
.btn-trigger {
  position: relative;
  width: 36px;
  height: 45px;
  cursor: pointer;
  border-radius: 100px;
  margin-top: 12px;
}
.btn-trigger span {
  position: absolute;
  left: 6px;
  width: 70%;
  height: 3px;
  background-color: #0f3192;
  border-radius: 3px;
}
.btn-trigger.bar-w span {
  background-color: #fff;
}
.active .btn-trigger.bar-w span {
  background-color: #0f3192;
}
.active .btn-trigger.active.bar-w span {
  background-color: #fff;
}
.btn-trigger.active span {
  background-color: #fff;
}
.btn-trigger, .btn-trigger span {
  display: inline-block;
  transition: all .3s;
  box-sizing: border-box;
}
.btn-trigger span:nth-of-type(1) {
  top: 6px;
}
.btn-trigger span:nth-of-type(2) {
  top: 16px;
}
.btn-trigger span:nth-of-type(3) {
  bottom: 16px;
}


/*=============================
#btn01
=============================*/
#btn01.active span:nth-of-type(1) {
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
}
#btn01.active span:nth-of-type(2) {
  opacity: 0;
}
#btn01.active span:nth-of-type(3) {
  -webkit-transform: translateY(-20px) rotate(45deg);
  transform: translateY(-12px) rotate(45deg);
}

/* sp nav */
.sp-nav-area {
	height: 0vh;
	opacity: 0;
    visibility: hidden;
  	pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sp-nav-area.active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	width:100%;
	height: 100%;
	background-color:#0f3192;
	top:0;
	right:0;
	z-index: 1;
    position: fixed;
    overflow-y: auto;
}
.sp-nav-area.active ul {
	width:85%;
	margin:100px auto 0;
}
.sp-nav-area.active li a {
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.8px;
	padding: 24px 0;
	border-bottom: 2px solid #fff;
	line-height: 30px;
	display: block;
	font-family: montserrat,source-han-sans-japanese, sans-serif;
}
.bt-white {
	border-top: 2px solid #fff;
}


/* main */
.catchcopy {
	position: absolute;
	bottom: -1.5vw;
	left:4vw;
	z-index: 1;
}
.catchcopy h1 {
	font-family: montserrat, sans-serif;
	font-weight:bold;
	font-size:90px;
	letter-spacing: 8px;
	line-height: 8vw/*110px*/;
	position: absolute;
	top:10vw;
	left:8vw;
}
.sub-catch {
	font-family: fot-udkakugo-large-pr6n, sans-serif;
	font-size:42px;
	font-weight: 700;
	letter-spacing: 2px;
}
.fv-rice {
	width:27vw;
}
.fv-rice-sp {
	display: none;
}
.double-rice {
	width:27vw;
}
#concept h2 {
	font-size:4.15vw/*64px*/;
	font-weight: 500;
	writing-mode: vertical-rl;
	line-height: 6.6vw/*100px*/;
	position: absolute;
	top: 35%;
	left: 50%;
	transform: translateY(-20%) translateX(-50%);
	-webkit- transform: translateY(-20%) translateX(-50%);
}
.concept-copy {
	position: absolute;
	top: -3vw;
	right:4vw;
	z-index: 1;
}
.concept-subcopy {
	position: absolute;
	top:7vw;
	right:34vw;
}
.concept-subcopy p {
	writing-mode: vertical-rl;
	font-size: 16px;
	line-height: 36px;
	letter-spacing: 2.4px;
}
#greeting {
	padding: 120px 0 60px;
}
#company {
	padding: 60px 0 120px;
}
#mv,#recruit {
	padding: 120px 0 120px;
}
.ttl {
	font-family: montserrat, sans-serif;
	font-weight:700;
	font-size:90px;	
}
.ttl .jp-ttl {
	font-size:28px;
	display: inline-block;
	margin-left: 40px;
	font-weight:500;
}
.ttl2 {
	font-size:2vw/*32px*/;
	font-weight: 500;
	letter-spacing: 1.8px;
	border-bottom:2px solid #bb9c65;
	padding-left:10px;
	padding-bottom: 1.5vw/*24px*/;
	margin-bottom: 24px;
	position: relative;
}
.ttl2 .ttl-deco {
	position: absolute;
	width:3.13vw/*48px*/;
	top:-3.6vw/*-54px*/;
	left:-2.6vw/*-40px*/;
}
#greeting p {
	line-height: 40px;
	letter-spacing: 0.8px;
	padding-left: 10px;
}
.ceo-name {
	font-size:28px;
	margin-top:40px;
}
.ceo-post {
	font-size:18px;
	display: inline-block;
	margin-right:20px;
}
#greeting .col-1-3 {
	margin:0;
}
#greeting .col-2-3 {
	width:44%;
}
.wide-img,.right-side {
	width:89.5vw;
	margin:120px 0 0 auto;
	position: relative;
}
.left-side {
	margin:180px 0;
} 
.wide-img-txt {
	font-size:34px;
	font-weight: 500;
	position: absolute;
	top:60px;
	left:21%;
	text-shadow: 0 0 8px rgba(24,56,127,0.42)
}
#company table {
	width: 87%;
	border-top: 2px solid #fff;
	margin-left: 54px;
}
#company table tbody tr {
	border-bottom: 2px solid #fff;	
}
#company table tbody tr th,#company table tbody tr td {
	padding: 16px 0;
	line-height: 28px;
	letter-spacing: 1.2px;
	font-weight:500;
}
#company table tbody tr th {
	color:#1c2f60;
	width:35%;
}
#mv .right-side .value-txt {
	width: 87%;
	margin-left: 54px;
	position: relative;
}
#mv .value-txt h4 {
	font-size:28px;
	font-weight: 500;
	letter-spacing: 1.2px;
	margin-top:34px;
	margin-bottom:24px;
	padding-left: 10px;
	z-index: 1;
	position: relative;
}

#mv .value-txt p {
	font-weight:500;
	line-height: 40px;
	letter-spacing: 0.8px;
	padding-left: 10px;
	z-index: 1;
	position: relative;
}

#mv .right-side .value-txt .rice-area {
	position: absolute;
	top:-63px;
	left: -91px;
	width:23vw;
	z-index: 0;
}
#mv .right-side .img-area {
	margin-right: 0!important;
}
#mv .left-side .value-txt {
	width: 88%;
	margin-left: 54px;
	position: relative;
}
#mv .left-side .value-txt .rice-area {
	position: absolute;
	top:-63px;
	right: -48px;
	width:23vw;
	z-index: 0;
}
.mv-br {
	display:none;
}
.toten {
	display: none;
}
.recruit-ttl {
	position: absolute;
	top:7vw/*36%*/;
	right:7vw/* 20%*/;
}
.recruit-ttl h3 {
	color:#fff;
	padding-bottom: 12px;
	font-size: 28px;
	font-weight: 500;
	letter-spacing: 0.8px;
}
.recruit-ttl p {
	color:#fff;
	border-top:2px solid #fff;
	padding-top: 12px;
	font-weight: 500;
	letter-spacing: 0.8px;
}
.btn-link-area {
	text-align: center;
	margin:40px 0 0;
}
.btn-link-area a {
	padding: 14px 0px;
	display: inline-block;
	margin:0 3px;
	letter-spacing: 0.8px;
	font-weight: 500;
	position: relative;
	text-align: center;
	width:30%;
}
.btn-link-area a::after {
	content: '';
	position: absolute;
	top: 4px;
	bottom: 0;
	right: 27px;
	width: 9px;
	height: 9px;
	margin: auto;
	transform: rotate(45deg);
	box-sizing: border-box;
}
.new-recruit-area .btn-link-area a {
	border:2px solid #0f3192;
	color:#0f3192;
}
.new-recruit-area .btn-link-area a:hover {
	color:#fff;
	background-color:#0f3192;
	transition: all 0.3s;
	opacity: 1;
}
.new-recruit-area .btn-link-area a::after {
	border-top: 2px solid #0f3192;
	border-right: 2px solid #0f3192;
}
.new-recruit-area .btn-link-area a:hover::after {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}
.career-recruit-area .btn-link-area a {
	border:2px solid #d93213;
	color:#d93213;
}
.career-recruit-area .btn-link-area a:hover {
	color:#fff;
	background-color:#d93213;
	transition: all 0.3s;
	opacity: 1;
}
.career-recruit-area .btn-link-area a::after {
	border-top: 2px solid #d93213;
	border-right: 2px solid #d93213;
}
.career-recruit-area .btn-link-area a:hover::after {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}
/* footer */
footer {
	padding: 10px 0;
	text-align: center;
}
footer small {
	font-size:12px;
	letter-spacing: 0.8px;
}

/* under */
#under .catchcopy {
	position: absolute;
	bottom: 15vw;
	left:16vw;
	z-index: 1;
}
#under .catchcopy h1 {
	font-family: montserrat, sans-serif;
	letter-spacing: 1.2px;
	line-height: 4vw;
	position: unset;
	color:#fff;
}
#under .sub-catch {
	font-size:32px;
	font-weight: 500;
	letter-spacing: 2.4px;
	border-left: 18px solid #fff;
	padding-left: 16px;
	margin-left: 8px;
	line-height: 0;
	font-family: source-han-sans-japanese, sans-serif;
	display: inline-block;
	height: 30px;
	align-content: center;
}
#under .recruit-ttl {
	position: absolute;
	top:36%;
	right: 34%;
}
#under .recruit-ttl.career-ttl {
	position: absolute;
	top:36%;
	left:32%;
	right: unset;
}
#under .recruit-ttl h3 {
	color:#333333;
	padding-bottom: 12px;
	font-size: 36px;
	font-weight: 500;
	letter-spacing: 0.8px;
}
#under .recruit-ttl p {
	color:#333333;
	border-top:2px solid #e6e6e6;
	padding-top: 12px;
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 0.8px;
}
#under h2 {
	font-size:32px;
	font-weight: 500;
	letter-spacing: 1.2px;
	text-align: center;
	margin-bottom: 40px;
}
#oc-select {
	padding: 80px 0 0;
}
#oc-select h2 {
	font-size: 28px;
	font-weight: 500;
	letter-spacing: 0.8px;
	border-bottom: 2px solid #fff;
	width:fit-content;
	margin:0 auto;
	padding-bottom: 10px;
}
#oc-select ul {
	display: flex;
	justify-content: center;
	width:43%;
	margin:24px auto 0;
}
#oc-select ul li {
	border-right: 10px solid #bb9c65;
	width:30%;
	text-align: center;
}
#oc-select ul li:nth-child(3) {
	border-right: none;
}
#oc-select ul li a {
	font-size:22px;
	font-weight:500;
	color:#0f3192;
	display: inline-block;
	letter-spacing: 1.2px;
}
#sales,#technical,#manufacturing {
	padding:60px 0 80px;
}
.atmosphere-box {
	display: flex;
	justify-content: center;
	margin-bottom: 60px;
}
.atmosphere-box .img-area {
	width:40%;
}
.atmosphere-box .img-area img {
	border-radius: 8px 0 0 8px;
}
.atmosphere-box .txt-area{
	width:60%;
	background-color:#fff;
	border-radius: 0 8px 8px 0;
	padding:40px 58px;
}
.atmosphere-box .txt-area h3 {
	font-size:30px;
	color:#a07c3e;
	font-weight: 500;
	margin-bottom: 30px;
}
.atmosphere-box .txt-area p {
	line-height: 38px;
	font-weight: 500;
}
.heading02 {
	position: relative;
	font-size: 30px!important;
	padding-bottom: 16px;
	margin-bottom: 30px;
}

.heading02::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	width: 48px;
	height: 7px;
	background-color: #bb9c65;
}
.requirement-area table {
	width:80%;
	margin:0 auto 60px;
}
.requirement-area table tbody tr {
	border-bottom: 2px solid #fff;
}
.requirement-area table th , .requirement-area table td {
	align-content: center;
	letter-spacing: 0.8px;
	height: 97px;
	min-height: 97px;
}
.requirement-area table th {
	width:30%;
	font-size: 18px;
	font-weight: 600;
	color:#1c2f60;
}
.requirement-area table th .bracket {
	font-size:15px;
	color:#333333;
}
.requirement-area table td {
	line-height: 28px;
	font-weight: 500;
	padding: 20px 0;
}
.requirement-area table td.flow-td {
	font-size:18px;
	letter-spacing: 0.6px;
	font-weight: 600;
}
.requirement-area table td .asterisk-txt {
	color:#666666;
	font-size:15px;
}
.triangle-right {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #0f3192;
  margin-bottom:1px;
	display:inline-block;
}
.cta-area {
	text-align: center;
}
.cta-area a {
	color:#fff;
	font-family: montserrat,source-han-sans-japanese, sans-serif;
	border-radius: 4px;
	background-color:#1c2f60;
	text-align: center;
	padding: 20px 0 16px;
	width:480px;
	display: inline-block;
	line-height: 24px;
	letter-spacing: 1.6px;
	font-size:16px;
}
.cta-area a span {
	font-size:28px;
}
#entry h1 {
	text-align: center;
	font-size: 96px;
	font-weight:600;
	line-height: 48px;
	font-family: montserrat,source-han-sans-japanese, sans-serif;
	margin-top: 90px;	
}
#entry h1 .sub-catch {
	font-size: 24px;
	color:#666666;
}
#entry table {
	width:60%;
	margin:0 auto;
}
#entry table th, #entry table td {
	padding: 16px 0;
}
#entry table th {
	font-size: 18px;
	font-weight:500;
	width:30%;
}
#entry table th p {
	margin-top:12px;
}
#entry table th .amendment {
	font-size:14px;
	color:#666666;
}
#entry table th .must {
	font-size:12px;
	color:#007cc6;
	vertical-align: top;
}
#entry table td {
	align-content:end;
}
#entry table td .w-30 {
	width:30%!important;
}
#entry table td .w-90 {
	width:90%!important;
}
#entry table td .amendment-txt {
	font-size:12px;
	line-height:20px;
	color:#666666;
	margin-top:20px;
	display:inline-block;
}
#entry table td input[type=radio] {
	appearance:auto;
}
#entry table td input[type=text] ,
#entry table td input[type=email] ,
#entry table td input[type=tel] ,
#entry table td input[type=date] {
	background-color:#fff;
	padding:10px 20px;
	width:100%;
}
#entry table td select {
	background-color:#fff;
	padding:10px 20px;
	width:28%;
}
.wpcf7-list-item.first {
	margin-left:0!important;
}
.submit-btn {
	color:#fff;
	font-size:18px;
	border-radius:50px;
	width:280px;
	padding:16px 0;
	background-color:#1c2f60;
	margin:60px 10px 0;
}
.previous-btn {
	background-color:#EBEBE7;
	color:#333333;
	font-size:18px;
	border-radius:50px;
	width:280px;
	padding:16px 0;
	margin:60px 10px 0;
}
.thanks {
	height:92vh;
}
.thanks-txt {
	min-height:40vh;
}
.thanks-txt p {
	font-size:24px;
	font-weight:500;
	line-height:36px;
}
@media screen and (max-width:1264px) {
	.concept-subcopy {
		top:4vw;
	}
	.concept-subcopy p {
		font-size:14px;
		line-height:28px;
	}
}
@media screen and (max-width:1064px) {
	.gnav ul li {
		margin:0 1vw;
		font-size:14px;
	}
	.catchcopy h1 {
		font-size:74px;
	}
	.sub-catch {
		font-size:36px;		
	}
	.concept-subcopy {
		top:2vw;
	}
	.concept-subcopy p {
		font-size:13px;
		line-height:24px;
	}
	.recruit-ttl h3 {
		font-size: 18px;
	}
}
@media screen and (min-width:901px) {
	.mv-br-tab {
		display:none;
	}
	.w-768 {
		display:none;
	}
	.w-540 {
		display:none;
	}
}
@media screen and (max-width: 900px) {
	body {
		font-size: 14px;
	}
	.container  {
		max-width: 90%;
	}
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.pt-0-sp {
		padding-top: 0px!important;
	}
	.pt-10-sp {
		padding-top: 10px!important;
	}
	.pt-20-sp {
		padding-top: 20px!important;
	}
	.pt-30-sp {
		padding-top: 30px!important;
	}
	.pt-40-sp {
		padding-top: 40px!important;
	}
	.pt-60-sp {
		padding-top: 60px!important;
	}
	.pt-80-sp {
		padding-top: 80px!important;
	}
	.pb-0-sp {
		padding-bottom: 0px!important;
	}
	.pb-10-sp {
		padding-bottom: 10px!important;
	}
	.pb-20-sp {
		padding-bottom: 20px!important;
	}
	.pb-30-sp {
		padding-bottom: 30px!important;
	}
	.pb-40-sp {
		padding-bottom: 40px!important;
	}
	.pb-60-sp {
		padding-bottom: 60px!important;
	}
	.pb-80-sp {
		padding-bottom: 80px!important;
	}
	.m-0-sp {
		margin: 0!important;
	}
	.mt-10-sp {
		margin-top:10px!important;
	}
	.mt-20-sp {
		margin-top:20px!important;
	}
	.mt-30-sp {
		margin-top:30px!important;
	}
	.mt-40-sp {
		margin-top:40px!important;
	}
	.mt-60-sp {
		margin-top:60px!important;
	}
	.mb-10-sp {
		margin-bottom:10px!important;
	}
	.mb-20-sp {
		margin-bottom:20px!important;
	}
	.mb-30-sp {
		margin-bottom:30px!important;
	}
	.mb-40-sp {
		margin-bottom:40px!important;
	}
	.mb-60-sp {
		margin-bottom:60px!important;
	}
	.flex-reverse-sp {
		flex-direction: column-reverse;
	}
	.col-1-2 ,.col-1-3 ,.col-2-3 ,.col-1-4 ,.col-3-4 ,.col-1-5 ,.col-4-5 {
		width:100%;
		margin:0;
	}
	header.fixed {
		padding: 0;
	}
	header .fixed {
		top:10px;
	}
	header .inner {
		width:100%;
	}
	.inner {
		width:90%;
	}
	.logo {
		width:120px;
	}
	.catchcopy {
		bottom:0;
		top:40vw;
	}
	.catchcopy h1 {
		line-height: 74px;
		font-size:60px;
		left:2vw;
	}
	.sub-catch {
		font-size:28px;
		margin-left:30px;
	}
	.fv-rice {
		display: none;
	}
	.fv-rice-sp {
		width:50vw;
		position: absolute;
		z-index: -1;
		left:-14vw;
		top:-20vw;
		display: block;
	}
	.double-rice {
		width:22vw;
	}
	#concept h2 {
		font-size: 24px;
		line-height: 32px;
		left:48%;
	}
	.concept-copy {
		right: 38vw;
	}
	.concept-subcopy {
		top:290px;
		right: 0;
		left: 0;
		width:90%;
		margin:0 auto;
	}
	.concept-subcopy p {
		writing-mode:unset;
		font-size:14px;
		line-height: 22px;
	}
	.ttl {
		font-size:54px;
		text-align: center;
		line-height: 36px;
	}
	.ttl .jp-ttl {
		margin-left: 0;
		font-size: 20px;
	}
	.ttl2 {
		font-size:24px;
		padding-left: 20px;
		padding-bottom: 16px;
		width:90%;
		margin:0 0 20px auto;
	}
	.ttl2 .ttl-deco {
		width: 36px;
		top:-41px;
		left:-30px;
	}
	#greeting {
		padding: 60px 0 30px;
	}
	#greeting .flex {
		display: block;
	}
	#greeting .flex .col-2-3 {
		width:100%;
	}
	#greeting .flex .col-2-3 p {
		line-height: 24px;
	}
	.ceo-name {
		font-size:18px;
		margin-top: 20px;
		margin-bottom: 60px;
	}
	.ceo-post {
		font-size: 14px;
	}
	#company {
		padding: 30px 0 60px;		
	}
	#company table {
		width: 85%;
		margin: 0 auto 60px;
	}
	#company table tbody tr th, #company table tbody tr td {
		line-height: 20px;
	}
	.wide-img {
		width: 100%;
		margin:0;
	}
	.wide-img-txt {
		font-size:22px;
		line-height: 32px;
		letter-spacing: 1.2px;
		top:24px;
		left:10%;
	}
	.bg-light-blue-sp {
		background-color:#f0f2f8!important;
	}
	#mv {
		padding: 0 0 60px;
	}
	#mv .ttl {
		line-height: 36px;
		letter-spacing: 1.2px;
	}
	#mv .ttl .text-blue {
		/*margin-left: 6px;*/
	}
	#mv .ttl .jp-ttl {
		/*margin-left:10px;*/
	}
	.right-side {
		width:100%;
		margin:0;
	}
	.left-side {
		margin:60px 0 80px;
	}
	#mv .left-side .value-txt .rice-area ,#mv .right-side .value-txt .rice-area {
		display: none;
	}
	#mv .right-side .value-txt {
		width:90%;
		margin:0 auto 40px;
	}
	#mv .left-side .value-txt {
		width:100%;
		margin-left: 0;
		margin-bottom: 40px;
	}
	#mv .ttl2 {
		/*font-size: 20px;*/
		font-size: 16px;
		line-height: 28px;
		/*padding-left: 20px;*/
		padding-left: 4px;
		width:95%;
	}
	#mv .ttl2 .ttl-deco {
		/*top:-9px;*/
		top:-37px;
	}
	#mv .value-txt h4 {
		/*font-size: 20px;*/
		font-size: 16px;
		margin-top:30px;
		margin-bottom:12px;
	}
	#mv .value-txt p {
		line-height: 26px;
	}	
	.mv-br-tab {
		display:block;
	}
	.toten {
		display: inline;
	}
	#recruit {
		padding: 0 0 60px;
	}
	#recruit .inner {
		width: 100%;
	}
	.recruit-ttl {
		top:16vw;
		right: 24vw;
	}
	.recruit-ttl h3 {
		font-size: 24px;
	}
	.btn-link-area {
		text-align: center;
		margin:20px 0 24px;
	}
	.btn-link-area a {
		padding: 12px 0px;
	}
	.btn-link-area a::after {
		top: 2px;
		right: 18px;
		width: 7px;
		height: 7px;
	}
	/* under */
	#under .catchcopy {
		position: absolute;
		bottom: 30vw;
		left:8vw;
		top:unset;
		z-index: 1;
	}
	#under .catchcopy h1 {
		font-family: montserrat, sans-serif;
		letter-spacing: 1.2px;
		line-height: 13vw;
		position: unset;
		color:#fff;
		font-size: 54px;
	}
	#under .sub-catch {
		font-size:24px;
		font-weight: 500;
		letter-spacing: 2.4px;
		border-left: 12px solid #fff;
		padding-left: 10px;
		margin-left: 6px;
		height: 24px;
	}
	#under .recruit-ttl, #under .recruit-ttl.career-ttl {
		position: absolute;
		top:32%;
		right: 7%;
		left:unset;
	}
	#under .recruit-ttl h3 {
		color:#333333;
		padding-bottom: 12px;
		font-size: 24px;
		font-weight: 500;
		letter-spacing: 0.8px;
	}
	#under .recruit-ttl p {
		color:#333333;
		border-top:2px solid #e6e6e6;
		padding-top: 12px;
		font-size: 16px;
		font-weight: 500;
		letter-spacing: 0.8px;
	}
	#under h2 {
		font-size:28px;
		margin-bottom: 24px;
	}
	#oc-select {
		padding: 60px 0 0;
	}
	#oc-select h2 {
		font-size: 22px;
		font-weight: 500;
		letter-spacing: 0.8px;
		border-bottom: 2px solid #fff;
		width:fit-content;
		margin:0 auto;
		padding-bottom: 10px;
	}
	#oc-select ul {
		width:100%;
		margin:16px auto 0;
	}
	#oc-select ul li {
		border-right: 6px solid #bb9c65;
		width:30%;
		text-align: center;
	}
	#oc-select ul li:nth-child(3) {
		border-right: none;
	}
	#oc-select ul li a {
		font-size:18px;
		font-weight:500;
		color:#0f3192;
		display: inline-block;
		letter-spacing: 1.2px;
	}
	#sales,#technical,#manufacturing {
		padding:60px 0 80px;
	}

	.heading02 {
		font-size: 28px!important;
		padding-bottom: 16px;
		margin-bottom: 24px!important;
	}
	.atmosphere-box {
		flex-direction: column-reverse;
	}
	.atmosphere-box .img-area{
		width:100%;
	}
	.atmosphere-box .img-area img {
		border-radius:0 0 4px 4px;
	}
	.atmosphere-box .txt-area{
		width:100%;
		border-radius: 4px 4px 0 0;
		padding: 30px 20px;
	}
	.atmosphere-box .txt-area h3 {
		font-size:22px;
		margin-bottom: 10px;
	}
	.atmosphere-box .txt-area p {
		line-height: 28px;
	}
	.requirement-area table {
		width:100%;
		margin:0 auto 40px;
	}
	.requirement-area table th , .requirement-area table td {
		letter-spacing: 0.8px;
		height: 113px;
		min-height: 113px;
	}
	.requirement-area table th {
		width:28%;
		font-size: 16px;
		line-height: 24px;
	}
	.requirement-area table th .bracket {
		font-size:12px;
	}
	.requirement-area table td {
		line-height: 24px;
	}
	.requirement-area table td.flow-td {
		font-size:17px;
		letter-spacing: 0.6px;
	}
	.requirement-area table td .asterisk-txt {
		font-size:12px;
	}
	.cta-area a {
		padding: 16px 0 12px;
		width:90%;
		line-height: 20px;
		letter-spacing: 1.6px;
		font-size:14px;
	}
	.cta-area a span {
		font-size:24px;
	}
	#entry h1 {
		text-align: center;
		font-size: 48px;
		line-height: 30px;
		margin-top: 20px;	
	}
	#entry h1 .sub-catch {
		font-size: 18px;
		margin-left:0;
	}
	#entry table {
		width:100%;
	}
	#entry table th, #entry table td {
		padding: 16px 0;
	}
	#entry table th {
		font-size: 14px;
		font-weight:500;
		width:38%;
		line-height:18px;
	}
	#entry table th p {
		margin-top:12px;
	}
	#entry table th .amendment {
		font-size:10px;
		color:#666666;
	}
	#entry table th .must {
		font-size:10px;
		color:#007cc6;
		vertical-align: top;
	}
	#entry table td {
		align-content:end;
	}
	#entry table td .w-30 ,#entry table td .w-90 {
		width:79%!important;
	}
	#entry table td .amendment-txt {
		font-size:10px;
		line-height:20px;
		color:#666666;
		margin-top:20px;
		display:inline-block;
	}
	#entry table td select {
		width:90%;
		margin-bottom:10px;
	}
	.previous-btn {
		font-size:14px;
		width:240px;
		padding:16px 0;
		margin-top:40px;
	}
	.submit-btn {
		font-size:14px;
		width:240px;
		padding:16px 0;
		margin-top:20px;
	}
	.wpcf7-spinner {
		display:none!important;
	}
	
	.w-768 {
		display:block;
	}
	.w-540 {
		display:none;
	}
}
@media screen and (max-width:540px) {
	.mv-br {
		display:block;
	}
	.mv-br-tab {
		display:none;
	}
	#mv .ttl {
		font-size:44px;
		/*text-align:left;
		line-height:54px;*/
	}
	.w-768 {
		display:none;
	}
	.w-540 {
		display:block;
	}
	.fv-rice-sp {
		width:74vw;
	}
	
	.double-rice {
		width:27vw;
	}
	.concept-copy {
		top:-20px;
		left:37vw;
	}
	#concept h2 {
		left:47%;
		font-size:4.15vw;
		line-height:6.6vw;
	}
	.concept-subcopy {
		writing-mode:unset;
		top:190px;
	}
	.concept-subcopy p {
		line-height:22px;
	}
	.recruit-ttl {
		top:23%;
		right: 12%;
	}
}  