@charset "UTF-8";
@import url('https://use.fontawesome.com/releases/v6.7.2/css/all.css');
/**
 * 1.0 - Normalize
 * 2.0 - Common
 * 3.0 - Header
 * 4.0 - Contents
 * 5.0 - Navi
 * 6.0 - Main
 * 7.0 - Footer
 * 8.0 - Single Page
 * 9.0 - Option
 */
/*----------------------------------------------------
	1.0 - Normalize
----------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table.table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}
:focus {
  outline: 0;
}
ol, ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption, th, td {
  font-weight: normal;
  text-align: left;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
}
blockquote, q {
  quotes: """";
}
a img {
  border: 0;
}
figure {
  margin: 0
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}
/*Border*/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
/*----------------------------------------------------
	2.0 - Common
----------------------------------------------------*/
html {
  background: #fff;
  font-size: 62.5%; /* base-font-size:10px */
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0;
  color: #222;
  background-color: #edf4ef;
  overflow-x: hidden;
}
@media(max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}
body.body_contents {
  background-color: #f4f6f5;
}
a {
  color: #DD6C45;
}
a:hover {
  color: #f36a3a;
  text-decoration-color: transparent;
}
*tel-setting*/ a[href*="tel:"] {
  pointer-events: none;
}
p {
  line-height: 2;
}
#wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
	z-index: 0;
  /*overflow: hidden;*/
}
.bg_parts {
  position:absolute;
  width: 100vw;
	height: 100%; 
	top:0;
	left:50%;
	transform: translateX(-50%);
	overflow: hidden;
	z-index: -1;
}
.bg_parts img:nth-of-type(1) {
  position: absolute;
  top: 38vw;
  left: -10vw;
animation:8s ease-in-out infinite alternate rotation;
}
.bg_parts img:nth-of-type(2) {
  position: absolute;
  top: 70vw;
  right: -40vw;
  animation:8s ease-in-out infinite alternate rotation;
}
.bg_parts img:nth-of-type(3) {
  position: absolute;
  top: 155vw;
  right: -15vw;
  animation:8s ease-in-out infinite alternate rotation;
}
.bg_parts img:nth-of-type(4) {
  position: absolute;
  top: 176vw;
  left: -20vw;
  animation:8s ease-in-out infinite alternate rotation;
	overflow: hidden;
}
@media(max-width:1300px){
	.bg_parts img:nth-of-type(1) {
  width:50%;
}
.bg_parts img:nth-of-type(2) {
  width:90%;
	right: -25vw;
}
.bg_parts img:nth-of-type(3) {
  top:180vw;
}
.bg_parts img:nth-of-type(4) {
  width:100%;
	top: 240vw;
	left:-30vw;
}
}
@media(max-width:768px){
	.bg_parts{
		display: none;
	}
}
/*----------------------------------------------------
	3.0 - Header
----------------------------------------------------*/
header {
  position: relative;
  position: fixed;
  display: inline-flex;
  background: #fff;
  border-radius: 50px;
  width: 94%;
  height: 68px;
  left: 50%;
  transform: translateX(-50%);
  margin: 27px auto 0;
  padding: 0;
  justify-content: space-between;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  align-items: center;
  line-height: 0;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
  /* overflow: hidden; */ /* Safari NG */
  z-index: 200;
}
header h1 {
  width: 20%;
  text-align: left;
}
header img {
  width: 243px;
  margin-left: 16%;
}
@media(max-width:1240px) {
  header img {
    width: 80%;
  }
}
@media(max-width: 999px) {
  header {
    background: #fff;
    height: 60px;
    z-index: 201;
  }
  header h1 {
    display: flex;
    align-items: center;
    height: 60px;
  }
  header h1 img {
    width: 200px;
    transition: .3s;
  }
  @media(max-width:480px) {
	  header {
		  margin-top: 10px;
	  }
    header h1 img {
      width: 150px;
    }
  }
  header h1 img[src*="_pc"] {
    display: none;
  }
}
/*----------------------------------------------------
	Fixed menu
----------------------------------------------------*/
.fixed_menu {
  position: fixed;
  top: 120px;
  right: 0;
  z-index: 200;
}
.fixed_menu ul {
  display: flex;
  flex-direction: column;
}
.fixed_menu ul li {
  width: 55px;
  color: #fff;
  background-color: #f36a3a;
  writing-mode: vertical-rl;
  margin: 0 0 0.6em auto;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  border-radius: 5px 0 0 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  line-height: 1;
}
.fixed_menu ul li:hover {
  color: #f36a3a;
  background-color: #fff;
  border-top: 2px solid #f36a3a;
  border-left: 2px solid #f36a3a;
  border-bottom: 2px solid #f36a3a;
}
.fixed_menu ul li.on {
  color: #f36a3a;
  background-color: #fff;
  border-top: 2px solid #f36a3a;
  border-left: 2px solid #f36a3a;
  border-bottom: 2px solid #f36a3a;
}
.fixed_menu ul li a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  padding: 1em 1.2em;
  text-decoration: none;
}
.fixed_menu ul li:hover a {
  color: #f36a3a;
}
@media(max-width:999px) {
  .fixed_menu {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    top: auto;
    bottom: 0;
  }
  .fixed_menu ul {
    flex-direction: row;
    flex-wrap: wrap;
    width: 96%;
    margin: 0 auto;
    padding: 1em 0;
    column-gap: 0.8em;
    row-gap: 0.5em;
  }
  .fixed_menu ul li {
    width: calc((100% - 2.4em) / 4);
    margin: 0;
    writing-mode: horizontal-tb;
    border: 2px solid #fff;
    border-radius: 5px;
    text-align: center;
  }
  .fixed_menu ul li:hover, .fixed_menu ul li.on {
    color: #f36a3a;
    background-color: #fff;
    border: 2px solid #f36a3a;
  }
}
@media(max-width:768px) {
  .fixed_menu ul li {
    width: calc((100% - 0.8em) / 2);
  }
}
@media(max-width:480px){
	.fixed_menu ul {
		padding: 0.5em 0;
		column-gap: 0.5em;
		row-gap: 0.4em;
	}
	.fixed_menu ul li {
    width: calc((100% - 0.5em) / 2);
  }
	.fixed_menu ul li a {
		padding: 0.9em 1.2em;
	}
}
/*----------------------------------------------------
	4.0 - Contents
----------------------------------------------------*/
#contents {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 0;
  line-height: 0;
  z-index: 0;
}
@media (max-width: 999px) {
  #contents {}
}
.inner {
  width: 1240px;
  margin: 0 auto;
  padding: 0 50px;
  text-align: left;
}
@media(max-width:1240px) {
  .inner {
    width: 90%;
  }
}
@media (max-width: 999px) {
  .inner {
    width: 85%;
  }
  .index .inner {
    padding: 0;
  }
  .inner.inner_contents {
    width: 90%;
  }
}
@media (max-width: 768px) {
  .inner {
    padding: 0 30px;
  }
}
@media (max-width: 480px) {
  .inner {
    padding: 0 10px;
  }
}
/*----------------------------------------------------
	5.0 - Navi
----------------------------------------------------*/
/* Hamburger */
@media(min-width: 1000px) {
  .hamburger {
    display: none;
  }
}
@media(max-width: 999px) {
  .hamburger {
    position: fixed;
    display: flex;
    justify-content: center;
    right: 1.8em;
    width: 60px;
    height: 60px;
    line-height: 1.75;
    text-align: center;
    cursor: pointer;
    z-index: 300;
  }
  .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 0.16em;
    border-radius: 50px;
    left: 15px;
    background: #299e4f;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 20px;
  }
  .hamburger span:nth-child(2) {
    top: 30px;
  }
  .hamburger span:nth-child(3) {
    top: 40px;
  }
  .hamburger.active span:nth-child(1) {
    top: 28px;
    left: 15px;
    background: #299e4f;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
    top: 28px;
    background: #299e4f;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .hamburger p {
    position: absolute;
    top: 32px;
    color: #299e4f;
    font-size: 1.2rem;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .hamburger.active p {
    color: #299e4f;
  }
}
/* Menu */
@media(min-width:1000px) and (max-width:1280px) {
  nav {
    width: 100%;
    height: 68px;
    padding-right: 2.5em;
    z-index: 1;
  }
  .dropmenu {
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }
}
@media(min-width:1281px) {
  nav {
    width: 100%;
    height: 68px;
    padding-right: 20%;
    z-index: 1;
  }
  .dropmenu {
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }
}
@media(min-width: 1000px) {
  /*---1st level*/
  .dropmenu li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    width: 100%;
    height: 68px;
	  padding: 0 1em;
    color: #000;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.0;
    border-bottom: 3px solid #fff;
    white-space: nowrap;
    transition: all 0.3s;
  }
  .dropmenu li.on {
    border-bottom: 2px solid #45862f;
  }
  .dropmenu > li:hover {
    border-bottom: 2px solid #45862f;
  }
  .dropmenu li a {
    display: block;
    height: 68px;
    color: #222;
    text-decoration: none;
  }
  .dropmenu li > a {
    line-height: 5;
  }
  .dropmenu > li > a:hover {
    color: #45862f;
    font-weight: 700;
  }
  .dropmenu > li.on > a {
    color: #45862f;
    font-weight: 700;
  }
  /*---2nd level*/
  .dropmenu > li > ul.submenu {
    display: none;
    width: 60rem;
    background-color: #fff;
    position: absolute;
    top: 103%;
    left: 50%;
    transform: translateX(-50%);
    padding: 2em 3em 1.5em;
    align-items: flex-start;
    border-radius: 0 0 10px 10px;
    transition: visibility .25s ease, opacity .25s ease;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  .submenu a:hover {
    color: #45862f;
  }
  .submenu a.on {
    color: #45862f;
  }
  .dropmenu > li:hover > ul.submenu {
    display: block;
  }
  .dropmenu > li > ul.submenu.sub02 {
    width: 20rem;
	  padding: 2em 3em 1.5em 2em;
  }
  .dropmenu li ul.submenu li {
    justify-content: flex-start;
  }
  .dropmenu > li > ul.submenu.sub02 li:first-of-type {
    margin-bottom: 0;
  }
  .dropmenu li ul.submenu li h3.subh3_01 a {
    border-bottom: 0.1em solid#45862f;
    height: auto;
    padding-bottom: 0.5em;
  }
  .dropmenu li ul.submenu li h3.subh3_01 a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    position: absolute;
    font-size: 0.9em;
    font-weight: 900;
    top: 50%;
    transform: translateY(-80%);
    right: 1em;
  }
  .dropmenu li ul.submenu li.category {
    display: flex;
    align-items: baseline;
    width: 100%;
    height: auto;
    column-gap: 1em;
  }
  .dropmenu li ul.submenu li:first-of-type {
    display: inherit;
    height: auto;
    text-align: left;
    margin-bottom: 1em;
  }
  .dropmenu li ul.submenu li.category h3 {
    font-size: 0.93em;
    width: 6em;
    text-align: left;
  }
  .dropmenu li ul.submenu li.category .cate01 {
    display: flex;
    flex-wrap: wrap;
    max-width: calc(100% - 7em);
    column-gap: 2em;
  }
  .dropmenu li ul.submenu li.category p {
    text-align: left;
	  position: relative;
	  padding-left: 1.2em; 
  }
