@charset "utf-8";

/*
---------------------------------------------------------------------------
Reset
---------------------------------------------------------------------------
*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,dialog,figure,footer,header,hgroup,menu,nav,section,time,mark,audio,video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article,aside,dialog,figure,footer,header,hgroup,nav,section {
  display: block;
}

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,blockquote::after,q::before,q::after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,select {
  vertical-align: middle;
}

img.alignleft {
  text-align: left;
}

img.aligncenter {
  display: block;
  margin: 1px auto;
}

img.alignright {
  display: block;
  margin: 1px 0 1px auto;
}

/*
---------------------------------------------------------------------------
Font
---------------------------------------------------------------------------
*/
html,body,input {
  color: #1A1311;
  font-size: 18px;
  font-family: Roboto, "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

a {
  color: #1A1311;
  text-decoration: none;
  transition: .3s all;
}

/*
---------------------------------------------------------------------------
Common
---------------------------------------------------------------------------
*/
body {
  background-color: rgba(51,129,40,0.25);
}

.wrapper {
  max-width: 1920px;
  width: 99.99%;
  margin: 0 auto;
  background-color: #fff;
}

.contents {
  max-width: 1200px;
  width: 96%;
  margin: 0 auto;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.flex {
  display: flex;
  justify-content: space-between;
}

p {
  margin-bottom: 1em;
}

.slide-up {
  opacity: 0;
  transform: translate(0, 200px);
  -webkit-transform: translate(0, 200px);
  transition: 2s;
}

.go {
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

.pc_none {
  display: none;
}

.sp_none {
  display: block;
}

br.mb_only {
  display: none;
}

.breadcrumb {
  font-size: 100%;
  padding: 16px 0;
  background: #fff;
}

.breadcrumb ul li {
  display: inline-block;
}

.breadcrumb ul li a {
  color: #222;
}

.breadcrumb ul li a::after {
  margin: 0 6px;
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #222;
}

.breadcrumb li:last-child a::after {
  content: "";
}



/*
---------------------------------------------------------------------------
Header, Footer
---------------------------------------------------------------------------
*/
header {
  background: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}

header .flex {
  align-items: center;
  padding-top: 10px;
  height: 130px;
  margin-bottom: 10px;
}

header h1 {
  font-size: 32px;
  font-weight: 600;
  color: #255D0A;
}

header .sp_none {
  width: 260px;
}

.g_nav {
  width: 100%;
  background: #255D0A;
  height: 60px;
}

.top .g_nav {
  background: #fff;
}

.g_nav ul {
  width: 96%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 0;
	display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.g_nav ul li{
  width: calc(100% / 7);
	text-align: center;
  border-left: 1px solid #fff;
}

.g_nav ul li.shrink_2 {
  flex-shrink: 4;
}

.top .g_nav ul li {
  width: calc(100% / 6);
	border-left: 1px solid #005d0b;
}

.g_nav ul li:last-child {
	border-right: 1px solid #fff;
}

.top .g_nav ul li:last-child {
	border-right: 1px solid #005d0b;
}

.g_nav ul li a {
	display: block;
	width: 100%;
	padding: 0;
	color: #fff;
  position: relative;
  box-sizing: border-box;
}

.top .g_nav ul li a {
	color: #005d0b;
}

.g_nav ul li a::after {
	position: absolute;
	bottom: 1px;
	left: 8px;
	content: '';
	width: calc(100% - 16px);
	height: 1px;
	background: #fff;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
}

.top .g_nav ul li a::after {
	background: #005D0b;
}

.g_nav ul li a:hover::after {
	bottom: -4px;
	opacity: 1;
	visibility: visible;
}

footer {
  padding: 60px 0;
}

footer .flex {
  justify-content: flex-end;
  margin-bottom: 240px;
}

footer .flex > img {
  margin-right: 36px;
}

footer .flex div img {
  margin-bottom: 8px;
}

footer .flex div p {
  margin-left: 1em;
}

footer .copy {
  font-size: 15px;
  font-weight: 900;
  color: #707070;
  text-align: center;
  margin-bottom: 0;
}

.sns_nav {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: rgba(256, 256, 256, .4);
}

.sns_nav ul {
  padding: 16px;
}

.sns_nav ul li {
  display: inline-block;
}

.sns_nav ul li a {
  font-size: 2em;
  line-height: 1;
  color: #255D0A;
  margin: 8px;
}

.sns_nav ul li a:hover {
  opacity: .6;
}

/*
---------------------------------------------------------------------------
Top
---------------------------------------------------------------------------
*/
main {
  padding-top: 210px;
}

.top main {
  padding-top: 60px;
}

.top .hero {
  background-color: rgba(51,129,40,0.5);
  padding-bottom: 90px;
}

.hero img {
  width: 100%;
}

.determination {
  background-color: rgba(51,129,40,0.5);
  padding-bottom: 60px;
}

.determination .flex {
  justify-content: flex-end;
}

.determination .text {
  width: 47%;
  margin-left: 3%;
  margin-bottom: 90px;
}

.determination h1 {
  text-align: center;
  margin-bottom: 36px;
}

.determination p {
  text-indent: 1em;
}

.det_img {
  width: 47%;
  margin-left: 3%;
}

.determination .thumb {
  width: 96%;
  margin: 0 auto;
}

.determination .thumb ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.top_vision {
  background-image: url(img/top_vision_back.png);
  background-position: left top;
  background-repeat: no-repeat;
  text-align: center;
  padding: 90px 0;
}

.top_vision h1 {
  margin-bottom: 90px;
  display: inline-block;
}

.top_vision p {
  margin-bottom: 3em;
  font-weight: 600;
}

.top_vision .link a {
  display: block;
  background-color: rgba(256, 256, 256, .8);
  max-width: 900px;
  margin: 90px auto 0;
  font-size: 28px;
  font-weight: 600;
  color: #707070;
  padding: 2px 0;
}

.top_vision .link a:hover {
  opacity: 0.6;
}

.top_vision .link a i {
  color: #005D0b;
}

.career {
  padding: 90px 0;
  background: #fff;
}

.career .flex {
  justify-content: flex-start;
}

.car_img {
  width: 45%;
  margin-right: 3%;
}

.career .text {
  width: 47%;
  margin-right: 3%;
}

.career h1 {
  text-align: center;
  margin-bottom: 36px;
}

.career table {
  margin: 0 auto 60px;
}

.career table th {
  text-align: right;
  font-size: 14px;
  font-weight: 300;
  padding-right: 6px;
}

.career .thumb ul {
  display: flex;
  justify-content: space-between;
}

.top_action div, .top_support div {
  position: relative;
}

.top_action div > img, .top_support div > img {
  width: 100%;
}

.top_action div a, .top_support div a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  color: #fff;
  text-align: center;
}

.top_action h1 {
  background-color: rgba(256, 256, 256, .8);
  padding: 2px 120px;
  margin-bottom: 6px;
}

.top_support h1 {
  background-color: rgba(256, 256, 256, .8);
  padding: 2px 60px;
  margin-bottom: 6px;
}

.top_action div a p img, .top_support div a p img {
  vertical-align: middle;
  margin-top: -4px;
  margin-left: 4px;
}

.top_news {
  padding: 90px 0;
  background: #fff;
}

.top_news .flex {
  justify-content: flex-end;
}

.top_news .text {
  width: 47%;
  margin-left: 3%;
}

.top_news .text h1 {
  text-align: center;
  margin-bottom: 36px;
}

.top_news .text ul {
  margin-bottom: 90px;
  margin-left: 42px;
}

.top_news .text ul li {
  margin-bottom: 8px;
  line-height: 1.3;
}

.top_news .text ul li span {
  font-size: 14px;
  margin-right: 6px;
}

.top_news .text img {
  margin: 0 auto;
}

.top_news .news_img {
  width: 47%;
  margin-left: 3%;
}

/*
---------------------------------------------------------------------------
Vision
---------------------------------------------------------------------------
*/
.vision .each {
  padding: 60px 0;
}

.each .contents {
  max-width: 1100px;
}

.back_white {
  background: #D1E2CF;
}

.back_green {
  background: #98C093;
}

.vision .each h2 {
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.back_white h2 {
  border-bottom: 10px solid #B7B7B7;
}

.back_green h2 {
  border-bottom: 10px solid #fff;
}

.each p {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5em;
}

.each p span {
  text-decoration: underline;
  text-decoration-thickness: 0.4em;
  text-decoration-color: rgba(253, 236, 2, .8);
  text-underline-offset: -0.2em;
  text-decoration-skip-ink: none;
}

.each ul {
  max-width: 750px;
  font-size: 18px;
  margin: 0 auto;
}

.each ul li {
  position: relative;
  margin-left: 1em;
}

.each ul li::after {
  position: absolute;
  display: block;
  content: '';
  top: .5em;
  left: -1em;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #707070;
}

/*
---------------------------------------------------------------------------
News, Action
---------------------------------------------------------------------------
*/
/*.archive main section, .category main section, .single .entry {*/
main {
  background: #D1E2CF;
}

.archive main section:nth-child(3), .category main section:nth-child(3), .action main section:nth-child(3), .single .entry {
  padding: 60px 0;
}

.entry {
  margin-bottom: 60px;
}

.single .entry {
  margin-bottom: 0;
}

.entry a {
  color: #707070;
}
.entry a:hover {
  opacity: .6;
}

.entry_img {
  width: 35%;
}

.entry_img img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.entry_text {
  width: 62%;
}

.entry_date {
  font-weight: 600;
  margin-top: 0.5em;
  margin-bottom: 0;
}

.entry_title {
  font-size: 28px;
  margin-bottom: 0.5em;
}

.entry_contents img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1em;
}

.entry_contents h2 {
  position: relative;
  margin-top: 2.5em;
  font-size: 24px;
  padding-bottom: .5em;
  border-bottom: 4px solid #f0f0f0;
  margin-bottom: 1.25em;
}

.entry_contents h2::after {
  position: absolute;
  left: 0;
  bottom: -4px;
  content: "";
  width: 20%;
  height: 4px;
  background: #005D0b;
}

.entry_contents h3 {
  margin-top: 2em;
  font-size: 20px;
  padding-bottom: .25em;
  border-bottom: 2px solid #005D0b;
  margin-bottom: 1em;
}

.entry_contents h4 {
  margin-top: 2em;
  font-size: 20px;
  padding-bottom: 0.25em;
  border-bottom: 2px solid #98C093;
  margin-bottom: 1em;
}

.entry_contents p {
  margin: 1em 0;
}

.entry_contents ul {
  margin: 1em 0;
}

.entry_contents ul>ul {
  margin: 0;
}

.entry_contents ul>li {
  position: relative;
  margin: 0.5em 0;
  padding-left: 1.5em;
}

.entry_contents ul>li::before {
  position: absolute;
  display: inline-block;
  left: 0;
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  color: #bbb;
  content: '\f138';
}

.entry_contents ol {
  list-style-type: none !important;
  margin: 1em 0;
  counter-reset: number;
}

.entry_contents ol>ol {
  margin: 0;
}

.entry_contents ol>li {
  position: relative;
  margin: 0.5em 0;
  padding-left: 1.5em;
}

.entry_contents ol>li::before {
  position: absolute;
  display: inline-block;
  left: 0;
  font-weight: bold;
  line-height: 24px;
  content: counter(number)".";
  counter-increment: number;
}

.entry_pagenation {
  padding-bottom: 60px;
}

.entry_pagenation .btn {
  display: block;
  padding: 12px;
  background: #005D0b;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border: 2px solid #005D0b;
  font-size: 0.85em;
  margin: 0;
  width: 160px;
}

.entry_pagenation .btn:hover {
  background: #fff;
  color: #005D0b;
}

.single .entry .contents {
  max-width: 857px;
}

.single_img img {
  display: block;
  margin: 0 auto 18px;
}

/*
---------------------------------------------------------------------------
Contact
---------------------------------------------------------------------------
*/
.contact main section {
  background: #D1E2CF;
}

.contact main section:nth-child(3) {
  padding: 60px 0;
}

.contact .please {
  color: #707070;
}

.contact_form {
  max-width: 900px;
}

.contact_form h1 {
  font-size: 28px;
  margin-bottom: 1em;
}

.contact_form p {
  font-size: 15px;
  margin-bottom: 0;
}

.contact_form table {
  width: 100%;
  margin-top: 28px;
  margin-bottom: 24px;
}

.contact_form table th {
  text-align: left;
  font-weight: normal;
  width: 160px;
  padding: 12px 0;
}

.contact_form table td {
  padding: 12px 0;
}

.contact_form table td input {
  font-size: 100%;
  width: 100%;
  padding: 4px;
  vertical-align: middle;
  border: 1px solid #707070;
  box-sizing: border-box;
}

.contact_form table td input:focus-visible {
  outline-color: #255D0A;
}

.send button {
  display: block;
  width: 160px;
  margin: 0 auto 48px;
  padding: 8px;
  background: #255D0A;
  font-size: 100%;
  color: #fff;
  border: 2px solid #255D0A;
  cursor: pointer;
  transition: .3s all;
}

.send button:hover {
  background: #fff;
  color: #255D0A;
}

.mw_wp_form_complete .please {
  text-align: center;
  color: #222;
  margin-top: 90px;
  margin-bottom: 90px;
}

/*============================================================================*/
/*============================================================================*/
/*   for mobile start
/*============================================================================*/
/*============================================================================*/
@media screen and (max-width: 768px) {
html,body,input {
  font-size: 14px;
}

.pc_none {
  display: block;
}

.sp_none {
  display: none;
}

header .flex {
  height: 48px;
}

header h1 {
  font-size: 20px;
}

.g_nav ul li {
  display: flex;
  align-items: center;
}

.g_nav ul li a {
  font-size: 12px;
  padding: 0;
  line-height: 1.2;
}

main {
  padding-top: 120px;
}


footer .flex {
  margin-bottom: 60px;
}

.determination {
  padding-bottom: 60px;
}

.determination .text {
  width: 96%;
  margin: 0 auto;
}

.determination .thumb {
  width: 98%;
  margin-top: 60px;
  margin-left: auto;
  margin-right: 0;
}

.determination .thumb.flex {
  justify-content: space-between;
}

.determination .thumb ul {
  display: block;
  width: 20%;
}

.determination .thumb ul li {
  margin-bottom: 16px;
}

.det_img {
  width: 70%;
  margin-left: 3%;
}

.top_vision {
  background-size: auto 100%;
  background-position: left;
}

.top_vision h1 {
  max-width: 300px;
}

.vision_sp {
  background: rgba(152, 192, 147, .8);
  padding: 18px;
}

.vision_sp h2 {
  width: 100%;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 10px solid #fff;
  margin-bottom: 30px;
}

.vision_sp h2 img {
  display: inline;
}

.vision_sp p {
  font-size: 16px;
  text-align: center;
  margin-bottom: 1.5em;
}

.vision_sp p span {
  text-decoration: underline;
  text-decoration-thickness: 0.4em;
  text-decoration-color: rgba(253, 236, 2, .8);
  text-underline-offset: -0.2em;
  text-decoration-skip-ink: none;
}

.vision_sp ul.list_circle {
  font-size: 12px;
  margin: 0 auto;
}

.vision_sp ul.list_circle li {
  position: relative;
  text-align: left;
  margin-left: 1em;
}

.vision_sp ul.list_circle li::after {
  position: absolute;
  display: block;
  content: '';
  top: .5em;
  left: -1em;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #707070;
}

.slick-dots li button:before {
  font-size: 28px;
}

.career .text {
  width: 96%;
  margin: 0 auto;
}

.career table th {
  white-space: nowrap;
}

.career .pc_none {
  display: flex;
}

.career .sp_img.flex {
  justify-content: flex-end;
}

.career .sp_img > div {
  width: 47%;
  margin-left: 3%;
}

.career .sp_img ul {
  margin-left: 32px;
}

.career .sp_img li {
  margin-bottom: 16px;
}

.top_action h1 {
  padding: 2px 50px;
}

.top_news .text {
  width: 96%;
  margin: 0 auto;
}

.top_news .text ul {
  margin-left: 0;
}

.top_news .pc_none {
  width: 80%;
  margin: 0 auto;
}

.top_support h1 {
  padding: 2px 20px;
}



.each .contents {
  width: 94%;
}

.each p {
  font-size: 16px;
}

.each ul {
  font-size: 12px;
}

/*
---------------------------------------------------------------------------
News
---------------------------------------------------------------------------
*/
.entry .flex {
  flex-direction: column;
}

.entry_img, .entry_text {
  width: 100%;
}
/*
---------------------------------------------------------------------------
Contact
---------------------------------------------------------------------------
*/
.contact_form table th {
  display: block;
  width: 100%;
}

.contact_form table td {
  display: block;
  padding-top: 4px;
  padding-bottom: 16px;
}

} /* dont delete */

@media screen and (max-width: 512px) {
br.mb_only {
  display: block;
}

.g_nav ul li a {
  padding: 0;
}
}/* dont delete */