@charset "utf-8";

/**********************************************
 * header
 * Footer
 * common
 ***********************************************/


/**********************************************
 * Header
 ***********************************************/
.Header {
	background: #fff;
}
/*　上に上がる動き　*/

.Header.UpMove{
	animation: UpAnime 0.6s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 1;
	transform: translateY(0);
  }
  to {
    opacity: 0;
	transform: translateY(-100px);
  }
}

/*　下に下がる動き　*/

.Header.DownMove{
	animation: DownAnime 0.6s forwards;
}

@keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(-100px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}

.Header_inner {
	display: flex;
	justify-content: space-between;
	height: 110px;
}

.Header_logoLink {
	padding-top: 25px;
	display: inline-block;
}

.Header_logoImg {
	width: auto;
	height: auto;
}

.Header_spButtonWrap {
	display: none;
}

.Header .ContactBtn {
	margin-top: 20px;
}
.Header .ContactBtn a {
	display: block;
	background: #007e43;
	border: 1px solid #007e43;
	padding: 15px 35px;
	border-radius: 30px 0 30px 30px;
	color: #fff;
	transition: .5s;
}

.Header .ContactBtn a:hover {
	background: #fff;
	color: #007e43;
}
@media (max-width: 767px) {
	.Header_inner {
		height: 60px;
		align-items: center;
	}
	.Header_logoLink {
    padding-top: 0;
	}
	.Header_logoImg {
		width: 35vw;
	}
	.Header_spButtonWrap {
		display: block;
		position: absolute;
		right: 0;
		top: 0;
		z-index: 10;
	}
	.Header_navWrap {
		position: fixed;
		top: 60px;
		right: -100%;
		width: 100%;
		height: calc(100vh - 60px);
		overflow: auto;
		background: #f5f5f5;
		padding: 30px 30px 30px;
		display: block;
		transition: transform 0.5s;
		z-index: 10;
	}
	.Header .ContactBtn {
    margin: 0 60px 0 0;
	}
	.Header .ContactBtn a {
    padding: 10px 20px;
    font-size: 1.2rem;
	}
	body.is-spnav-active .Header_navWrap {
		transform: translateX(-100%);
	}
}

/* HeaderSpButton
***************************************/
@media (max-width: 767px) {
	.HeaderSpButton {
		display: flex;
		flex-direction: column;
		align-items: center;
		cursor: pointer;
		width: 60px;
		height: 60px;
		color: #fff;
	}

	.HeaderSpButton:focus {
		outline: none;
	}

	.HeaderSpButton::before,
	.HeaderSpButton::after,
	.HeaderSpButton span {
		position: absolute;
		content: "";
		width: 26px;
		height: 1px;
		background: #333;
		left: 15px;
		top: 0;
		bottom: 0;
		margin: auto;
		transition: 0.5s;
		transition-property: top, bottom, transform;
	}
	
	.HeaderSpButton span {
		width: 22px;
	}
	.HeaderSpButton::before {
		top: -20px;
	}

	.HeaderSpButton::after {
		bottom: -20px;
	}

	body.is-spnav-active .HeaderSpButton::before {
		transform: rotate(45deg);
		top: 0;
	}
	body.is-spnav-active .HeaderSpButton span {
		display: none;
	}
	body.is-spnav-active .HeaderSpButton::after {
		transform: rotate(-45deg);
		bottom: 0;
	}
}

/* HeaderNav
***************************************/
.HeaderNav_list {
	display: flex;
	margin-top: 40px;
}
.HeaderNav_item {
	position: relative;
	padding: 0 0 50px;
}
.HeaderNav_item:before {
  content: '';
  position: absolute;
  bottom: 25px;
  right: 0;
  left: 0;
  width: 0;
  height: 3px;
  margin: auto;
  background: #333;
  transition: .3s;
}

.HeaderNav_item:hover::before,
.HeaderNav_item.is-current::before {
	width: 60px;
}