.dropmenu li ul.submenu li.category  p:before {
    content: "\f111";
	position: absolute;
	font-family: "Font Awesome 5 Free";
	color:#45862f;
	font-size:0.93em;
	left:0;
	top:50%;
	transform: translateY(-50%);
  }
  .dropmenu li ul.submenu li.category a {
    height: auto;
  }
}
@media(max-width: 999px) {
  nav {
    background: none;
    height: auto;
  }
  .dropmenu {
    position: fixed;
    display: none;
    width: 100vw;
    top: -27px;
    height: 100vh;
	background-color: rgba(244, 246, 245, 1);
    left: 50%;
    transform: translateX(-50%);
    margin: 0 auto 0;
    padding: 5em 4.8em 2em;
    border-radius: 0;
	overflow-y: auto;
    z-index: 200;
  }
.dropmenu:before {
    content: "";
    position: absolute;
    top: -27px;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(244, 246, 245, 1);
	  z-index: -1;
	}
	
  .dropmenu ul, .dropmenu ul ul {
    display: none;
  }
  .dropmenu > li {
    position: relative;
    display: block;
    text-align: left;
    border-bottom: 1px solid #999;
    transition: .3s all;
  }
  .dropmenu li.on:after {
    display: none;
  }
  .dropmenu > li a {
    display: block;
    padding: 2em 0 1.9em 0.4em;
    color: #222;
	font-size:1.1em;
	font-weight: 500;
    text-decoration: none;
    transition: color .3s, text-decoration .3s;
  }
  .dropmenu > li a:hover {
    color: #299e4f;
    font-weight: 500;
  }
  .dropmenu > li.off a:hover {
    color: #fff;
    cursor: default;
  }
  .dropmenu li ul.submenu{
    display: flex;
    flex-direction: column;
  }
  .dropmenu > li > ul.submenu li {
    line-height: 1;
  }

  .dropmenu > li > ul li a {
    padding: 0em 0 0em 0.4em;
	  font-size:1em;
  }
.dropmenu > li >ul li h3.subh3_01{
	position: relative;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	font-size:1.1em;
}
.dropmenu > li >ul li h3.subh3_01:after {
    content:"";
	position: absolute;
	background-image: url("../img/common/arrow_footer.png");
	background-size:100%;
	width:20px;
	height: 20px;
	top:50%;
	right: 5px;
	transform: translateY(-50%);
  }
.dropmenu > li >ul li h3.subh3_01 a{
		padding-left: 0.4em;
}
.dropmenu li ul.submenu li.category h3 {
	padding: 0.7em 0 0.6em 0.4em;
    padding-left: 0.4em;
	padding-bottom: 0.5em;
	margin-top: 0.5em;
	font-size:1.1em;
	background-color: #E9E9E9;
  }
.dropmenu li ul.submenu li.category p {
	position: relative;
    border-bottom:1px solid #DEDEDE;
	padding: 0.6em 0 0.5em 0em;
  }
.dropmenu li ul.submenu li.category p:last-of-type {
	border-bottom: none;
  }
.dropmenu li ul.submenu.sub02 li.category p:first-of-type {
	padding-top: 0;
  }
.dropmenu li ul.submenu.sub02 li.category p a{
    position: relative;
  }
.dropmenu li ul.submenu li.category p:after {
    content:"";
	position: absolute;
	background-image: url("../img/common/arrow_footer.png");
	background-size:100%;
	width:20px;
	height: 20px;
	top:50%;
	right: 5px;
	transform: translateY(-50%);
  }
  /*.dropmenu > li > ul li ul li a {
        padding: 1.5em 0 1.5em 0.4em;
    }*/
}
@media(max-width:480px){
	.dropmenu {
		padding: 5em 2.8em 2em;
		height: 103vh;
	}
}
/* arrow */
@media(max-width: 999px) {
  ul.dropmenu div.level01, ul.dropmenu div.level02 {
    position: relative;
  }
  ul.dropmenu div.level01 a, ul.dropmenu div.level02 a {
    display: flex;
    align-items: center;
  }
  ul.dropmenu div.level01 a:after, ul.dropmenu div.level02 a:after {
    content: "";
    position: absolute;
    right: 10px;
    /* top: 1.5em; */
    transition: all 0.2s ease-in-out;
    /* display: block; */
    width: 8px;
    height: 8px;
    border-top: solid 2px #999;
    border-right: solid 2px #999;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  ul.dropmenu div.level01 a:hover:after, ul.dropmenu div.level02 a:hover:after {
    border-top: solid 2px #299e4f;
    border-right: solid 2px #299e4f;
  }
  ul.dropmenu div.level01.open a:after, ul.dropmenu div.level02.openAcd a:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    /* top: 1.75em; */
  }
}
.page_nav {
  display: flex;
  justify-content: center;
  margin-top: 3em;
}
@media(max-width:480px){
	.page_nav {
		flex-direction: column;
	}
}
.page_nav li {
  position: relative;
  height: 3.4em;
  font-size: 1.06em;
  font-weight: 700;
  border-left: 1px solid #ccc;
  padding: 0.2em 2.5em;
  line-height: 1.2;
}
@media(max-width:768px){
	.page_nav li {
		padding: 0.2em 0.7em;
	}
}
@media(max-width:480px){
	.page_nav li{
		height: auto;
		padding: 0.5em 0.5em;
		margin: 0 2em;
		border-bottom: 1px solid #ccc;
		border-left: none;
	}
	.page_nav li:last-of-type {
		border-bottom: none;
	}
}
.page_nav li:first-of-type {
  border-left: none;
}
.page_nav li a {
  text-decoration: none;
  color: #333;
  white-space: nowrap;
}
.page_nav li a:after {
  content: "";
  position: absolute;
  background-image: url("../img/common/arrow_down.png");
  background-size: 100%;
  width: 28px;
  height: 28px;
  left: 50%;
  bottom: 0;
  transform: translate(-50%);
}
.page_nav li a:hover:after {
  content: "";
  position: absolute;
  background-image: url("../img/common/arrow_down_hover.png");
  background-size: 100%;
  width: 28px;
  height: 28px;
  left: 50%;
  bottom: 0;
  transform: translate(-50%);
  transition: 0.3s;
}
@media(max-width:480px){
	.page_nav li a:after {
		width: 23px;
  		height: 23px;
  		left: inherit;
		right: 0;
  		bottom: 5px;
 		 transform: translate(-50%) rotate(-90deg);
}
	.page_nav li a:hover:after {
		width: 23px;
 		 height: 23px;
  		left: inherit;
		right: 5%;
  		bottom: 5px;
  		transform: translate(-50%) rotate(-90deg);
}
}
@media(max-width:480px){
	.page_nav + section {
	padding-top: 5em;
}
}
/*----------------------------------------------------
	6.0 - Main
----------------------------------------------------*/
#contents h1 {
  position: relative;
  display: flex;
  justify-content: left;
  align-items: center;
  width: 100%;
  max-width: 1240px;
  height: 430px;
  margin: 0 auto;
  padding-left: 50px;
  color: #fff;
  /*font-size: 2.93em;*/
  font-size: 3.3em;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  z-index: 0;
}
#contents h1 span {
	animation: fadeInText 3s ease 1 normal backwards;
	padding-top: 2em;
}
@media(max-width:1240px) {
  #contents h1 {
    padding-left: 8%;
  }
}
@media(max-width:999px){
	#contents h1 {
		height: 380px;
	}
}
@media(max-width:768px){
	#contents h1 {
		height: 300px;
	}
}
@media(max-width:480px){
	#contents h1 {
		height: 250px;
		font-size: 2.25em;
	}
}
#contents h1:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("../img/common/bg_title.png");
  background-position: center bottom;
  background-size: cover;
  background-color: #299e4f;
  width: 100vw;
  height: 430px;
  z-index: -1;
}
@media(max-width:999px){
	#contents h1:before {
		height: 380px;
	}
}
@media(max-width:768px){
	#contents h1:before {
		height: 300px;
	}
}
@media(max-width:480px){
	#contents h1:before {
		height: 250px;
	}
}
section {
  padding: 11.6em 0 13em;
  line-height: 1.75;
  text-align: left;
}
section:last-of-type {
	padding-bottom: 20em;
}
@media(max-width: 999px) {
  section {
    padding-top: 10em;
  }
}
@media(max-width: 480px) {
  section {
	  padding: 6em 0 8em;
  }
}
section h2 {
  position: relative;
  margin: 2em auto 0em;
  padding-bottom: 0.3em;
  font-family: "Lato";
  font-size: 4.66em;
  font-weight: 900;
  line-height: 1.2;
  color: #299e4f;
  text-align: left;
}
@media(max-width:480px){
	section h2 {
		font-size:4.3em;
	}
}
section h2 .h2_jp {
  color: #222;
  font-size: 13px;
  font-weight: 500;
}
section h2:first-child {
  margin-top: 0;
}
section h3 {
  position: relative;
  font-size: 2.06em;
  font-weight: 700;
  color: #333;
  margin-top: 3em;
  margin-bottom: 0.8em;
  padding-left: 0.8em;
  line-height: 1.15;
}
section h3:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-47%);
  left: 0em;
  background-color: #299e4f;
  width: 5px;
  height: calc(100% - 5px);
}
@media(max-width:480px) {
  section h3 {
    font-size: 1.8em;
  }
}
section h2 + h3 {
  margin-top: 0;
}
section h4 {
  position: relative;
  margin: 1.5em auto 0.75em;
  padding-bottom: 0.5em;
  font-size: 1.6em;
  font-weight: 700;
  color: #299e4f;
  line-height: 1.15;
  border-bottom: 1px solid #299e4f;
}
section h3 + h4 {
  margin-top: 0;
}
section h5 {
  position: relative;
  margin: 1.5em auto 0.5em;
  position: relative;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.15;
  color: #000;
}
section h4 + h5 {
  margin-top: 0;
}
/*----------------------------------------------------
	7.0 - Footer
----------------------------------------------------*/
footer {
  position: relative;
  background: linear-gradient(45deg, rgba(89, 92, 89, 1) 0%, rgba(133, 135, 133, 1) 100%);
  width: 100%;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
@media(max-width: 999px) {
  footer {
    padding-left: 0;
    padding-bottom: 5em;
  }
}
/*index_contact---*/
footer .index_contact {
  position: absolute;
  top: -130px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ebf3ee;
  max-width: 1000px;
  width: 100%;
  margin-top: 1em;
  border: 2px solid #fff;
  border-radius: 15px;
  box-shadow: 0 0 6px rgba(0 0 0 0.1);
  line-height: 1;
}
@media(max-width:1140px) {
  footer .index_contact {
    width: 80%;
	  top: -140px;
  }
}
@media(max-width:600px) {
  footer .index_contact {
    padding: 0 1em 3em;
    top: -170px;
  }
}
@media(max-width:480px) {
  footer .index_contact {
    width: 90%;
	  top: -180px;
  }
}
footer .index_contact:after {
  content: "";
  position: absolute;
  background-image: url("../img/common/arrow_footer.png");
  background-size: 100%;
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  right: 3%;
}
@media(max-width:768px) {
  footer .index_contact:after {
    width: 50px;
    height: 50px;
    right: 5%;
  }
}
@media(max-width:600px) {
  footer .index_contact:after {
    left: 50%;
    transform: translateX(-50%);
    top: 76%;
  }
}
@media(max-width:480px) {
  footer .index_contact:after {
    width: 45px;
    height: 45px;
    top: 80.5%;
  }
}
footer .index_contact a {
	padding: 0 ;
}
footer .index_contact h2 {
  position: relative;
  font-size: 1.06em;
  color: #4d4d4d;
  font-weight: 700;
	margin-top: 3.5em;
  margin-bottom: 2em;
  z-index: 1;
}
@media(max-width:768px) {
  footer .index_contact h2 {
    margin-bottom: 1.5em;
  }
}
footer .index_contact h2:before {
  content: "Contact";
  position: absolute;
  font-family: "Lato";
  font-size: 5.3em;
  color: #cfe2d5;
  top: -250%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media(max-width:768px) {
  footer .index_contact h2:before {
    font-size: 4.3em;
  }
}
footer .index_contact p {
  color: #222;
  line-height: 1.2;
}
footer .index_contact p.foot_num {
  line-height: 1.5;
  margin-top: 10px;
	margin-bottom: 20px;
}
.contact_tel {
  font-size: 2em;
  color: #333;
  font-weight: 700;
}
.contact_num {
  font-size: 3em;
  color: #34a358;
  font-weight: 700;
}
@media(max-width:768px) {
  footer .index_contact p.foot_num {
    margin-top: 0;
  }
  .contact_tel {
    font-size: 1.7em;
  }
  .contact_num {
    font-size: 2.7em;
  }
}
@media(max-width:480px) {
  .contact_num {
    font-size: 2.3em;
  }
}
/*---index_contact*/
footer .foot_secretariat {
  display: block;
  width: 90%;
  margin: 0 auto;
  padding: 11em 0 4em;
  text-align: center;
  font-size: 0.875em;
  line-height: 1.5;
}
footer ul.foot_inner {
  width: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  text-align: left;
}
@media(max-width: 999px) {
  footer ul.foot_inner {
    justify-content: center;
    flex-direction: column-reverse;
  }
}
/*li*/
footer ul.foot_inner li {
  width: 100%;
  margin: 0 auto;
  justify-content: flex-end;
  white-space: nowrap;
}
@media(max-width: 999px) {
  footer ul.foot_inner li {
    width: 92%;
    justify-content: space-between;
  }
}
/*scr01*/
@media(max-width: 999px) {
  footer ul.foot_inner li.scr01 {
    margin-top: 3em;
  }
}
footer ul.foot_inner li.scr01 dl {
  text-align: left;
}
footer ul.foot_inner h3 {
  position: relative;
  margin-bottom: 0.75em;
  padding-bottom: 0.25em;
  color: #000;
  font-size: 1.875em;
  font-weight: 700;
  text-align: center;
  border-radius: 14px;
}
footer ul.foot_inner h3:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 8%;
  margin: 0 auto;
  border-bottom: 4px #ccc solid;
}
footer ul.foot_inner dl {
  width: 92%;
  margin: 0 auto;
  text-align: center;
}
@media(max-width:999px) {
  footer ul.foot_inner dl {
    width: 100%;
  }
}
footer ul.foot_inner dt {
  margin: 0 auto 0.25em;
  font-size: 2em;
  font-weight: 700;
}
footer ul.foot_inner dd {
  margin: 0 auto;
  font-size: 0.86em;
}
/*scr02*/
.scr02 ul {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(5, auto);
  gap: 1em;
  list-style: none;
  margin: 0;
  color: #fff;
}
.scr02 li {
  font-size: 1em;
  line-height: 1.8;
}
@media (max-width: 480px) {
  .scr02 ul {
    grid-template-rows: repeat(7, auto);
  }
}
footer .copyright {
  width: 96%;
  margin: 0 auto;
  padding: 1em 0 2em;
  color: #fff;
  font-size: 0.8em;
  border-top: 1px solid #888786;
  line-height: 1.5;
  text-align: right;
}
footer a {
  color: #fff;
  text-decoration: none;
}
footer a:hover {
  color: #BFEECE;
}
footer a.tel {
  color: inherit;
  text-decoration: none;
}
/*----------------------------------------------------
	8.0 - Single Page
----------------------------------------------------*/
/*  Index
----------------------------------------------------*/
.index_main {
  width: 100%;
  margin: 0 auto;
  padding: 0 5%;
  line-height: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
@media(max-width:999px) {
  .index_main {
    /*width: 130%;
    margin-left: -15%;
    padding: 0;*/
	  padding: 0 1.5%;
  }
}
@media(max-width:768px) {
  .index_main {
  	width: 100%;
	  padding: 0 1.5%;
  }
}
@media(max-width:480px) {
	.index_main {
	display: flex;
		flex-direction: column;
    justify-content: center;
    align-items: center;
	width:100%;
	height: auto; 
    padding: 0 0 3vh;
	}
}
/* map */
.cloud {
  position: absolute;
  top: 130px;
  left: 50%;
  /*transform: translateX(-50%);*/
  width: 100%;
  max-width: 1395px;
  z-index: 1;
	pointer-events: none;
}
.cloud picture {
  display: block;
  width: 100%;
}
.cloud picture img {
  display: block;
  width: 100%;
  height: auto;
  animation: cloudFloat 4s ease-in-out infinite;
}
@media(max-width:480px){
	.cloud {
		top:100px;
  }
  .cloud picture img {
    width: 100%;
  }
}
.map_base {
	width: 100%;
	max-width: 1450px;
	max-height: 940px;
	margin: 0 auto;
	position: relative;
	display: block;
	margin-top: 175px;
	z-index: 0;
}
@media (max-width: 999px) {
	.map_base {
		margin-top: 160px;
	}
}
@media (max-width: 768px) {
	.map_base {
		width: 113%;
		margin-top: 150px;
	}
}
@media (max-width: 480px) {
	.map_base {
		margin-top: 135px;
	}
}
/* 市街地画像 */
.map_base .map_base_img {
	width: 100%;
	height: 100%;
}
.map_base .map_base_img img {
	width: 100%;
	height: auto;
	vertical-align: middle;
}
.map_base .map_base_img {
	width: 100%;
	height: 100%;
}
/* overlap object */
.map_base .map_object {
	display: inline-block;
	position: absolute;
}
.map_base .map_object img {
	width: 100%;
	height: auto;
	vertical-align: middle;
}
.map_base .tree {
	width: 2%;
	max-width: 32px;
	top: 40.5%;
	left: 73%;
	z-index: 2;
}
.map_base .house {
	width: 7%;
	max-width: 103px;
	top: 39.8%;
	left: 12.4%;
	z-index: 2;
}
.map_base .train {
	width: 24%;
	max-width: 364px;
	left: 10.75%;
	top: 48.5%;
	z-index: 0;
	animation: moveTrain 8s ease-in-out infinite;
}
/* marker */
.map_base .map_marker {
	position: absolute;
	/*left: 0;*/
	/*top: 0;*/
	z-index: 1;
}
.map_marker .balloon_inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}
/* 基本吹き出し */
.map_marker .balloon_text {
	width: auto;
	background: #333;
	color: #fff;
	font-size: 0.93em;
	line-height: 1.25;
	padding: 0.65em 1.3em;
	border-radius: 1.286em;
	white-space: nowrap;
	cursor: pointer;
	position: relative;
	z-index: 0;
}
.map_marker .balloon_text::before, .map_marker .balloon_text::after {
	content: "";
	background: #333;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	z-index: 0;
}
.map_marker .balloon_text::before {
	width: 1px;
	height: 30px;
	position: absolute;
	bottom: -2.125em;
}
.map_marker .balloon_text::after {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	position: absolute;
	bottom: calc(-2.125em - 6px);
}
.map_marker .balloon_inner > img {
	margin-top: calc(2.125em + 6px);
	/*transform: translateY(calc(2.125em + 6px));*/
	position: relative;
	z-index: -1;
}
@media (max-width: calc(1450px / 90 * 100)) {
	.map_marker .balloon_text {
		font-size: 0.85vw;
	}
	.map_marker .balloon_inner > img {
		margin-top: calc((2.125em + 6px) * 0.85);
		/*transform: translateY(calc((2.125em + 6px) * 0.85));*/
	}
}
@media (max-width: 768px) {
	.map_marker .balloon_text {
		font-size: 0;
		background: transparent url("../img/contents/index/map/map_icon_sp.png") no-repeat center center;
		background-size: contain;
		width: calc(26px * 0.7);
		height: calc(38px * 0.7);
		padding: 0;
		border-radius: 0;
		position: relative;
		cursor: pointer;
	}
	.map_marker .balloon_text::before, .map_marker .balloon_text::after {
		content: none;
	}
	.map_marker .balloon_inner > img {
		/*transform: translateY(0);*/
		margin-top: 0;
	}
}
/* 吹き出しホバー */
.map_marker a {
	text-decoration: none;
	position: absolute;
	top: calc(0% - 2em);
	left: 0%;
	z-index: 1;
}
.map_marker a .balloon_hover {
	width: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	color: #333;
	font-size: 0.93em;
	padding: 0 0 0 0.8em;
	border: 1px solid #333;
	border-radius: 100vmax;
	white-space: nowrap;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	z-index: 10;
}
.map_marker a .balloon_hover .balloon_textgroup {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: 0.5em;
	padding: 0 1em;
}
.map_marker a .balloon_hover .balloon_textgroup h4 {
	font-size: 1em;
	font-weight: 700;
	line-height: 1.25;
}
.map_marker a .balloon_hover .balloon_textgroup .balloon_btn {
	background: #299e4f;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 0.25em;
	font-size: 0.8em;
	font-weight: 700;
	line-height: 1.25;
	padding: 0.65em 1em 0.65em 1em;
	border-radius: 30px;
	position: relative;
}
.balloon_btn:before {
	content: "";
	background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 12'%3E%3Cpath fill='%23ffffff' d='m6.38.25h0c-.27.31-.26.8.04,1.09l3.94,3.89H.73c-.4,0-.73.35-.73.77h0c0,.43.33.77.73.77h9.63s-3.95,3.89-3.95,3.89c-.3.29-.31.78-.04,1.09h0c.27.31.73.33,1.03.04l5.4-5.32c.26-.26.26-.69,0-.95L7.41.21c-.29-.29-.76-.27-1.03.04Z'/%3E%3C/svg%3E") 50% 50%/100% 100% no-repeat;
	width: 10px;
	height: 9px;
}
.balloon_imgwrap img {
	width: 103px;
	height: auto;
	flex-shrink: 0;
	margin-right: 0;
}
.map_marker.map01 {
	left: 38.5%;
	top: auto;
	bottom: 12%;
}
.map_marker.map02 {
	left: 80%;
	top: auto;
	bottom: 22%;
}
.map_marker.map03 {
	left: 66.75%;
	top: auto;
	bottom: 41.5%;
}
.map_marker.map04 {
	left: 55%;
	top: 41.5%;
}
.map_marker.map05 {
	left: 20.25%;
	bottom: 43%;
}
.map_marker.map06 {
	left:69.25%;
	top: 28%;
}
.map_marker.map07 {
	left: 16%;
	bottom: 58%;
}
.map_marker.map08 {
	left: 33%;
	bottom: 82.5%;
}
.map_marker.map09 {
	left: 17.75%;
	bottom: 18%;
}
.map_marker.map10 {
	/*left: 0.5%;*/
	right: 91.2%;
	bottom: 43%;
}
.map01 .balloon_inner > img {
	width: 46px;
	animation: floatY 4s steps(1) infinite;
	animation-delay: 0.5s;
}
.map02 .balloon_inner > img {
	width: 128px;
	animation: heartbeat 4s infinite;
}
.map03 .balloon_inner > img {
	width: 48px;
	margin-top: -1em;
	animation: floatY 4s steps(1) infinite;
}
.map04 .balloon_inner > img {
	width: 46px;
	animation: headshake 2s steps(1) infinite;
	animation-delay: 0.3s;
}
.map05 .balloon_inner > img {
	width: 41px;
}
.map06 .balloon_inner > img {
	width: 35px;
	animation: headshake 2s steps(1) infinite;
}
.map07 .balloon_inner > img {
	width: 63px;
	animation: heartbeat 4s infinite;
}
.map08 .balloon_inner > img {
	width: 52px;
	animation: headshake 2s steps(1) infinite;
}
.map09 .balloon_inner > img {
	width: 59px;
	animation: headshake 2s steps(1) infinite;
}
.map10 .balloon_inner > img {
	width: 33px;
	margin-right: 2em;
	animation: floatY 4s steps(1) infinite;
}
/* image size */
@media (max-width: calc(1450px / 90 * 100)) {
	.map_base .map_base_img {
		width: 100%;
		height: 100%;
	}
	.map01 .balloon_inner > img {
		width: 2.855vw; /*46px / 1611.11*/
	}
	.map02 .balloon_inner > img {
		width: 7.945vw; /*128px / 1611.11*/
	}
	.map03 .balloon_inner > img {
		width: 2.979vw; /*48px / 1611.11*/
	}
	.map04 .balloon_inner > img {
		width: 2.855vw; /*46px / 1611.11*/
	}
	.map05 .balloon_inner > img {
		width: 2.731vw; /*44px / 1611.11*/
	}
	.map06 .balloon_inner > img {
		width: 2.172vw; /*35px / 1611.11*/
	}
	.map07 .balloon_inner > img {
		width: 3.91vw; /*63px / 1611.11*/
	}
	.map08 .balloon_inner > img {
		width: 3.227vw; /*52px / 1611.11*/
	}
	.map09 .balloon_inner > img {
		width: 3.662vw; /*59px / 1611.11*/
	}
	.map10 .balloon_inner > img {
		width: 2.048vw; /*33px / 1611.11*/
	}
}
@media(max-width:1240px){
}
@media(max-width:999px){
	.map_marker.map10 {
		right: 91%;
	}
}
@media (max-width: 768px) {
	.map_marker.map01 a {
		top: calc(0% - 2em);
		left: 0%;
		transform: translateX(-16vw);
	}
	.map_marker.map02 a {
		top: calc(0% - 2em);
		left: auto;
		right: 0%;
	}
	.map_marker.map03 a {
		top: calc(0% - 2em);
		left: auto;
		right: 0%;
	}
	.map_marker.map04 a {
		top: calc(0% - 2em);
		left: 0%;
		transform: translateX(-50%);
	}
	.map_marker.map05 a {
		top: calc(0% - 2em);
		left: 0%;
	}
	.map_marker.map06 a {
		top: calc(0% - 2em);
		left: auto;
		right: 0%;
	}
	.map_marker.map07 a {
		top: calc(0% - 3em);
		left: 0%;
	}
	.map_marker.map08 a {
		top: calc(0%);
		left: 0%;
		transform: translateX(-25%);
	}
	.map_marker.map09 a {
		top: calc(0% - 2em);
		left: -100%;
	}
	.map_marker.map10 a {
		top: calc(0% - 2em);
		left: 0%;
	}
	.map_marker.map01 {
		left: 40.5%;
		top: auto;
		bottom: 11.6%;
	}
	.map_marker.map02 {
		left: 80%;
		top: auto;
		bottom: 21%;
	}
	.map_marker.map03 {
		left: 67.75%;
		top: auto;
		bottom: 41.5%;
	}
	.map_marker.map04 {
		left: 56%;
		top: auto;
		bottom: 44.5%;
	}
	.map_marker.map05 {
		left: 22%;
		bottom: 43%;
	}
	.map_marker.map06 {
		left:72%;
		top: auto;
		bottom: 58.5%;
	}
	.map_marker.map07 {
		left: 16%;
		top: auto;
		bottom: 58%;
	}
	.map_marker.map08 {
		left: 34.5%;
		top: auto;
		bottom: 82.5%;
	}
	.map_marker.map09 {
		left: 19%;
		top: auto;
		bottom: 16.5%;
	}
	.map_marker.map10 {
		right: auto;
		left:1.8%;
		top: auto;
		bottom: 41.5%;
	}
	/* image size */
	.map01 .balloon_inner > img {
		width: calc(2.855vw * 1.4);
	}
	.map02 .balloon_inner > img {
		width: calc(7.945vw * 1.4);
	}
	.map03 .balloon_inner > img {
		width: calc(2.979vw * 1.4);
		margin-top: -12px;
	}
	.map04 .balloon_inner > img {
		width: calc(2.855vw * 1.4);
	}
	.map05 .balloon_inner > img {
		width: calc(2.431vw * 1.4);
	}
	.map06 .balloon_inner > img {
		width: calc(2.172vw * 1.4);
	}
	.map07 .balloon_inner > img {
		width: calc(3.91vw * 1.4);
	}
	.map08 .balloon_inner > img {
		width: calc(3.227vw * 1.4);
	}
	.map09 .balloon_inner > img {
		width: calc(3.662vw * 1.4);
	}
	.map10 .balloon_inner > img {
		width: calc(2.048vw * 1.4);
		margin-right: 1em;
	}
}
@media(max-width:480px){
	.map_marker.map05 {
		left: 21%;
		bottom: 43%;
	}
	.map_marker.map06 {
		left:71%;
		top: auto;
		bottom: 58.5%;
	}
}
.map_base {
	opacity: 0;
	transition: opacity 0.5s ease;
}
.map_base.loaded {
	opacity: 1;
}
/**/
h3.index_h3 {
  margin-top: 0em;
  padding-left: 0;
  line-height: 1.5;
	white-space: nowrap;
}
h3.index_h3:before {
  content: none;
}
/*---Strengths*/
section.index_strengths {
  padding: 4em 0;
}
section.index_strengths h2 {
  position: relative;
  max-width: 1240px;
  padding: 0 50px;
  line-height: 0.45;
  z-index: 1;
}
@media(max-width:1240px) {
  section.index_strengths h2 {
    width: 90%;
  }
}
@media(max-width:999px) {
  section.index_strengths h2 {
    width: 85%;
    padding: 0;
  }
}
section.index_strengths .inner {
  position: relative;
  display: flex;
  column-gap: 4em;
  z-index: 1;
}
@media(max-width:999px) {
  section.index_strengths .inner {
    flex-direction: column;
    row-gap: 1.5em;
  }
}
/*parts*/
section.index_strengths h2:before {
  content: "";
  position: absolute;
  background-image: url("../img/contents/index/bg_arm.png");
  background-size: 100%;
  width: 203px;
  height: 310px;
  top: 22%;
  left: -6%;
  z-index: -1;
}
/*Strengths---*/
/*---About*/
section.index_about {
  position: relative;
  padding: 4em 0;
}
section.index_about .inner {
  padding-bottom: 10%;
}
section.index_about .right_area {
  width: 50%;
  margin-left: 50%;
}
section.index_about .inner img {
  position: absolute;
  bottom: 10%;
  right: 35%;
  max-width: 1098px;
}
@media(max-width:999px) {
  section.index_about {
    padding: 2em 0 12em;
  }
  section.index_about .right_area {
    width: 100%;
    margin-left: 0;
  }
  section.index_about .inner img {
    position: absolute;
    bottom: 8%;
    right: 30%;
    width: 90%;
  }
}
@media(max-width:480px) {
  section.index_about {
    padding: 2em 0 20em;
  }
	section.index_about .inner img {
    position: absolute;
    bottom: 17%;
    right: 0;
    width: 110%;
  }
}
/*About*---/
/*---Our Service*/
section.index_service {
  color: #fff;
  padding: 4em 0;
}
@media(max-width:480px){
	section.index_service {
  color: #fff;
  padding: 7em 0 9em;
}
}
section.index_service h2 {
  color: #fff;
  max-width: 960px;
  margin-bottom: 0;
  padding-bottom: 0.2em;
  text-align: center;
}
@media(max-width:480px){
	section.index_service h2 {
		line-height: 1;
}
}
section.index_service h2 .h2_jp {
  color: #fff;
}
section.index_service .inner {
  width: 1000px;
}
@media(max-width:1100px) {
  section.index_service .inner {
    width: 90%;
  }
}
section.index_service .inner ul {
  display: flex;
  column-gap: 1.5em;
}
@media(max-width:768px) {
  section.index_service .inner ul {
    flex-direction: column;
    row-gap: 2em;
  }
}
section.index_service .inner ul li{
  width:calc((100% - 3em) / 3);
}
@media(max-width:768px) {
  section.index_service .inner ul li{
   width:auto;
  }
}
section.index_service ul li .service_area {
	background-color: #fff;
	border-radius: 10px;
  color: #4d4d4d;
  aspect-ratio: 1 / 0.9;
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
}
section.index_service ul li .service_area:hover {
	transform: scale(1.05); 
  background-color: #fff; 
	border-radius: 10px;
	
}
@media(max-width:768px) {
  section.index_service ul li .service_area {
    background-color: #fff;
    color: #4d4d4d;
    padding: 2em 1em 1.7em;
    border-radius: 10px;
    aspect-ratio: 0;
    text-align: center;
    width: 100%;
  }
	section.index_service ul li .service_area a {
    display: flex;
    align-items: center;
    gap: 1em; /* 間隔調整 */
    padding: 0;
	justify-content: space-around;
  }
	section.index_service ul li .service_area h3 {
    margin: 0;
    white-space: nowrap;
  }
  	section.index_service ul li .service_area img {
    height: auto;
  }
}
@media(max-width:480px) {
  section.index_service ul li .service_area {
    flex-direction: column;
    /*aspect-ratio: 1 / 0.9;*/
    padding: 0;
  }
	section.index_service ul li .service_area a {
	flex-direction: column;
    padding: 2em 0;
  }
}
section.index_service a {
  text-decoration: none;
	padding: 1em 1em 1em;
	display: block;
}
section.index_service h3 {
  color: #4d4d4d;
  font-size: 1.6em;
  position: relative;
  line-height: 1;
  padding-bottom: 0.5em;
  /*display: inline-block;*/
}
@media(max-width:768px) {
  section.index_service h3 {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
section.index_service h3:after {
  content: "";
  display: inline-block;
  background-image: url("../img/common/arrow_circle_right.png");
  background-size: contain;
  width: 1em;
  height: 1em;
  margin-left: 0.3em;
  margin-bottom: 0.25em;
  vertical-align: middle;
}
section.index_service ul li .service_area img {
  height: 180px;
}

/*Our Service---*/
/*---Works*/
section.index_works {
  padding: 9em 0;
}
section.index_works .inner {
  display: flex;
  justify-content: space-between;
animation: fadeInText 1.5s ease-out forwards;
}
section.index_works .inner .left_area {
  width: 35%;
}
section.index_works ul.list_button.button_mini01.btn_col01 > li {
  margin-left: 0;
}
section.index_works .inner img {
  max-width: 330px;
  margin-right: 5em;
}
@media(max-width:999px) {
  section.index_works .inner img {
    width: 90%;
    margin-right: 0em;
  }
}
@media(max-width:768px) {
  section.index_works .inner {
    flex-direction: column;
  }
  section.index_works .inner .left_area {
    width: 100%;
  }
  section.index_works .inner .right_area {
    text-align: right;
  }
}
@media(max-width:480px) {
  section.index_works .inner {
    row-gap: 1em;
  }
  section.index_works .inner .right_area {
    text-align: center;
  }
}
/*Works---*/
/*---Recruit*/
section.index_recruit {
  padding: 5% 0 180px;
	overflow: hidden;
	position: relative;
}
section.index_recruit .inner {
  display: flex;
  column-gap: 5em;
	animation: fadeInText 1.5s ease-out forwards;
}
section.index_recruit .inner .left_area {
  width: 60%;
}
section.index_recruit .inner .right_area {
  position: relative;
}
section.index_recruit .inner img {
  position: absolute;
  max-width: 350px;
  left: -5%;
  top: 3%;
pointer-events: none;
}
@media(max-width:1140px) {
  section.index_recruit .inner {
    display: flex;
    column-gap: 3em;
  }
}
@media(max-width:999px) {
  section.index_recruit .inner {
    column-gap: 1em;
  }
}
@media(max-width:768px) {
  section.index_recruit {
    padding: 9em 0 350px;
  }
  section.index_recruit .inner {
    flex-direction: column;
  }
  section.index_recruit .inner img {
    left: inherit;
    right: -5%;
    top: 1em;
  }
  section.index_recruit .inner .left_area {
    width: 100%;
  }
  section.index_recruit .inner .right_area ul.list_button {
    margin-right: 11em;
    margin-top: 50px;
    ;
  }
}
/*Recruit---*/
/* Attention Box Index */
.box_attention_index {
  background: #fff;
  width: 100%;
  padding: 1em;
  line-height: 1.6;
  border: 5px solid #e0363c;
}
.index_anime.animated {
  animation: fadeInText 1.5s ease-out forwards;
}
/*  Strengths
----------------------------------------------------*/
section.strengths {
	padding-bottom: 150px;
	   
}
@media(max-width:480px){
	section.strengths {
		 padding: 10em 0 180px;
	}
}
section.strengths:last-of-type{
	padding-bottom: 20em;
}
.str_area {
  display: flex;
  column-gap: 1.5em;
  justify-content: space-between;
}
.str_text {
  width: 43%;
  position: relative;
  z-index: 1;
}
.str_text.animated {
  animation: fadeInText 1.5s ease-out forwards;
}
.str_text.str_text01:before {
  content: "";
  position: absolute;
  background-image: url("../img/contents/strengths/img_01.png");
  background-size: 100%;
  width: 236px;
  height: 160px;
  top: -2.8em;
  left: -1em;
  z-index: -1;
}
.str_text.str_text02:before {
  content: "";
  position: absolute;
  background-image: url("../img/contents/strengths/img_02.png");
  background-size: 100%;
  width: 236px;
  height: 160px;
  top: -2.8em;
  left: -1em;
  z-index: -1;
}
.str_text.str_text03:before {
  content: "";
  position: absolute;
  background-image: url("../img/contents/strengths/img_03.png");
  background-size: 100%;
  width: 236px;
  height: 160px;
  top: -2.8em;
  left: -1em;
  z-index: -1;
}
.str_text.str_text04:before {
  content: "";
  position: absolute;
  background-image: url("../img/contents/strengths/img_04.png");
  background-size: 100%;
  background-repeat: no-repeat;
  width: 236px;
  height: 160px;
  top: -2.8em;
  left: -1em;
  z-index: -1;
}
.str_img01.str_works {
		/*background-image: url("../img/contents/strengths/img_strengths01.png");
	background-size: 100%;*/
	background-color: #e2ceb5;
	box-shadow: 15px 15px 0 #fff;
	max-width: 450px;
	width:100%;
	height: 416px;
	position: relative;
}
@media(max-width:999px){
	.str_img01.str_works {
		max-width:78%;
		height: auto;
	}
}
@media(max-width:768px){
	.str_img01.str_works {
		max-width:100%;
	}
}
.str_img01.str_works:after {
	content: "";
	position: absolute;
	background-image: url("../img/contents/strengths/img_pin.png");
	background-size:100%;
	width:42px;
	height: 54px;
	top:-12px;
	left: 48%;
	transform: translateX(-50%);
}
.str_img01.str_works ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.2em 2em;
	padding: 5em 2em 1em;
	text-align: left;
}
@media(max-width:999px){
	.str_img01.str_works ul {
	    gap: 2.5em 2em;
	padding: 5em 2em 3em;
}
}
@media(max-width:480px){
	.str_img01.str_works ul {
	    gap: 1.5em 1em;
	padding: 4em 1em 2em;
	text-align: left;
}
}
.str_img01.str_works ul li{
	border-bottom: 1px solid #fff;
	/*padding-bottom: 0.3em;
	padding-left: 1.3em;*/
	position: relative;
}
.str_img01.str_works ul li:before {
	content:"\f111";
	position: absolute;
	font-family:"Font Awesome 5 Free";
	font-weight: 900;
	color: #fff;
	top:50%;
	transform: translateY(-48%);
	left:0.6em;
	font-size:0.8em;
}
.str_img01.str_works ul li:hover:before {
	color: #DF7652;
}
.str_img01.str_works ul li a{
	text-decoration: none;
	color: #222;
	padding: 0.3em 0 0.3em 1.6em;
	display: block;
}
.str_img01.str_works ul li a:hover{
	text-decoration: none;
	color: #222;
	background-color: #fff;
}
.str_img01 img {
  max-width: 450px;
width:100%;
  box-shadow: 15px 15px 0 #fff;
}
.str_img02 img {
  max-width: 450px;
	width:100%;
  box-shadow: 15px 15px 0 #f4f6f5;
}
@media(max-width:1200px){
	.str_area {
		flex-direction: column;
	}
	section.bg_dot .str_area {
		flex-direction: column-reverse;
	}
	.str_text {
		width:100%;
	}
	.str_img01 {
		text-align:right; 
		margin-top: 60px;
	}
	.str_img01 img {
		max-width: 60%;
	}
	.str_img02 {
		margin-top: 60px;
	}
	.str_img02 img {
		max-width: 60%;
	}
}
@media(max-width:999px){
	.str_img01 {
		margin-top: 40px;
	}
	.str_img01 img {
		max-width: 80%;
	}
	.str_img02 {
		margin-top: 40px;
	}
	.str_img02 img {
		max-width: 80%;
	}
}
@media(max-width:768px){
	.str_img01 img {
		max-width:100%;
	}
	.str_img02 img {
		max-width: 100%;
	}
}
/*  About
----------------------------------------------------*/

.abo_ul {
	display: flex;
	column-gap: 1.5em;
}
.abo_ul li {
	width:calc((100% - 3em) / 3);
	background-color: #f4f6f5;
	border-radius: 15px;
	overflow: hidden;
}
.abo_flow {
	text-align: center;
	margin-top: 3em;
}
.abo_flow img {
	width:100%;
	max-width:928px;
}
.abo_text {
	padding: 0.8em 1.5em 1.5em 1.8em;
}
.abo_hl {
	min-height: 3em;
	line-height: 1.5;
	margin-bottom: 0.5em;
	display: flex;
	align-items: center;
}
@media(max-width:999px){
	.abo_ul {
		flex-direction: column;
		row-gap:2em;
	}
	.abo_ul li {
		width: 100%;
	}
	.abo_text {
	padding: 1.5em 1.5em 2.5em 1.8em;
}
}
/*  Works
----------------------------------------------------*/
.works_box {
  display: flex;
  flex-wrap: wrap;
  column-gap: 5em;
  row-gap: 7em;
  margin: 5em 0 8em;
}
.works_box li {
  width: calc((100% - 10em) / 3);
  text-align: center;
  position: relative;
}
.works_box li img {
  width: 100%;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.works_box li .label {
  background-color: #299e4f;
  color: #fff;
  font-size: 1.2em;
  display: inline-block;
  padding: 0.3em 1.5em;
  border-radius: 50px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -7px;
  white-space: nowrap;
}
.works_box li a img:hover {
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  transform: scale(1.03);
}
@media(max-width:999px) {
  .works_box {
    column-gap: 2.5em;
  }
  .works_box li {
    width: calc((100% - 5em) / 3);
    text-align: center;
    position: relative;
  }
  .works_box li .label {
    font-size: 1em;
  }
}
@media(max-width:768px) {
  .works_box {
    column-gap: 1.5em;
    row-gap: 3em;
  }
  .works_box li {
    width: calc((100% - 3em) / 2);
  }
	
}
@media(max-width:480px) {
  .works_box {
    justify-content: space-around;
    column-gap: 1.5em;
    row-gap: 3em;
	margin: 3em 0 6em;
  }
  .works_box li {
    width: 100%;
  }
	.works_box li img {
		width:80%;
	}
}

/*  Work-inner
----------------------------------------------------*/
/*anchor*/
.work_inner {
  position: relative;
  padding-top: 5em;
}
.work_inner img {
  box-shadow: 15px 15px 0 rgba(83,171,111,0.8) ;
}
.work_inner_icon {
  position: absolute;
 top: -415px;
  right: 0;
	animation: fadeInText 3s ease 1 normal backwards;
}
.work_inner_icon img {
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
margin-right: 70px;
}
.work_inner_box,
.work_inner_box02 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 15%;
	position: relative;
}
.work_inner_box:last-of-type {
  margin-bottom: 0;
}
.work_inner_box02 {
	flex-direction: row-reverse;
}
.work_inner_box.vertical {
	margin-left: 13%;
}
.work_inner_box02.vertical {
	margin-right: 10%;
}
.work_inner_box img,
.work_inner_box02 img {
  max-width: 100%;
  height: auto;
}
.work_inner_box p {
	width:auto;
	max-width: 50%;
  	background: #fff;
	font-size: 1.12em;
  	padding: 3em 4em;
	position:absolute;
	right: 0;
	top:50%;
	transform: translateY(-10%);
	border: 1px solid #53AB6F;
	box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.work_inner_box02 p {
	width:auto;
	max-width: 50%;
  background: #fff;
	font-size: 1.1em;
  padding: 2em 2.5em;
position: absolute;
	top:50%;
	transform: translateY(-10%);
	left: 2em;
	border: 1px solid #53AB6F;
	box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.work_inner_box.vertical p {
	right: 3em;
}
.work_inner_box02.vertical p {
	left: 5em;
}
@media(max-width:999px) {
	section.inner_work {
		padding-top: 15em;
		padding-bottom: 15em;
	}
  .work_inner_icon {
	  top:-23em;
  }
	.work_inner_box {
		margin-bottom: 0;
	}
	.work_inner_box02 {
	flex-direction: row;
		margin-bottom: 0;
}
	.work_inner_box.vertical {
		margin-left: 0;
		justify-content: center;
	}
	.work_inner_box.vertical p{
		right: 0;
	}
	.work_inner_box02.vertical {
		margin-right: 0;
		justify-content: center;
	}
	.work_inner_box02.vertical p{
		left:0;
	}
	.work_inner_box.vertical img,
	.work_inner_box02.vertical img{
		width:80%;
	}
	.work_inner_box p {
		max-width:100%;
		width: 100%;
		position: inherit;
		top:0;
		background: none;
		padding: 3em 0 5em 0.5em;
		box-shadow: none;
		border: none;
	}
	.work_inner_box02 p {
		max-width:100%;
		width: 100%;
		position: inherit;
		top:0;
		left:0;
		background: none;
		padding: 3em 0 5em 0.5em;
		box-shadow: none;
		border: none;
	}
	.work_inner img {
		width:100%;
	}
 .work_inner_icon img {
    width: 40vw;
	  margin-right: 0px;
  }
.work_p span{
	padding-bottom: 0.2em;
	border-bottom: 1px solid #CDDDD2;
	line-height: 2.5;
}
}
@media(max-width:768px){
	section.inner_work {
		padding-top: 15em;
		padding-bottom: 15em;
	}
	 .work_inner_icon {
	  top:-22em;
  }
}
@media(max-width:480px){
	section.inner_work {
		padding-top: 10em;
		padding-bottom: 15em;
	}
	 .work_inner_icon {
	  top:-15em;
  }
	 .work_inner_icon img {
    width: 50vw;
	  margin-right: 0px;
  }
	.work_inner_box p,
	.work_inner_box02 p{
		padding-bottom: 3em;
	}
}
/*  Achievement
----------------------------------------------------*/
.main_achive {
	background-color: #fff;
	margin-top: 1em;
	padding: 5em 3em 3em;
}
@media(max-width:480px){
	.main_achive {
		padding: 3em 1.5em;
	}
}
section h3.h3_achive {
	background-color: #299e4f;
	color: #fff;
	font-size:1.6em;
	font-weight: 500;
	padding: 0.5em 1.3em;
	border-radius: 50px;
}
section h3.h3_achive:before {
	content: none;
}
section h4.h4_achive {
	width:98%;
	color: #222;
	font-size:1.2em;
	border-bottom: none;
	border-left: 5px solid #299e4f;
	padding-left: 0.5em;
	padding-bottom: 0;
	margin-top: 2em;
}

ul.achive_box {
	display: flex;
	flex-wrap: wrap;
	width:98%;
	column-gap: 2em;
	row-gap:2em;
	margin: 1.5em auto 5em;
}
ul.achive_box li {
	width:calc((100% - 2em) / 2); 
	min-height: 277px;
	background-color: #f9fafa;
	border: 1px solid #299e4f;
	border-radius: 10px;
	padding: 0 2em 2em;
}
@media(max-width:999px){
	ul.achive_box li {
		width:100%;
	}
}
.project_meta {
  display: flex;
 justify-content: flex-end;
  margin-bottom: 0.5em;
}

.project_meta .label_date {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 400;
  color: #222;
  padding: 1em 1.2em 0.3em;
  font-family: 'Lato';
}

ul.achive_box li dl{
  display: grid;
  grid-template-columns: 60px 1fr; 
  row-gap: 1em;
  column-gap: 1em;
  padding-top: 1em;
  align-items: center;
}
ul.achive_box li dl > dd:nth-of-type(1){
	font-size: 1.2em;
	line-height: 1.5;
}
ul.achive_box li dl dt{
	font-weight: 500;
	font-size:0.86em;
}
@media(max-width:480px){
	ul.achive_box li dl{
	display: block;
}
	ul.achive_box li dl dt{
	border-bottom: 1px solid #ccc;
		margin-bottom: 0.3em;
}
	ul.achive_box li dl dd{
	margin-bottom: 0.5em;
}
}
.achive_type {
	display: flex;
	width:100%;
	flex-wrap: wrap;
	column-gap: 0.5em;
	row-gap:0.5em;
}
@media(max-width:480px){
	.achive_type {
	padding-top: 0.5em;
}
}
.badge {
	background-color: #e4f1d7;
	border-radius: 50px;
	padding: 0em 1em;
}
.achive_button {
	display: flex;
	flex-wrap: wrap;
	column-gap: 3em;
	margin-top: 3em;
	row-gap:1.5em;
}
.achive_button li.achive_btn01, 
.achive_button li.achive_btn02 {
	background-color: #34a358;
	width:calc((100% - 3em) / 2);
	border-radius: 10px;
	color: #fff;
	border: 2px solid #34a358;
}
.achive_button li:hover {
	opacity: 0.9;
}
.achive_button li.achive_btn01 {
	background-image: url("../img/contents/achievement/achive_icon01.png");
	background-size:auto 100%;
	background-position: right center;
	background-repeat: no-repeat;
}
.achive_button li.achive_btn02 {
	background-image: url("../img/contents/achievement/achive_icon02.png");
	background-size:auto 100%;
	background-position: right center;
	background-repeat: no-repeat;
}
@media(max-width:999px){
.achive_button li.achive_btn01, 
.achive_button li.achive_btn02 {
	width:100%;
}
}
@media(max-width:480px){
.achive_button li.achive_btn01, 
.achive_button li.achive_btn02 {
	font-size:0.93em;
}
}
.achive_btn_text {
	font-size: 1.6em;
	font-weight: 700;
}
@media(min-width:1000px) and (max-width:1130px){
	.achive_btn_text {
	font-size: 1.3em;
}
}
@media(max-width:999px){
.achive_btn_text {
	font-size: 1.18em;
}
}
.achive_button li a{
	color: #fff;
	text-decoration: none;
	display: block;
  width: 100%;
  height: 100%;
	padding: 1em 2em ;
}
@media(max-width:480px){
.achive_button a{
	padding: 1em 0.8em;
}
}
.tab_content.tab_con_map {
	background-color:transparent;
	display: flex;
	text-align: center;
	display: none;
}
@media(max-width:768px){
	.tab_content.tab_con_map {
		padding: 0.1em 0em 2em;
}
}
.tab_content.tab_con_map svg {
	width: 85%;
}
@media(max-width:999px){
	.tab_content.tab_con_map svg {
	width: 100%;
}
}
/*map*/
.cls-1 {
        fill: #34a358;
        stroke: #fff;
        stroke-width: 2px;
      }
		.cls-1:hover {
      fill: #DD6C45;
	pointer-events: inherit;
    }
.cls-1.hover_none:hover {
      fill: #34a358;
    }
text tspan:first-of-type {
	font-size:18px;
}
text tspan:nth-of-type(2) {
	font-size:15px;
}
@media(max-width:999px){
	text tspan:first-of-type {
	font-size:20px;
}
	text tspan:nth-of-type(2) {
	font-size:17px;
}
}
@media(max-width:768px){
	text tspan:first-of-type {
	font-size:24px;
}
	text tspan:nth-of-type(2) {
	font-size:21px;
}
}

/*  Greeting
----------------------------------------------------*/
.gre_section {
  position: relative;
  margin-bottom: 5%;
}
.gre_box {
	width:100%;
  position: relative;
	overflow-x: hidden;
}
.gre_box p{
  font-size: 1.2em;
}
.gre_box01 img {
	width:100%;
	border-radius: 5px;
}
@media(max-width:999px){
	.gre_box01 p {
		font-size:1.5vw;
	}
}
@media(max-width:768px){
	.gre_box p{
  font-size: 2vw;
}
	.gre_box01 {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
  }
	.gre_box01 img {
    width: 125%; /* はみ出させる */
    height: auto;
    display: block;
    position: relative;
    left: -10%; /* 中央寄せ調整（必要なら） */
    border-radius: 0; /* 不要 */
	z-index: -1;
  }
}
@media(max-width:480px){
	.gre_box01 {
		display: flex;
        flex-direction: column;
		row-gap:1.5em;
	}
	.gre_box p{
  font-size: 3.5vw;
}
	.gre_box01 img {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0 auto; 
    left: auto;
    position: relative;
	border-radius: 5px;
  }
}
.gre_text01 {
	position: absolute;
	top:3vw;
	left: 7%;
}
@media(max-width:768px){
	.gre_text01 {
		left: 5%;
	}
}
.gre_text01 p:first-of-type {
	font-size:2.3em;
	font-weight: 700;
	color: #34a358;
	line-height: 1.7;
}
@media(max-width:999px){
	.gre_text01 p:first-of-type {
		font-size:2.8vw;
	}
}
@media(max-width:768px){
	.gre_text01 p:first-of-type {
		font-size:3.8vw;
	}
}
@media(max-width:480px){
	.gre_text01 p:first-of-type {
		font-size:1.8em;
	}
}
.gre_text02 {
	position: absolute;
	bottom: 10%;
	left: 7%;
}
@media(max-width:768px){
	.gre_text02 {
		left:5%;
	}
}
.gre_text02 p {
	line-height: 1.5;
}

@media(max-width:480px){
	.gre_text01,
  .gre_text02 {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    z-index: auto;
    margin-bottom: 1em; 
    text-align: left;
	padding-left: 3%;
	  padding-right: 3%;
  }
	.gre_text01{
		order: 2;
	}
	.gre_text02 {
		order: 3;
		text-align: right;
	}
}
.gre_name {
    font-size: 1.53em;
    font-weight: 500;
}
.gre_text {
	padding: 5em 5.5em 4em;
	font-size: 1.06em;
}

@media (max-width: 999px) {
    .gre_text {
        padding: 2em 3.5em 0;
        font-size: 1em;
    }
}
@media (max-width: 768px) {
    .gre_text {
        padding: 0em 1em 0;
    }
}
.gre_text p {
    line-height: 3.1;
}
@media (max-width: 768px) {
    .gre_text p {
        line-height: 2.2;
    }
}
/*  Policy
----------------------------------------------------*/
.policy {
  display: flex;
  flex-wrap: wrap;
}
.policy_set {
  display: flex;
  flex-basis: 100%;
  justify-content: center;
  margin-top: 7em;
  column-gap: 3em;
}
@media(max-width:768px) {
  .policy_set {
    flex-direction: column;
  }
}
.policy_title {
  position: relative;
  display: inline-block;
  padding-left: 0.8em;
  font-weight: 500;
}
.policy_title:before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  background-color: #299e4f;
  width: 3px;
  height: 1em;
}
.box_attention_wh.policy_box {
  width: 80%;
}
.box_attention_wh.policy_box p.policy_border {
  border-bottom: 1px solid #dedede;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
@media(max-width:999px) {
  .box_attention_wh.policy_box {
    width: 70%;
  }
}
@media(max-width:768px) {
  .box_attention_wh.policy_box {
    width: 100%;
    margin-top: 1em;
  }
}
@media(max-width:480px) {
  .policy_set {
    flex-direction: column;
  }
  .box_attention_wh.policy_box {
    width: 100%;
  }
}
/*  Outline
----------------------------------------------------*/
.map {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  margin-top: 3em;
  position: relative;
  background-color: #fff;
  border-radius: 15px;
}
.map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.8em;
  border-radius: 15px;
}
@media(max-width:480px) {
  .map iframe {
    padding: 0.3em;
  }
}
/*  FAQ
----------------------------------------------------*/
.spn_faq li {
  background-color: #fff;
  border: 1px solid #299e4f;
  padding: 1em 1em;
  border-radius: 5px;
  margin-bottom: 1.2em;
}
.faq_q {
  position: relative;
  padding-left: 3em;
  font-weight: 700;
  font-size: 1.2em;
  color: #333;
}
.faq_q p {
  padding-right: 2em;
  line-height: 1.6;
}
.faq_q:before {
  content: "Q";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.3em;
  color: #299e4f;
  font-size: 26px;
  font-family: 'Lato';
  font-weight: 700;
}
.faq_q:after {
  content: "\f107";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #848484;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5em;
}
.faq_q.open:after {
  content: "\f106";
}
.faq_a {
  display: none;
  position: relative;
  padding-left: 3.6em;
  margin-top: 1em;
  padding-top: 1em;
  border-top: 1px solid #cccccc;
}
.faq_a p {
  padding-right: 1em;
  line-height: 1.8;
}
.faq_a:before {
  content: "A";
  position: absolute;
  top: 11px;
  /*transform: translateY(-50%);*/
  left: 0.3em;
  color: #f36a3a;
  font-size: 26px;
  font-family: 'Lato';
  font-weight: 700;
}
/*  Recruit
----------------------------------------------------*/
.rec_flow {
	display: flex;
	column-gap: 2.5em;
	justify-content: space-between;
}
.rec_flow li {
	width:calc((100% - 7.5em) / 4);
	background-color: #fff;
	padding: 0.5em 1em 2em;
	text-align: center;
	font-size: 1.53em;
	font-weight: 700;
	line-height: 2;
	border-radius: 10px;
	position: relative;
}
@media(max-width:1017px){
	.rec_flow {
		column-gap: 1.5em;
	}
	.rec_flow li {
		width:calc((100% - 4.5em) / 4);
		font-size: 1.4em;
	}
}
@media(max-width:999px){
	.rec_flow {
		flex-direction: column;
		row-gap:2.5em;
	}
	.rec_flow li {
		width:100%;
		padding: 0.5em 1em 0.8em;
		line-height: 1.5;
	}
}
.rec_flow li:after {
	content: "";
    background: #299e4f;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    margin: 0;
    width: 1em;
    height: calc(tan(60deg) * 1em / 2.2);
    display: inline-block;
    position: absolute;
    top: 50%;
    right: -30px;
    transform: rotate(90deg) translate(-50%, -50%);
}
.rec_flow li:last-of-type:after {
	content: none;
}
@media(max-width:1017px){
	.rec_flow li:after {
		right: -18px;
	}
}
@media(max-width:999px){
	.rec_flow li:after {
        top: auto;
        bottom: -1.4em;
        right: auto;
        left: 50%;
        transform: rotate(180deg) translate(50%, -0%);
	}
}
.flow_num {
	font-size: 1.65em;
	color: #299e4f;
	 font-family: 'Lato';
	font-weight: 900;
  
}
/*  Program
----------------------------------------------------*/
.program_list {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.program_list .prg_title {
  margin-top: 1em;
  padding-left: 4em;
  color: #000;
  font-weight: 700;
  text-indent: -4em;
}
.program_list .prg_title > .title_number {
  display: inline-block;
  background: #000;
  width: 3.5em;
  margin-right: 0.5em;
  padding: 0 0.15em;
  color: #fff;
  line-height: 1.15;
  text-indent: 0;
  text-align: center;
}
.program_list dt {
  float: left;
  width: 3.0em;
}
.program_list dt:after {
  content: "：";
}
.program_list dd {
  display: block;
  padding-left: 9em;
  text-indent: -6em;
}
.program_list dd .prg_name {
  text-indent: 0;
  display: inline-table;
  width: 5em;
}
.prg_time {
  text-align: right;
}
.prg_time {
  text-align: right;
  color: #555;
}
.prg_sponsor {
  margin-top: 10px;
  text-align: right;
}
/* Flyer Style */
section .prg_flyer {
  float: right;
  margin-left: 1em;
  overflow: hidden;
}
section .prg_flyer img {
  width: 100px;
  float: right;
}
section .prg_flyer a:hover img {
  filter: alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
  opacity: 0.60;
  transition: 0.2s;
}
section .prg_flyer a:not(:first-of-type) {
  display: none;
}
/* Irregular Option */
section h3 + .prg_time {
  margin-top: -20px;
}
section h4.prg {
  font-size: 1.25em;
  padding-right: 4em;
}
section h4.prg .prg_icon {
  position: absolute;
  bottom: 3px;
  right: 0;
  padding: 0.15em;
  color: #fff;
  font-size: 0.7em;
  font-weight: normal;
  border-radius: 2px;
}
/*  Registration
----------------------------------------------------*/
/*  News
----------------------------------------------------*/
ul.list_news li {
  position: relative;
  padding: 1.5em 0.5em;
  border-bottom: 1px solid #ccc;
}
ul.list_news li:after {
  content: "";
  position: absolute;
  background-image: url("../img/common/arrow_circle_right.png");
  background-size: 100%;
  background-repeat: no-repeat;
  width: 31px;
  height: 31px;
  top: 50%;
  transform: translateY(-50%);
  right: 1em;
}
@media(max-width:480px) {
  ul.list_news li:after {
    width: 25px;
    height: 25px;
    right: 0em;
  }
}
.news_area {
  display: flex;
}
.news_date {
  color: #848484;
  font-weight: 700;
  font-family: 'inter';
  padding-right: 1em;
}
.news_title {
  background-color: #299e4f;
  color: #fff;
  padding: 0 1.5em;
  border-radius: 50px;
  white-space: nowrap;
}
@media(max-width:768px) {
  .news_title {
    font-size: 0.92em;
    padding: 0 1em;
    height: 25px;
    display: flex;
    align-items: center;
  }
}
.news_text {
  padding: 1.3em 2em 0 0;
}
/*  contact
----------------------------------------------------*/
.formTable {
  width: 100%;
	background-color: #fff;
	border-radius: 10px;
	padding: 3.5em;
}
.formTable tr.form_tr01 th, 
.formTable tr.form_tr01 td {
	padding-top: 3.5em;
}
.formTable tr.form_trlast th, 
.formTable tr.form_trlast td {
	padding-bottom: 3.5em;
}
.formTable tr:first-of-type th,
.formTable tr:first-of-type td{
	padding-top:3.5em;
}
.formTable th {
  color: #333;
  width: 25%;
	padding-left: 3.5em;
padding-right: 1em;
  white-space: nowrap;
}
.formTable td {
	padding-right: 3.5em;
}
.formTable th, .formTable td {
  padding-bottom: 1.5em;
}
@media(max-width:999px) {
  .formTable th, .formTable td {
    display: block;
  }
  .formTable th {
    padding-bottom: 0.5em;
  }
	.formTable td {
    padding-left: 3.5em;
  }
.formTable tr.form_tr01 td {
	padding-top: 0;
}
.formTable tr.form_trlast th{
	padding-bottom: 0.5em;
}
}
@media(max-width:480px) {
	.formTable {
		width: 100%;
    display: block;
		padding: 2.5em;
    overflow-x: auto;
	}
	.formTable table,
  .formTable thead,
  .formTable tbody,
  .formTable th,
  .formTable td,
  .formTable tr {
    display: block;
    width: 100%;
  }
	.formTable tr.form_tr01 th{
		padding-top: 0;
	}
	.formTable tr.form_trlast td{
		padding-bottom: 0;
	}
	.formTable th,
	.formTable td {
		padding-left: 0;
		padding-right: 0;
	}
	
}

.formTable td.post {
  line-height: 1;
}
.required {
  background-color: #ea4444;
  color: #fff;
  font-weight: 400;
  font-size: 0.93em;
  margin-left: 0.5em;
  padding: 0.1em 0.35em;
}
.any {
  background-color: #fff;
  border: 1px solid #299e4f;
  color: #299e4f;
  font-weight: 400;
  font-size: 0.93em;
  margin-left: 0.5em;
  padding: 0.1em 0.35em;
}
input {
  padding: 1.1em;
  justify-content: flex-start;
}
input.input02 {
  padding: 0.5em 1.1em;
  background-color: #fff;
}
input[type="radio"]:hover{
  cursor: pointer;
}
input[type="text"] {
  width: 100%;
  border: 1px solid rgba(34, 34, 34, 0.2);
  border-radius: 3px;
}
input[type="text"].input02 {
  width: 60%;
}
@media(max-width:480px){
	input[type="text"].input02 {
  width: 100%;
}
}
input[type="text"].postcode {
  width: 20%;
  height: 30px;
}
@media(max-width:680px){
	input[type="text"].postcode {
  width: 30%;
}
}
@media(max-width:480px){
	input[type="text"].postcode {
  width: 40%;
}
}
input[type="text"][name="年齢"]{
	width:35%;
}
input[type="submit"] {
  background-color: #299e4f;
  color: #fff;
  padding: 1.2em 3em;
  font-size: 1.4rem;
  font-weight: 700;
  border: 2px solid #299e4f;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
  transition: 0.3s;
}
input[type="button"] {
  background-color: #299e4f;
  color: #fff;
  padding: 1.2em 3em;
  font-size: 1.4rem;
  font-weight: 700;
  border: 2px solid #299e4f;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
  transition: 0.3s;
}
input[type="checkbox"]:hover{
	cursor: pointer;
}
textarea {
  width: 100%;
  border: 1px solid rgba(34, 34, 34, 0.2);
  border-radius: 3px;
}
select[name="都道府県名"], 
select[name="希望職種"] {
  width: 300px; /* お好みで調整 */
  height: 43px; /* 高さを広げる */
  padding: 0.5em;
  font-size: 1.5rem;
  border-radius: 3px;
  border: 1px solid #ccc;
}
@media(max-width:597px){
	select[name="都道府県名"] {
  margin-top: 8px;
}
}
@media(max-width:480px){
	select[name="都道府県名"], 
select[name="希望職種"] {
  width: 100%;
}
}
select[name="都道府県名"]:hover, 
select[name="希望職種"]:hover {
  cursor: pointer;
}
input[type="submit"]:hover {
  background-color: #fff;
  color: #299e4f;
}
.formTable a {
  color: #222222;
}
/*thanks*/
section.thanks {
  height: 100vh;
  padding-top: 11.6em;
}
.formStep ul {
  display: flex;
	column-gap: 2em;
  justify-content: space-around;
}
.formStep ul li {
  position: relative;
	width: calc(100% / 3);
	background: #ccc;
	color: #fff;
	font-weight: 700;
	padding: 1em 0;
}
.formStep ul > li:nth-of-type(1):after,
.formStep ul > li:nth-of-type(2):after{
    content: "";
    width: 1em;
    height: 100%;
    background: #ccc;
    position: absolute;
    top: 0;
    right: -1em;
    z-index: 1;
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}
.formStep ul > li:nth-of-type(2):before,
.formStep ul > li:nth-of-type(3):before{
    content: "";
    width: 1em;
    height: 100%;
    background: #ccc;
    position: absolute;
    top: 0;
   left: -1em;
    z-index: 1;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 100% 50%);
}
.formStep ul li.current {
	background:#6DBB86;
color:#FFF;
}
.formStep ul > li.current:nth-of-type(1):after,
.formStep ul > li.current:nth-of-type(2):after{
    content: "";
    width: 1em;
    height: 100%;
    background: #6DBB86;
    position: absolute;
    top: 0;
    right: -1em;
    z-index: 1;
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}
.formStep ul > li.current:nth-of-type(2):before,
.formStep ul > li.current:nth-of-type(3):before{
    content: "";
    width: 1em;
    height: 100%;
    background: #6DBB86;
    position: absolute;
    top: 0;
   left: -1em;
    z-index: 1;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 100% 50%);
}
/*  Agent
----------------------------------------------------*/
.agent_img img {
	width:60%;
}
@media(max-width:999px){
	.agent_img img {
	width:80%;
}
}
@media(max-width:768px){
	.agent_img img {
	width:100%;
}
}
/*----------------------------------------------------
	9.0 - Option
----------------------------------------------------*/
/*  List - Text
----------------------------------------------------*/
/* No icon Style */
ul.list_normal_jp li {
  padding-left: 1.0em;
}
ul.list_normal_jp li {
  padding-left: 1.0em;
  text-indent: -1.0em;
}
/* No icon Style/English */
ul.list_normal_en li {
  padding-left: 0.425em;
}
ul.list_normal_en li {
  padding-left: 0.425em;
  text-indent: -0.425em;
}
/* Disk Style */
ul.list_disc {
  margin-left: 1.2em;
}
ul.list_disc li {
  position: relative;
  margin-bottom: 0.5em;
}
ul.list_disc li:after {
  display: block;
  background-color: #848484;
  content: '';
  position: absolute;
  top: .65em;
  left: -1em;
  width: 6px;
  height: 6px;
  border-radius: 100%;
}
/* Mark Style */
ul.list_mark li {
  padding-left: 1.0em;
  position: relative;
}
ul.list_mark li:before, ul.list_mark li:after {
  content: " ";
  position: absolute;
}
ul.list_mark li:before {
  background-color: #000;
  width: 1em;
  height: 1em;
  top: 0.35em;
  left: 0em;
  border-radius: 50%;
}
ul.list_mark li:after {
  top: 0.9rem;
  left: 0.6rem;
  border: 0.4rem solid transparent;
  border-left: 0.5rem solid #fff;
}
/* Link Style */
ul.list_link li {
  padding: 0 0 0.5em 1.0em;
  position: relative;
  border-bottom: 1px solid #ddd;
}
ul.list_link li:before {
  display: block;
  position: absolute;
  content: "\025b6";
  width: 1em;
  height: 1em;
  margin-left: -1em;
  color: #000;
}
/* Decimal Style */
ol.list_decimal {
  list-style: none;
  counter-reset: num;
  margin-left: 2.0em;
}
ol.list_decimal > li {
  position: relative;
}
ol.list_decimal > li:before {
  counter-increment: num;
  content: counter(num) ".";
  display: inline-block;
  position: absolute;
  width: 2em;
  top: 0;
  left: -2em;
  margin-right: 2em;
  text-align: center;
}
/* Decimal (Parentheses) Style */
ol.list_numberParen {
  list-style-type: none;
  counter-reset: ol_li;
  margin-left: 2em;
}
ol.list_numberParen > li {
  position: relative;
line-height: 2;
}
ol.list_numberParen > li:before {
  counter-increment: ol_li;
  content: "("counter(ol_li)")";
  display: inline-block;
  position: absolute;
  width: 2em;
  top: 0;
  left: -2em;
  margin-right: 2em;
  text-align: center;
}
/* Decimal (Parentheses - One Side) Style */
ol.list_numberParenR {
  list-style-type: none;
  counter-reset: ul_lione;
  margin-left: 2em;
}
ol.list_numberParenR > li {
  position: relative;
}
ol.list_numberParenR > li:before {
  counter-increment: ul_lione;
  content: counter(ul_lione)")";
  display: inline-block;
  position: absolute;
  width: 2em;
  top: 0;
  left: -2em;
  margin-right: 2em;
  text-align: center;
}
/*  List - Button
----------------------------------------------------*/
ul.list_button {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  line-height: 1.1;
  text-align: center;
}
ul.list_button li {
  margin: 0 auto 0.75em;
}
ul.list_button > li a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #299e4f;
  padding: 1.2em 1em;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #299e4f;
  border-radius: 50px;
  transition: 0.3s;
}
ul.list_button > li a.entry.off {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #bcbcbc;
  padding: 0.8em 1em;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #fff;
  border-radius: 50px;
  transition: 0.3s;
  pointer-events: none;
}
ul.list_button > li a:hover {
  background-color: #fff;
  border-radius: 50px;
  color: #222;
}
ul.list_button > li a.entry:hover {
  background-color: #fff;
  border-radius: 50px;
  color: #f36a3a;
  border: 2px solid #f36a3a;
}
ul.list_button > li.notLink {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #bcbcbc;
  height: 56px;
  color: #fff;
  text-decoration: none;
  border: 2px solid #fff;
  border-radius: 4px;
  box-shadow: 0 2px 5px #CCC;
  transition: 0.3s;
}
ul.list_button.btn_col01 > li {
  width: 35%;
}
ul.list_button.btn_col02 > li {
  width: 48%;
}
ul.list_button.btn_col02_center > li {
  width: 40%;
}
ul.list_button.btn_col03 > li {
  width: 30%;
}
@media(max-width: 768px) {
ul.list_button.btn_col01 > li {
  width: 50%;
}
ul.list_button.btn_col02_center > li,
ul.list_button.btn_col03 > li {
    width: 48%;
  }
}
@media(max-width:480px){
	ul.list_button.btn_col01 > li {
  width: 70%;
}
}
/* 2 Column After */
ul.list_button.btn_col02:after {
  content: "";
  display: block;
  width: 50%;
  height: 0;
}
/* 3 Column After */
ul.list_button.btn_col03:after {
  content: "";
  display: block;
  width: 66.67%;
  height: 0;
}
@media(max-width: 768px) {
  ul.list_button.btn_col03:after {
    width: 50%;
  }
}
/*--mini01,02*/
ul.list_button.button_mini01.btn_col01 > li, 
ul.list_button.button_mini02.btn_col01 > li {
  width: auto;
  margin-right: 0;
}
ul.list_button.button_mini01 > li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  min-width: 40%;
  height: 42px;
  padding: 0 1.5em 0 3em;
  color: #299e4f;
  font-size: 0.93em;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #299e4f;
  border-radius: 50px;
  transition: 0.3s;
}
ul.list_button.button_mini02 > li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #299e4f;
  min-width: 40%;
  height: 42px;
  padding: 0 2em 0 3em;
  color: #fff;
  font-size: 0.93em;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #299e4f;
  border-radius: 50px;
  transition: 0.3s;
}
ul.list_button.button_mini01 > li a:hover {
  background-color: #299e4f;
  border-radius: 50px;
  color: #fff;
}
ul.list_button.button_mini02 > li a:hover {
  background-color: #fff;
  border-radius: 50px;
  color: #299e4f;
}
/*button arrow*/
ul.list_button.button_mini01 > li a:before, 
ul.list_button.button_mini02 > li a:hover:before {
  content: "";
  position: absolute;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 12'%3E%3Cpath fill='%23299e4f' d='m6.38.25h0c-.27.31-.26.8.04,1.09l3.94,3.89H.73c-.4,0-.73.35-.73.77h0c0,.43.33.77.73.77h9.63s-3.95,3.89-3.95,3.89c-.3.29-.31.78-.04,1.09h0c.27.31.73.33,1.03.04l5.4-5.32c.26-.26.26-.69,0-.95L7.41.21c-.29-.29-.76-.27-1.03.04Z'/%3E%3C/svg%3E") 50% 50%/100% 100% no-repeat;
  width: 13px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  left: 1.8em;
}
ul.list_button.button_mini02 > li a:before, ul.list_button.button_mini01 > li a:hover:before {
  content: "";
  position: absolute;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 12'%3E%3Cpath fill='%23ffffff' d='m6.38.25h0c-.27.31-.26.8.04,1.09l3.94,3.89H.73c-.4,0-.73.35-.73.77h0c0,.43.33.77.73.77h9.63s-3.95,3.89-3.95,3.89c-.3.29-.31.78-.04,1.09h0c.27.31.73.33,1.03.04l5.4-5.32c.26-.26.26-.69,0-.95L7.41.21c-.29-.29-.76-.27-1.03.04Z'/%3E%3C/svg%3E") 50% 50%/100% 100% no-repeat;
  width: 13px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  left: 1.8em;
}