.HeaderNav_item.pull::after {
	content: '\f078';
	position: absolute;
	font-family: 'Font Awesome 6 Pro';
	top: 5px;
	right: 10px;
	color: #676767;
	font-size: 1.2rem;
}
.HeaderNav_link {
	position: relative;
	display: inline-block;
	font-size: 1.6rem;
	color: #333;
}

.HeaderNav_link span {
	display: inline-block;
	padding: 0 26px;
	border-left: 1px solid #a7a7a7;
	font-feature-settings: "palt";
}
.HeaderNav_link span em {
	font-size: 1.4rem;
}
.HeaderNav_item:last-of-type .HeaderNav_link span {
	border-right: 1px solid #a7a7a7;
}
.HeaderNav_link[href^="http"]:after,
.HeaderNav_link[href^="//"]:after {
	position: relative;
	right: 10px;
	margin-left: 0;
	font-family: "Font Awesome 5 Pro";
	content: '\f08e';
	font-weight: 400;
	font-size: 1.4rem;
	color: #333;
}
@media (max-width: 767px) {
	.HeaderNav_list {
		display: block;
		margin-top: 20px;
	}

	.HeaderNav_item {
		text-align: left;
		padding: 0 0 40px;
	}
	.HeaderNav_item:before {
		content: none;
	}
	.HeaderNav_item.pull::after {
		content: none;
	}
	.HeaderNav_item + .HeaderNav_item {
		margin-left: 0;
		margin-top: 0;
	}
	.HeaderNav_link {
		font-size: 1.8rem;
		font-weight: 700;
		display: block;
	}
	
	.HeaderNav_link[href^="http"]:after,
	.HeaderNav_link[href^="//"]:after {
    right: 0px;
    margin-left: 10px;
	}
	.HeaderNav_link span {
    display: inline-block;
    padding: 0;
    border-left: 0;
	}
	.HeaderNav_item:last-of-type .HeaderNav_link span {
    border-right: 0;
	}
	.HeaderNav_link.pulldown::after {
		content: '\2b';
		position: absolute;
		top: 0;
		right: 0;
		font-family: 'Font Awesome 6 Pro';
		font-size: 1.8rem;
	}
	
	.HeaderNav_link.pulldown.is-active::after {
		content: '\f068';
	}
}


/* .child-menu 
*********************************************************************/
.child-menu {
  z-index: 50;
  position: fixed;
  top: 110px;
  left: 0;
  display: none;
  width: 100%;
	padding: 40px 0;
  height: auto;
  background: #f5f5f5;
	transition: .5s;
}

.HeaderNav_list .HeaderNav_item:hover .child-menu  {
  display: block;
}

.child-menu .child-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 1170px;
  margin: 0 auto;
}

.child-menu .child-container dl {
	display: flex;
	align-items: center;
}
.child-menu .child-container dl dt {
	font-weight: 700;
	font-size: 2rem;
	padding-right: 40px;
	border-right: 1px solid #d6d6d6;
}
.child-menu .ChildList {
	display: flex;
}

.child-menu .ChildList li a {
	position: relative;
	display: block;
	padding: 0 50px;
	color: #333;
}

.child-menu .ChildList li a::after {
	content: '';
	position: absolute;
	top: 0;
	right: 15px;
	bottom: 0;
	width: 18px;
	height: 4px;
	margin: auto;
	transition: .5s;
	background: url(../images/i-arrow-short.svg) top left no-repeat;
	background-size: 100%;
	transition: .3s;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
.child-menu .ChildList li a:hover::after {
	right: 5px;
}

@media (max-width: 767px) {
	.child-menu {
    position: relative;
		top: 0;
		transition: 0s;
		padding: 10px 0;
	}
	.child-menu .child-container {
    display: block;
		width: auto;
	}
	.HeaderNav_list .HeaderNav_item:hover .child-menu {
		display: none;
	}
	.child-menu .child-container dl {
    display: block;
	}
	.child-menu .ChildList {
    display: block;
	}
	.child-menu .child-container dl dt {
		display: none;
	}
	.child-menu .ChildList li a {
    position: relative;
    display: block;
    padding: 0 50px 0 1em;
    color: #333;
		font-size: 1.6rem;
	}
	.child-menu .ChildList li {
		margin-top: 15px;
	}
}
/* Footer
*********************************************************************/
.CvArea          { padding-bottom: 80px; }
.CvArea .BtnList { display: flex; justify-content: center; }
.CvArea .BtnList li:not(:last-child) { margin-right: 30px; }
.CvArea .BtnList li a        { display: flex; flex-direction: column; justify-content: center; align-items: center; position: relative; width: 569px; height: 200px; border-radius: 100px; border-top-right-radius: 0; background-size: cover; color: #fff; font-size: 4rem; font-weight: 700; text-align: center; }
.CvArea .BtnList li a:after  { content: ''; position: absolute; top: 50%; right: 40px; width: 64px; height: 26px; background: url(../images/ar_white.png) no-repeat; background-size: cover; transform: translateY(-50%); transition: .3s; }
.CvArea .BtnList li a:hover:after { right: 30px; }
.CvArea .recruit a           { background: #008bd5 url(../images/bg_foot_recruit.png) no-repeat; line-height: 1.25; }
.CvArea .recruit span        { position: relative; margin-bottom: 10px; font-size: 2.4rem; font-weight: 400; }
.CvArea .recruit span:before,
.CvArea .recruit span:after  { content: ''; position: absolute; bottom: 6px; width: 2px; height: 18px; background: #fff; }
.CvArea .recruit span:before { left: -10px; transform:rotate(-15deg); }
.CvArea .recruit span:after  { right: -10px; transform:rotate(15deg); }
.CvArea .contact a           { background: #007e43 url(../images/bg_foot_contact.png) no-repeat; }
.CvArea .entry               { display: none; }
.CvArea .entry a             { background: #008bd5 url(../images/bg_foot_recruit.png) no-repeat; }
.CvArea .contact span,
.CvArea .entry span          { font-size: 1.8rem; font-weight: 400; }

.Footer-navigation {
  border-top-left-radius: 300px;
  background: #f5f5f5;
}

.Footer-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 1170px;
  height: 100%;
  margin: 0 auto;
}

.Footer-navigation .LogoArea {
  margin: 40px 30px 0 0;
	width: 330px;
	padding-top: 10px;
}

.Footer-navigation .LogoArea .address {
	margin: 20px 0;
	line-height: 2;
	font-size: 1.8rem;
}
.sub-navigation {
  display: flex;
	width: calc(100% - 300px);
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
	margin-top: 40px;
  padding: 10px 0 0 0;
}

.sub-navigation .line {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  width: calc((100% - 60px) / 3);
  margin-right: 3rem;
	padding: 0 0 40px 20px;
	border-left: 1px solid #dedede;
}

.sub-navigation .line:last-child {
  margin-right: 0;
}

.sub-navigation .title {
  margin-bottom: 25px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #333;
  line-height: 1;
	display: block;
}

.sub-navigation .link {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  text-decoration: none;
	display: block;
}

.sub-navigation .link.no-link {
  pointer-events: none;
}

.sub-navigation .link.parent {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
}
.sub-navigation .link.parent span {
	font-size: 1.6rem;
}
.sub-navigation .link.parent + .link.parent {
  margin-top: 2.5rem;
}

.sub-navigation .link.child,
.sub-navigation .link.grandchild {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1;
}

.sub-navigation .link.grandchild {
  padding-left: 4rem;
}

.sub-navigation .link.child + .link.child,
.sub-navigation .link.child + .link.grandchild,
.sub-navigation .link.grandchild + .link.grandchild {
  margin-top: 25px;
}

.copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 79px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1;
  background: #141410;
}

.link.-logo[href^="http"]:after,
.link.-logo[href^="//"]:after {
	content: none;
}

@media (max-width: 767px) {
	.CvArea          { padding: 0 15px 40px; }
  .CvArea .BtnList { display: block; width: auto; margin: 0 auto; }
  .CvArea .BtnList li:not(:last-child) { margin: 0 0 20px; }
  .CvArea .BtnList li a        { width: 100%; height: 100px; border-radius: 50px; border-top-right-radius: 0; font-size: 2rem; }
  .CvArea .BtnList li a:after  { right: 20px; width: 32px; height: 13px; }
  .CvArea .BtnList li a:hover:after { right: 10px; }
  .CvArea .recruit span        { margin-bottom: 3px; font-size: 1.4rem; }
  .CvArea .recruit span:before,
  .CvArea .recruit span:after  { bottom: 3px; height: 10px; }
  .CvArea .contact span,
  .CvArea .entry span          { font-size: 1.4rem; }
  .CvArea .entry span          { line-height: 1.25; }
  
  .Footer-navigation {
    border-top-left-radius: 150px;
  }

  .Footer-container {
    flex-direction: column;
    width: 100%;
    padding: 0 20px 40px;
  }
	.Footer-navigation .LogoArea {
    width: 100%;
    padding: 30px 0 0 30px;
	}
  .Footer-navigation .logo {
    margin: 6rem auto 5rem;
  }

  .Footer-navigation .logo img {
    width: 50%;
		height: auto;
  }
	.Footer-navigation .LogoArea .address {
    margin: 20px 0;
    line-height: 1.5;
    font-size: 1.6rem;
	}	
  .sub-navigation {
    flex-wrap: wrap;
		margin-top: 0;
		border-left: 0;
  }

  .sub-navigation .title {
    font-size: 1.6rem;
    text-align: left;
  }

  .sub-navigation .line {
    margin-right: 0;
		border-top: 1px solid #dedede;
		border-left: 0;
		padding: 30px 0 0;
  }
	.sub-navigation .line > * {
		width: 50%;
	}
	.sub-navigation .line:nth-of-type(2),
	.sub-navigation .line:nth-of-type(3) {
		width: 50%;
	}
	.sub-navigation .line:nth-of-type(2) > *,
	.sub-navigation .line:nth-of-type(3) > * {
		width: 100%;
	}

  .sub-navigation .line:first-child {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 1.2rem;
  }

  .sub-navigation .line:first-child .link {
    margin-bottom: 1.4rem;
  }

  .sub-navigation .link.parent {
    font-size: 1.6rem;
  }

	.sub-navigation .link.parent span {
		display: inline-block;
		font-size: 1.4rem;
		font-feature-settings: "palt";
	}
  .sub-navigation .link.child,
  .sub-navigation .link.grandchild {
    font-size: 1.4rem;
  }

  .sub-navigation .line:first-child .link + .link {
    margin-top: 0;
  }
	.sub-navigation .line img {
		width: 80%;
	}
  .copyright {
    height: 54px;
    font-size: 1rem;
  }
}
/**********************************************
 * common
***********************************************/
/* Title_lv2
*******************************************/
.Title_lv2 {
	position: relative;
	margin-bottom: 40px;
	color: #333;
	font-weight: 700;
	font-size: 4rem;
}

.Title_lv2.-center {
	text-align: center;
}

@media (max-width: 767px) {
	.Title_lv2 {
		font-size: 3rem;
		margin-bottom: 30px;
	}
}

/* Title_lv3
*******************************************/
.Title_lv3 {
	position: relative;
	margin: 100px 0 80px;
	padding-bottom: 30px;
	color: #007e43;
	font-weight: 700;
	font-size: 3.6rem;
	text-align: center;
}

.Title_lv3:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 60px;
	height: 2px;
	margin-left: -30px;
	background: #007e43;
}

@media (max-width: 767px) {
	.Title_lv3 {
		margin: 50px 0 40px;
		padding-bottom: 15px;
		font-size: 2.6rem;
	}

	.Title_lv3::after {
		width: 40px;
		height: 1px;
		margin-left: -20px;
	}
}

/* Title_lv4
*******************************************/
.Title_lv4 {
	position: relative;
	margin: 100px 0 80px;
	color: #007e43;
	font-weight: 700;
	font-size: 3rem;
	text-align: center;
}

@media (max-width: 767px) {
	.Title_lv4 {
	}
}

/* Title_lv5
*******************************************/
.Title_lv5 {
	position: relative;
	margin: 100px auto 80px;
	padding-left: 30px;
	color: #007e43;
	font-weight: 700;
	font-size: 2.6rem;
}

.Title_lv5::before {
	content: '';
	position: absolute;
	top: 4px;
	bottom: 0;
	left: 0;
	width: 20px;
	height: 20px;
	margin: auto;
	background: #007e43;
	border-top-left-radius: 10px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}

@media (max-width: 767px) {
	.Title_lv5 {
		font-size: 1.8rem;
	}
}

/* Title_lv6
*******************************************/
.Title_lv6 {
	color: #007e43;
	font-weight: 400;
	font-size: 2rem;
}

/* Language EN
*******************************************/
.Lang_en {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.6rem;
}


/* Lead
*******************************************/
.lead {
  margin-bottom: 70px;
  font-size: 2rem;
  line-height: 2;
  text-align: center;
}

.lead.-left {
	text-align: left;
}

/* Text
*******************************************/
.Text {
	line-height: 1.8;
}

.Text.-white {
	color: #ffffff;
}

.Text.-center {
	text-align: center;
}

@media (max-width: 767px) {
	.Text {
		font-size: 1.4rem;
	}
}

/* Link
*******************************************/
.Link {
	position: relative;
	color: #387ccc;
	display: inline-block;
	text-decoration: none;
}

.Link:hover {
	opacity: 0.7;
}

.Link.-arrow::before,
.Link.-arrow::after {
	font-family: "Font Awesome 5 Free";
	font-size: 1.4rem;
	font-weight: 900;
	color: #333;
}
.Link.-arrow.-l::before {
	margin-right: 5px;
	content: '\f053';
}
.Link.-arrow.-r::after {
	margin-left: 5px;
	content: '\f054';
}
.Btn .Link.-arrow.-l::before {
	margin-right: 10px;
	font-size: 1.6rem;
	color: #fff;
}
.Btn .Link.-arrow.-r::after {
	margin-left: 10px;
	font-size: 1.6rem;
	color: #fff;
}


/* 外部リンク */
a[href^="http"]:after,
a[href^="//"]:after {
	margin-left: 5px;
	font-family: "Font Awesome 5 Pro";
	content: '\f08e';
	font-weight: 400;
	font-size: 1.4rem;
	color: #333;
}
/* 自分自身のドメインはアイコン無し */
a[href^="http://local"]:after {
	margin: inherit;
	font-family: inherit;
	content: '';
	font-weight: inherit;
}
/* PDFリンク */
a[href$=".pdf"]:after {
	margin-left: 5px;
	font-family: "Font Awesome 5 Pro";
	content: '\f1c1';
	font-weight: 400;
	font-size: 1.4rem;
	color: #333;
}

/* Btn
*******************************************/
.BtnWrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.Btn {
	position: relative;
	width: 300px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 1;
}

.Btn.-auto {
	width: auto;
}

.Btn:before {
  content: '';
  position: absolute;
  top: 7px;
  left: 5px;
  width: 100%;
  height: 100%;
  border-radius: 30px 0;
  background: #007e43;
}

.Btn:not(:last-of-type) {
	margin-right: 30px;
}

.Btn a,
.Btn button {
	position: relative;
	display: block;
	padding: 20px 60px 20px 30px;
	border-radius: 30px 0;
	width: 100%;
	color: #333;
	text-align: center;
	border: 2px solid #007e43;
  background: #fff;
}

.Btn a::after,
.Btn button::after {
	content: '';
  position: absolute;
	background: url('../images/ar_green.png') no-repeat;
	background-size: 32px 15px;
	width: 32px;
	height: 15px;
	top: 0;
	bottom: 0;
	right: 20px;
	transition: .3s;
	margin: auto;
}

.Btn a.-blank::after {
  content: '\f08e';
  position: absolute;
  top: 0;
  right: 22px;
  bottom: 0;
  width: 18px;
  height: 18px;
  margin: auto;
  color: #007e43;
  font-family: 'Font Awesome 6 Pro';
  font-weight: 400;
  font-size: 1.8rem;
	background: none;
  line-height: 1;
}

.Btn a:hover::after,
.Btn button:hover::after {
	right: 10px;
}

.Btn.-disabled a,
.Btn.-disabled button {
	cursor: auto;
	pointer-events: none;
	background-color: #999999;
}

@media (max-width: 767px) {
	.Btn {
		font-size: 1.6rem;
		width: 90%;
	}
	.Btn:not(:last-of-type) {
		margin-right: 0;
		margin-bottom: 15px;
	}
}

/* pagetop
*********************************************************************/
.Pagetop {
  position: fixed;
  z-index: 200;
  bottom: 20px;
  right: 10px;
  width: 60px;
  height: 60px;
  border: 1px solid #302e26;
  border-top-left-radius: 35px;
  border-bottom-right-radius: 35px;
  border-bottom-left-radius: 35px;
  background: #fff;
  transition: .3s;
  cursor: pointer;
}

.Pagetop::before {
  content: '\f341';
  position: absolute;
  top: 12px;
  right: 0;
  left: 0;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 300;
  font-size: 2rem;
  color: #302e26;
  text-align: center;
  line-height: 1;
}

.Pagetop span::before,
.Pagetop span::after {
  content: '';
  position: absolute;
  right: 0;
  left: 0;
  width: 2px;
  height: 2px;
  margin: auto;
  background: #302e30;
  border-radius: 5px;
}

.Pagetop span::before {
  bottom: 13px;
}

.Pagetop span::after {
  bottom: 18px;
}
.Pagetop:hover {
	opacity: 0.6;
}

@media (max-width: 767px) {
	.Pagetop {
		right: 10px;
		bottom: 10px;
		width: 50px;
		height: 50px;
	}
}


/* key visual
*********************************************************************/
.key-visual {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 190px;
  color: #fff;
	background: url(../images/bg_h1.png) no-repeat top center / cover;
}

.key-visual .sub-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  color: #a7d08b;
  margin-top: -30px;
}

.key-visual .title {
  margin-top: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 767px) {
  .key-visual {
    width: 100%;
    height: 220px;
  }
}

/* breadcrumbs
*********************************************************************/
.breadcrumbs {
  z-index: 1;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 1170px;
  margin: -30px auto 60px;
  padding: 30px 30px 20px;
  background: #fff;
  border-top-right-radius: 26px;
  border-top-left-radius: 26px;
}

.js-device_tablet .breadcrumbs { width: 1130px; }

.breadcrumbs > .item {
  position: relative;
}

.breadcrumbs > .item + .item {
  margin-left: 27px;
}

.breadcrumbs > .item:not(:last-of-type)::before {
  content: '\f054';
  position: absolute;
  top: 0;
  right: -17px;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 400;
  font-size: 1.4rem;
  color: #333;
}

.breadcrumbs .link,
.breadcrumbs .current {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  /*font-size: 1.4rem;*/
  color: #333;
  line-height: 1;
  text-decoration: none;
}

.breadcrumbs .current {
  font-weight: bold;
}

@media (max-width: 767px) {
  .breadcrumbs {
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 30px;
    padding: 30px 15px 20px;
  }
}

/* existing style
*********************************************************************/
.inner   { width: 1170px; margin: 0 auto; }
.inner-m { width: 970px; margin: 0 auto; }
.inner-s { width: 768px; margin: 0 auto; }

@media (max-width: 767px) {
  .inner,
  .inner-m,
  .inner-s { width: auto; padding: 0 15px; }
}

/* circle list
*********************************************************************/
.circle > li {
	position: relative;
	margin-top: 5px;
	padding-left: 16px;
	font-size: 1.6rem;
}

.circle > li:first-child {
	margin-top: 0;
}

.circle > li::before {
	content: '';
	position: absolute;
	top: 10px;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #007e43;
}

/* note box
*********************************************************************/
.note-box {
  margin-bottom: 100px;
  padding: 50px;
  border-radius: 20px;
  background: #f0f7ea;
  font-size: 2rem;
  line-height: 2;
}

.note-box dt {
  margin-bottom: 20px;
  font-size: 2.6rem;
  font-weight: 700;
}

.note-box dt span {
  color: #007e43;
}

.note-box .circle > li::before {
  top: 14px;
}

@media (max-width: 767px) {
	.note-box {
		padding: 25px;
	}
}

/* PopUp
*********************************************************************/
.PopUp {
  position: absolute;
  left: 0;
  bottom: -90px;
  width: 510px;
  background: url(../images/top/bg_popup.png) #007e43 no-repeat;
  background-size: contain;
  border-radius: 0 0 100px 0;
  z-index: 2;
}

.PopUp a {
  display: block;
  color: #fff;
  line-height: 1.3;
  padding: 20px 20px 20px 140px;
  transition: .5s;
}

.PopUp a:hover {
  opacity: .7;
}

.PopUp a .SubTitle {
  font-size: 2rem;
}

.PopUp a .Title {
  font-size: 3rem;
  font-weight: bold;
}

.PopUp a .Text {
  position: absolute;
  right: 60px;
  top: 55px;
}

@media (max-width: 767px) {
  .PopUp {
    position: relative;
    left: 0;
    bottom: -70px;
    width: auto;
  }
  .PopUp a {
    padding: 20px 20px 20px 105px;
  }
  .PopUp a .Title {
    font-size: 2.4rem;
    font-weight: bold;
  }
  .PopUp a .SubTitle {
    font-size: 1.6rem;
  }
  .PopUp a .Text {
    right: 40px;
  }
}

/* tag
*********************************************************************/
.tag-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 60px;
}

.tag {
	display: inline-block;
	padding: 4px 18px;
	color: #007e43;
	font-size: 1.4rem;
	line-height: 1;
	border: 1px solid #007e43;
	border-top-left-radius: 14px;
	border-bottom-right-radius: 14px;
	border-bottom-left-radius: 14px;
}

.tag + .tag {
	margin-left: 10px;
}

/* image description
*********************************************************************/
.img-description {
  margin-top: 20px;
}

.img-description.-full {
	width: 100%;
}

.img-description dt {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 2rem;
}

.img-description dd {
  color: #333;
  font-size: 1.8rem;
}

.img-description dd > .attention {
  margin-top: 30px;
}

/* other
*********************************************************************/
.other {
	margin-top: 100px;
	text-align: center;
}

.other h4 {
	font-size: 3.6rem;
	font-weight: 700;
}

.other ul {
	display: flex;
	margin-top: 50px;
}

.other li {
	width: calc((100% - 30px) / 2);
	margin-right: 30px;
}

.other li:last-child {
	margin-right: 0;
}

.other li a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	width: 100%;
	height: 135px;
	padding: 0 70px 0 30px;
	border: 1px solid #007e43;
	border-radius: 100px;
	border-top-right-radius: 0;
	color: #000;
	font-size: 3.6rem;
	font-weight: 700;
}