/*mini01,02--*/
/*  List - Banner
----------------------------------------------------*/
ul.list_banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  line-height: 1.1;
  text-align: center;
}
ul.list_banner li {
  margin: 0 0 0.75em;
}
ul.list_banner li a img {
  width: 100%;
  border: 1px solid #ddd;
  transition: 0.3s;
}
ul.list_banner > li a img:hover {
  border: 1px solid #999;
}
ul.list_banner li.blank {
  margin: 0;
}
ul.list_banner.banner_col01 > li {
  width: 100%;
}
ul.list_banner.banner_col02 > li {
  width: 48%;
}
ul.list_banner.banner_col03 > li {
  width: 32%;
}
ul.list_banner.banner_col04 > li {
  width: 24%;
}
@media(max-width: 480px) {
  ul.list_banner.banner_col04 > li {
    width: 30%;
  }
}
/*  Table
----------------------------------------------------*/
table.table_normal {
  width: 100%;
  border: solid 1px #ddd;
}
table.table_normal th {
  padding: 10px;
  background: #f8f1dc;
  border-left: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
  font-weight: 700;
}
table.table_normal td {
  padding: 10px;
  background: #fff;
  border-left: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
}
/* Vertical Setting */
table th.vtl_center, table td.vtl_center {
  vertical-align: middle;
}
table th.vtl_top, table td.vtl_top {
  vertical-align: top;
}
/* Scroll */
@media (max-width: 768px) {
  .table_scroll {
    overflow-x: scroll;
  }
  .table_scroll::-webkit-scrollbar {
    height: 10px;
  }
  .table_scroll::-webkit-scrollbar-track {
    margin: 0 2px;
    background: #ccc;
    border-radius: 5px;
  }
  .table_scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #666;
  }
  .table_scroll:after {
    content: "*If the window size is narrow, this table is displayed with side scrolling.";
    position: relative;
    font-size: calc(768px * .015625);
  }
  .table_scroll .table_normal {
    min-width: 700px;
  }
}
/* Stack */
table.table_stack_sp {
  width: 100%;
  border-collapse: separate;
  border-spacing: 1em;
}
table.table_stack_sp th {
  width: 15%;
  padding: 0.2em 1em 0.6em;
  color: #333;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
  vertical-align: middle;
  border-bottom: solid 1px #299e4f;
}
table.table_stack_sp td {
  padding: 1.2em 2em 1.6em;
  vertical-align: middle;
  border-bottom: solid 1px #ccc;
}
@media(max-width: 480px) {
  table.table_stack_sp {
    border-collapse: inherit;
    border-spacing: 0;
  }
  table.table_stack_sp th {
    width: auto;
    text-align: left;
  }
  table.table_stack_sp td {
    border-bottom: none;
    margin-bottom: 1em;
  }
  table.table_stack_sp th, table.table_stack_sp td {
    display: list-item;
    list-style: none;
    width: 100%;
    padding: 5px;
  }
}
table.table_stack_dot {
  width: 100%;
	border-collapse: separate;
	border-spacing:0.1em;
}
table.table_stack_dot th {
  width: 18%;
  padding: 0.2em 1em 0.6em;
  color: #333;
  font-weight: 400;
  text-align: left;
  white-space: nowrap;
  border-bottom: dotted 2px #ccc;
}
table.table_stack_dot td {
  padding: 1.6em 2em 1.6em;
  border-bottom: dotted 2px #ccc;
}
@media(max-width:480px){
	table.table_stack_dot th,
	table.table_stack_dot td {
		display: block;
	}
	table.table_stack_dot th {
		padding: 0.3em 1em 0.3em 0;
		width:100%;
		font-weight: 500;
	}
	table.table_stack_dot td {
		padding: 0.5em 2em 1.3em 0;
	}
}
/*  Tab Navi
----------------------------------------------------*/
.tab_nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, calc((100% - 4.5em) / 4));
    justify-content: center;
    column-gap: 1.5em;
    row-gap: 1em;
    position: relative;
    z-index: 1;
}
@media(max-width:768px){
  .tab_nav {
    grid-template-columns: repeat(auto-fit, calc((100% - 3em) / 4));
    column-gap: 1em;
  }
}
@media(max-width:480px){
  .tab_nav {
    grid-template-columns: repeat(auto-fit, calc((100% - 2em) / 2));
    column-gap: 1em;
	  row-gap:1.5em;
  }
}
.tab_nav2 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, calc((100% - 1.5em) / 2));
    justify-content: center;
    column-gap: 1em;
    row-gap: 1em;
    position: relative;
    z-index: 1;
}
.tab_nav > li {
    border: 2px solid #299e4f;
	  border-radius: 50px;
    background: #fff;
    font-weight: 700;
	  position: relative;
}
.tab_nav > li button {
    width: 100%;
    color: #222;
	  background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family:  "Noto Sans JP", sans-serif;
    font-size: 1em;
    text-decoration: none;
    line-height: 1;
    padding: 1em 0.25em 1em;
    transition: 0.3s;
    position: relative;
    border: none;
    border-radius: 50px;
    font-weight: 500;
}
@media(max-width:768px){
  .tab_nav > li button {
    font-size: 0.93em;
  }
}
.tab_nav > li button.active {
    background: #299e4f;
    color: #fff;
}
.tab_nav > li button:hover {
    background: #299e4f;
    color: #fff;
}
.tab_nav > li button.active:before, 
.tab_nav > li button:hover:before{
	content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 12px 10px 0 10px;
  border-color: #299e4f transparent transparent;
  translate: -50% 100%;
}
.tab_content {
	display: none;
	animation: fadeIn 0.3s ease-in-out;
	background-color: #fff;
	margin-top: 3em;
	padding: 0.1em 2em 2em;
	border-radius: 15px;
}
.tab_content.active {
	display: block;
}
/*  Back Ground Color
----------------------------------------------------*/
.bg_blue {
  background: #000;
}
.bg_green {
  background: #509869;
}
.bg_red {
  background: #e0363c;
}
.bg_orange {
  background: #ec7430;
}
.bg_white {
  background: #fff;
}
.bg_beige {
  background: #f3efec;
}
.bg_green {
  background: #34a358;
}
.bg_dot {
  background: #fff;
  background-image: url("../img/common/bg_img.png");
  background-size: 250px 250px;
  background-repeat: repeat;
  background-position: top left;
}
/*  Align
----------------------------------------------------*/
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
/*  Hr
-----------------------------------------------*/
hr {
  border: solid 1px #ddd;
}
/*  Text
----------------------------------------------------*/
sub, sup {
  font-size: 0.75em;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
strong {
  font-weight: 700;
}
.tx_cancel {
  text-decoration: line-through;
}
.tx_cancel_red {
  text-decoration: line-through;
  color: #e0363c;
}
.tx_cancel_red span {
  color: black;
}
.tx_red {
  color: #e0363c;
}
.tx_blue {
  color: #000;
}
.tx_black {
  color: #222;
}
.tx_white {
  color: #fff;
}
.tx_grey {
  color: #d1d1d0;
}
.tx_green {
  color: #299e4f;
}
.tx_12 {
  font-size: 1.2rem;
}
.tx_13 {
  font-size: 1.3rem;
}
.tx_13B {
  font-size: 1.3rem;
  font-weight: 700;
}
.tx_14 {
  font-size: 1.4rem;
}
.tx_14B {
  font-size: 1.4rem;
  font-weight: 700;
}
.tx_15 {
  font-size: 1.5rem;
}
.tx_15B {
  font-size: 1.5rem;
  font-weight: 700;
}
.tx_16 {
  font-size: 1.6rem;
}
.tx_16B {
  font-size: 1.6rem;
  font-weight: 700;
}
.tx_17 {
  font-size: 1.7rem;
}
.tx_17B {
  font-size: 1.7rem;
  font-weight: 700;
}
.tx_18 {
  font-size: 1.8rem;
}
.tx_18B {
  font-size: 1.8rem;
  font-weight: 700;
}
.tx_20 {
  font-size: 2.0rem;
}
.tx_20B {
  font-size: 2.0rem;
  font-weight: 700;
}
.tx_22 {
  font-size: 2.2rem;
}
.tx_22B {
  font-size: 2.2rem;
  font-weight: 700;
}
.tx_24 {
  font-size: 2.4rem;
}
.tx_24B {
  font-size: 2.4rem;
  font-weight: 700;
}
.tx_31 {
  font-size: 3.1rem;
}
.tx_31B {
  font-size: 3.1rem;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
}
@media(max-width: 768px) {
  .tx_13, .tx_13B {
    font-size: 1.2rem;
  }
  .tx_14, .tx_14B {
    font-size: 1.3rem;
  }
  .tx_15, .tx_15B {
    font-size: 1.4rem;
  }
  .tx_16, .tx_16B {
    font-size: 1.5rem;
  }
  .tx_17, .tx_17B {
    font-size: 1.6rem;
  }
  .tx_18, .tx_18B {
    font-size: 1.7rem;
  }
  .tx_20, .tx_20B {
    font-size: 1.8rem;
  }
  .tx_22, .tx_22B {
    font-size: 2.0rem;
  }
	.tx_24, .tx_24B {
    font-size: 2.2rem;
  }
.tx_31, .tx_31B {
    font-size: 2.8rem;
  }
}
.tx_space01 {
  letter-spacing: 0.1rem;
}
.tx_space02 {
  letter-spacing: 0.2rem;
}
.tx_space03 {
  letter-spacing: 0.3rem;
}
.tx_space04 {
  letter-spacing: 0.4rem;
}
.tx_space05 {
  letter-spacing: 0.5rem;
}
.tx_space_n001 {
  letter-spacing: -0.01rem;
}
.tx_space_n005 {
  letter-spacing: -0.05rem;
}
.tx_space_n01 {
  letter-spacing: -0.1rem;
}
.tx_space_n02 {
  letter-spacing: -0.2rem;
}
.tx_space_n03 {
  letter-spacing: -0.3rem;
}
.tx_indent01 {
  padding-left: 1.0em;
  text-indent: -1.0em;
}
.tx_indent012 {
  padding-left: 1.2em;
  text-indent: -1.2em;
}
.tx_indent02 {
  padding-left: 2.0em;
  text-indent: -2.0em;
}
/*  Line Height
----------------------------------------------------*/
.line_height00 {
  line-height: 0;
  vertical-align: middle;
}
.line_height01 {
  line-height: 1.0;
  vertical-align: middle;
}
.line_height02 {
  line-height: 2.0;
  vertical-align: middle;
}
/*  Text Break
----------------------------------------------------*/
@media(min-width:1000px) {
  span.br1000:before {
    content: "\A";
    white-space: pre;
  }
}
@media(min-width:1241px) {
  span.br1241:before {
    content: "\A";
    white-space: pre;
  }
}
@media(min-width:555px) {
  span.br555:before {
    content: "\A";
    white-space: pre;
  }
}
@media(min-width:768px) {
  span.br768:before {
    content: "\A";
    white-space: pre;
  }
}
@media(max-width: 999px) {
  span.br999_under:before {
    content: "\A";
    white-space: pre;
  }
}
@media(max-width: 768px) {
  span.br768_under:before {
    content: "\A";
    white-space: pre;
  }
}
@media(max-width: 480px) {
  span.br480_under:before {
    content: "\A";
    white-space: pre;
  }
}
/*  Margin
----------------------------------------------------*/
.mgt_00 {
  margin-top: 0px;
}
.mgt_05 {
  margin-top: 5px;
}
.mgt_10 {
  margin-top: 10px;
}
.mgt_20 {
  margin-top: 20px;
}
.mgt_30 {
  margin-top: 30px;
}
.mgt_40 {
  margin-top: 40px;
}
.mgt_50 {
  margin-top: 50px;
}
.mgb_10 {
  margin-bottom: 10px;
}
.mgb_20 {
  margin-bottom: 20px;
}
.mgb_30 {
  margin-bottom: 30px;
}
.mgb_40 {
  margin-bottom: 40px;
}
.mgb_50 {
  margin-bottom: 50px;
}
.mgl_10 {
  margin-left: 10px;
}
.mgl_01 {
  margin-left: 1.0em;
}
.mgl_02 {
  margin-left: 2.0em;
}
.mgl_03 {
  margin-left: 3.0em;
}
.mgl_04 {
  margin-left: 4.0em;
}
.mgl_05 {
  margin-left: 5.0em;
}
.pdt_10 {
  padding-top: 10px;
}
.pdt_20 {
  padding-top: 20px;
}
.pdt_30 {
  padding-top: 30px;
}
.pdt_40 {
  padding-topm: 40px;
}
.pdt_50 {
  padding-top: 50px;
}
.pdb_10 {
  padding-bottom: 10px;
}
.pdb_20 {
  padding-bottom: 20px;
}
.pdb_30 {
  padding-bottom: 30px;
}
.pdb_40 {
  padding-bottom: 40px;
}
.pdb_50 {
  padding-bottom: 50px;
}
/*  Icon
----------------------------------------------------*/
/*Link Blank Icon*/
.link:after {
  font-family: "Font Awesome 5 Free";
  content: '\f360';
  margin-left: 0.2em;
  color: #4369c4;
  font-size: 1.375em;
  font-weight: 900;
}
.pdf:after {
  font-family: "Font Awesome 5 Free";
  content: '\f1c1';
  margin-left: 0.2em;
  color: #f54328;
  font-size: 1.6em;
  font-weight: 900;
}
.ppt:after {
  font-family: "Font Awesome 5 Free";
  content: '\f1c4';
  margin-left: 0.2em;
  color: #ce6243;
  font-size: 1.6em;
  font-weight: 900;
}
.word:after {
  font-family: "Font Awesome 5 Free";
  content: '\f1c2';
  margin-left: 0.2em;
  color: #254c9b;
  font-size: 1.6em;
  font-weight: 900;
}
.excel:after {
  font-family: "Font Awesome 5 Free";
  content: '\f1c3';
  margin-left: 0.2em;
  color: #347241;
  font-size: 1.6em;
  font-weight: 900;
}
.ssl:after {
  font-family: "Font Awesome 5 Free";
  content: '\f084';
  margin-left: 0.2em;
  color: #ceaf28;
  font-size: 1.6em;
  font-weight: 900;
}
/* Triangle Icon */
.triangle {
  /* margin: 0; */
  padding-left: 1.0em;
  text-indent: -1.0em;
  position: relative;
}
.triangle:before {
  content: "\025b6";
  color: #000;
}
/*  Page Top
----------------------------------------*/
#page_top {
  position: fixed;
  display: flex;
  bottom: 68px;
  right: 40px;
  margin: 0;
z-index: 100;
}
#page_top a {
  display: block;
  line-height: 0;
  opacity: 0.85;
  position: relative;
  width: 80px;
  text-align: center;
  vertical-align: middle;
  transition: 0.4s;
}
#page_top a {
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
#page_top a img {
  width: 100%;
}
#page_top a img:hover {
  transform: rotate(20deg);
  transition: 0.3s;
}
@media(max-width:999px) {
  #page_top {
    bottom: 140px;
  }
}
@media(max-width: 480px) {
  #page_top {
    right: 20px;
    bottom: 110px;
  }
  #page_top a:before {
    top: 18px;
    left: 33%;
  }
  #page_top a {
    width: 58px;
    height: 58px;
  }
}
/*  Float
----------------------------------------------------*/
.fL {
  float: left;
  margin: 0 1em 10px 0;
}
.fR {
  float: right;
  margin: 0 0 10px 1em;
}
/*  Attention
----------------------------------------------------*/
.box_attention {
  max-width: 100%;
  padding: 1em;
  line-height: 1.6;
  border: 5px solid #e0363c;
}
.box_attention_wh {
  max-width: 100%;
  padding: 3.5em;
  line-height: 1.6;
  background-color: #fff;
  border-radius: 10px;
}
@media(max-width:480px) {
  .box_attention_wh {
    padding: 2em;
    ;
  }
}
/*  Construction
----------------------------------------------------*/
.construction {
  width: 60%;
  margin: 5% auto 30%;
  padding: 20px 40px;
  display: block;
  color: #bbb;
  text-align: center;
  border: 3px solid #ddd;
}
.construction .title {
  font-size: 1.2em;
  font-weight: 700;
}
@media(max-width: 480px) {
  .construction {
    padding: 10px 20px;
  }
}
/*  anker link
----------------------------------------------------*/
.inner_link {
	transform: translateY(-6em);
	z-index: -1;
	height: 0px;
	position: absolute;
	display: run-in;
}
@media (max-width: 999px) {
	.inner_link {
		transform: translateY(-8em);
	}
}
/*  Animation
----------------------------------------------------*/
@keyframes rotate_anime {
  0% {
    transform: rotate(0deg); 
  }
  50% {
    transform: rotate(20deg); 
  }
  100% {
    transform: rotate(0deg); 
  }
}
@keyframes fadein_anime {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.03);
  }
}
@keyframes soft_display {
  100% {
    opacity: 1;
  }
}
@keyframes cloudFloat {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -20px);
  }
}
/*炭素繊維、鉄骨、外壁補修*/
@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px); /* 上に10px */
  }
}
@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(20px); /* 少し下から浮かぶ */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes moveTrain {
  from {
    transform: translate(0px, 0px) rotate(-0.7deg);
  }
  to {
    transform: translate(52px, 28px) rotate(-0.7deg); /* X, Yを右下方向に調整 */
  }
}
@keyframes vibration {
  0% {
    transform: translate(0px, 1px);
  }
  5% {
    transform: translate(0px, -1px);
  }
  10% {
    transform: translate(0px, 1px);
  }
  15% {
    transform: translate(0px, -1px);
  }
  20% {
    transform: translate(0px, 1px);
  }
  25% {
    transform: translate(0px, -1px);
  }
  30% {
    transform: translate(0px, 0px);
  }
}
/*特殊解体*/
@keyframes headshake {
	0% {
    transform: translateX(0);
}
6.5% {
    transform: translateX(-1px) rotateY(-2deg);
}
18.5% {
    transform: translateX(1px) rotateY(2deg);
}
31.5% {
    transform: translateX(-1px) rotateY(-2deg);
}
43.5% {
    transform: translateX(1px) rotateY(2deg);
}
50% {
    transform: translateX(0);
}
}
@keyframes heartbeat {
	0% {
    transform: scale(1);
}
14% {
    transform: scale(1.03);
}
28% {
    transform: scale(1);
}
42% {
    transform: scale(1.03);
}
70% {
    transform: scale(1);
}
}
@keyframes rotation{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}


/* index map setting */