.other li a:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 30px;
	width: 32px;
	height: 15px;
	background: url(../images/ar_green.png) no-repeat;
	background-size: 32px 15px;
	transition: .3s;
	transform: translateY(-50%);
}

.other li a span {
	display: block;
	color: #007e43;
	font-family: 'Barlow', sans-serif;
	font-size: 1.6rem;
}

.other li a:hover:after {
	right: 20px;
}

@media ( max-width: 767px ) {
	.other {
		margin-top: 40px;
	}

  .other h4 {
		font-size: 2rem;
	}

  .other ul {
		display: block;
		margin-top: 20px;
	}

  .other li {
		width: auto;
		margin: 0 0 20px;
	}

  .other li:last-child {
		margin: 0;
	}

  .other li a {
		height: 100px;
		font-size: 2.4rem;
	}

  .other li a span {
		font-size: 1rem;
	}
}

/* table
*********************************************************************/
.table {
  margin-bottom: 100px;
}

.table > .row + .row {
  margin-top: 60px;
}

.table > .row {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  border-radius: 30px;
  border-top-right-radius: 0;
}

.table > .row .item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  padding: 10px 0;
  background: #fff;
  border-bottom: 1px solid #dedede;
}

.table > .row .item:first-child {
  border-top: 1px solid #dedede;
}

.table > .row .item:nth-child(even) {
	background: #f5f5f5;
}

.table > .row .item.-logo,
.table > .row .item.-full {
  width: 100%;
  border-right: 0;
}

.table .head,
.table .description {
  padding: 11px 30px;
}

.table .head {
	position: relative;
  width: 230px;
  font-weight: 700;
  font-size: 2rem;
}

.table .head::before {
	content: '';
	position: absolute;
	top: 0;
	left: 20px;
	bottom: 0;
	width: 2px;
	height: 27px;
	margin: auto;
	background: #ccc;
}

.table .description {
  width: calc(100% - 230px);
  font-size: 2rem;
}

.table .item-inner {
	display: flex;
}

.table .item-inner + .item-inner {
	margin-top: 20px;
}

.table .item-innerHead {
	display: block;
	width: 250px;
	margin-right: 30px;
}

.table .item-innerDescription {
	width: calc( 100% - 280px );
}

@media (max-width: 767px) {
  .table > .row {
    flex-direction: column;
  }

  .table > .row .item {
    flex-direction: column;
    width: 100%;
  }

  .table .head,
  .table .description {
    width: 100%;
    padding: 5px 15px;
  }

  .table .head {
    border-right: 0;
  }

	.table .head::before {
		left: 5px;
	}

	.table .item-inner {
		flex-direction: column;
	}

	.table .item-innerHead {
		margin-bottom: 5px;
	}

	.table .item-innerHead,
	.table .item-innerDescription {
		width: 100%;
	}
}

.blank-btn {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	width: 68%;
	height: 135px;
  margin: 0 auto;
	padding: 0 70px 0 30px;
	border: 1px solid #007e43;
	border-radius: 100px;
	border-top-right-radius: 0;
	color: #000;
	font-size: 2.8rem;
	font-weight: 700;
}

.blank-btn::after {
	content: '\f08e';
	position: absolute;
	top: 50%;
	right: 30px;
	width: 32px;
	height: 35px;
  font-family: 'Font Awesome 6 Pro';
	transition: .3s;
	transform: translateY(-50%);
}

.blank-btn:hover::after {
  right: 20px;
}

/* utility
*********************************************************************/
.u-tac {
	text-align: center;
}

/* link
*********************************************************************/
.link-pdf {
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
  color: #35a0dd;
  font-size: 2rem;
}

.link-pdf + .link-pdf {
  margin-top: 10px;
}

.link-pdf::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #35a0dd;
}

a.link-pdf[href$=".pdf"]:after {
  position: absolute;
  color: #ff0000;
  font-size: 2rem;
}