@charset "UTF-8";
/**
 * 目次
 *
 * 01. reset
 * 02. fonts
 * 03. header
 * 04. footer
 *
 */
/* ==========================================================================
   01. reset
========================================================================== */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
margin:0;
padding:0;
border:0;
outline:0;
font-size:100%;
font-weight: normal;
vertical-align:baseline;
background:transparent;
}

:after, :before, a, article, aside, dl, dt, dd, details, div,
figcaption, figure, header, footer, section, main,
h1, h2, h3, h4, h5, h6, hgroup, img,
ul, ol, li, menu, nav, p, span, summary,
table, td, th, tr {
    box-sizing: border-box
}

body {
line-height:1;
}
body{
  font-size:14px;
  line-height:1.5;
  }

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
display:block;
}

ol, ul {
list-style: none;
}

blockquote, q {
quotes:none;
}

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

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

ins {
background-color:#ff9;
color:#000;
text-decoration:none;
}

mark {
background-color:#ff9;
color:#000;
font-style:italic;
font-weight:bold;
}

del {
text-decoration: line-through;
}

abbr[title], dfn[title] {
border-bottom:1px dotted;
cursor:help;
}

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

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

input, select {
vertical-align:middle;
}

img {
  vertical-align: top;
  font-size:0;
  line-height: 0;
  max-width: 100%;
}

strong {
font-weight: bold;
}

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0
}

button,
input {
  overflow: visible
}

input {
	-webkit-appearance: none;
		 -moz-appearance: none;
					appearance: none;
					outline: none;
}

input::-ms-clear { display: none; }
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
	-webkit-appearance: none;
		 -moz-appearance: none;
					appearance: none;
}

button,
select {
  text-transform: none
}

[type=reset],
[type=submit],
button,
html [type=button] {
    -webkit-appearance: button
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
    outline: 1px dotted ButtonText
}

textarea {
  overflow: auto
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit
}

.disPc {
	display: block;
}
.disSp {
	display: none;
}
@media only screen and (max-width: 768px) {
	.disPc {
		display: none;
	}
	.disSp {
		display: block;
	}
}

/* ==========================================================================
   02. fonts
========================================================================== */
html {
  box-sizing: border-box;
  font-size: 62.5%
}

body {
  color: #333;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  text-align: justify;
  word-wrap: break-word;
}

a {
  cursor: pointer;
  background: 0 0;
  color: #333;
  text-decoration: none
}

a:focus {
  outline: 0
}
a:active,
a:hover {
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out
}


/* ==========================================================================
   03. header
========================================================================== */
.mask {
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out
}
.open .mask {
	position: fixed;
	top: 122px;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(51, 51, 51, 0.6);
	z-index: -1;
	opacity: 1;
	z-index: 997;
	-webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out
}

header {
  position: fixed;
  width: 100%;
  z-index: 9;
  background: #fff;
}
header .hd_inner {
  position:relative;
  display: flex;
  z-index: 9;
}
header .logo {
  width: 11.3rem;
  margin-top: 2.1rem;
  margin-left: 4rem;
	margin-right: 4rem;
	margin-bottom: 2.1rem;
}
header .logo a:hover {
	opacity: 0.6;
}

/* common search */
.search-from .input-group {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
  height: 4rem;
}
.search-from .input-group-append, 
.search-from .input-group-prepend {
  display: -ms-flexbox;
  display: flex;
}
.search-from .form-control {
  display: block;
  height: 100%;
  padding: 1.8rem 1.5rem;
  font-size: 1.5rem;
	line-height: 1;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #575757;
  border-radius: 0.5rem 0 0 0.5rem;
  box-sizing: border-box;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.search-from .input-group-btn {
	position: relative;
}
.search-from .btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 1rem 2rem;
  height: 4rem;
  font-size: 0;
  line-height: 1.5;
  border-radius: 0 0.5rem 0.5rem 0;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  background-color: #575757;
  border-color: #575757;
  display: flex;
  justify-content: center;
  align-items: center;
	cursor: pointer;
}
.search-from .input-group-btn::after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
  border-radius: 0 0.5rem 0.5rem 0;
	opacity: 0;
}
.search-from .input-group-btn:hover::after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to right, #009135, #005E23);
	position: absolute;
	top: 0;
	left: 0;
	opacity: 1;
	-webkit-transition: .6s ease;
  transition: .6s ease;
}
.search-from .btn img {
  width: 1.7rem;
	position: relative;
	z-index: 1;
	-webkit-transition: .6s ease;
  transition: .6s ease;
}
.search-from .input-group-btn:hover img {
	transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
}
.search-from .input-group-btn {
  margin-left: -1px;
}

#pn_menu {
	width: calc(100% - 19.3rem - 19.3rem);
}
.hd_nav-top {
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom: 1px solid #DBDBDB;
	margin-top: 1.4rem;
	padding-bottom: 1.4rem;
}
.hd_nav-top .navbar-form {
  max-width: 411px;
  width: 100%;
}
.hd_nav-top .input-group {
  height: 3.5rem;
}
.hd_nav-top .form-control {
  width: 35rem;
  padding: 1.3rem 1.5rem;
	box-sizing: border-box;
}
.hd_nav-top .btn {
  height: 3.5rem;
}

.hd_nav-top ul {
	display: flex;
	margin-left: 2rem;
}
.hd_nav-top ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #009135;
}
.hd_nav-top ul li a:hover {
	opacity: 0.6;
}
.hd_nav-top ul li a img {
	width: 1.5rem;
  margin-right: 1em;
}
.hd_nav-top ul li + li {
	margin-left: 1.5rem;
}

ul.main_menu {
	display: flex;
	justify-content: center;
	align-items: center;
}
ul.main_menu > li > a {
	display: block;
	padding: 1.5rem 2.5rem;
	text-align: center;
	position: relative;
	font-size: 15px;
	font-weight: bold;
}
ul.main_menu > li:first-child > a {
//	padding: 1.5rem 1.5rem 1.5rem 0;
}
ul.main_menu > li:last-child > a {
//	padding: 1.5rem 0 1.5rem 1.5rem;
}
ul.main_menu > li > a:hover {
	color: #009135;
}
ul.main_menu > li.open > a {
	background: #F5F5F5;
	color: #009135;
}
ul.main_menu > li > a::after {
	display: inline-block;
	content: "";
	width: 1px;
	height: 1.5rem;
	background: #DBDBDB;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
ul.main_menu > li:last-child a:after {
	display: none;
}
ul.main_menu > li > a > img {
	display: none;
}

.main_menu_box {
  background: #F5F5F5;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
	height: 100%;
	padding-top: 3rem;
	padding-bottom: 5rem;
	display: none;
	z-index: 9998;
}
.open .main_menu_box {
	display: block;
}
.main_menu_box .main_menu_box-inner {
	max-width: 1160px;
	width: 100%;
	margin: 0 auto;
}
.main_menu_box h3 {
	font-size: 2.3rem;
	font-weight: bold;
	padding-bottom: 1.5rem;
	border-bottom: 2px solid #EBEBEB;
	margin-bottom: 3rem;
}
.main_menu_box02 ul {
	display: flex;
	justify-content: space-between;
}
.main_menu_box02 {
	overflow-y: auto;
}
.main_menu_box02 {
	height: auto;
}
.main_menu_box03 {
	height: auto;
}
.main_menu_box03 ul {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
    gap:2%;
}
.main_menu_box02 li {
	width: 20.8rem;
}
.main_menu_box03 li {
	width: 32%;
}
.main_menu_box li h4 {
	overflow: hidden;
	border-radius: 5px;
	-webkit-transition: .6s ease;
  transition: .6s ease;
}
.main_menu_box li h4:hover {
	opacity: 0.6;
}
.main_menu_box li h4 a {
	display: block;
	width: 100%;
	height: 100%;
}
.main_menu_box li h4 p {
	font-size: 1.6rem;
    font-weight:500;
    letter-spacing:0.08em;
	color: #fff;
	text-align: center;
	background: #009135;
	padding-top: 0.7rem;
	padding-bottom: 0.6rem;
}
.main_menu_box li ol {
	margin-top: 7px;
}
.main_menu_box02 li ol li {
	padding-top: 7px;
	padding-bottom: 9px;
	border-bottom: 1px solid #EBEBEB;
}
.main_menu_box03 li {
	padding-bottom: 14px;
	border-bottom: 1px solid #EBEBEB;
}
//.main_menu_box03 li:nth-child(3n - 1) {
//	margin: 0 3rem;
//}
.main_menu_box03 li:nth-child(n+4) {
	margin-top: 1.5rem;
}
.main_menu_box li a {
  font-size: 1.3rem;
}
.main_menu_box li a:hover {
	color: #009135;
}

header .contact {
  width: 11.3rem;
	margin-left: 8rem;
	-webkit-transition: .6s ease;
  transition: .6s ease;
}
header .contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  color: #fff;
	background: #4A4A4A;
	position: relative;
	z-index: 1;
}
header .contact a::after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
header .contact a:hover::after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to right, #009135, #005E23);
	position: absolute;
	top: 0;
	left: 0;
	opacity: 1;
	z-index: -1;
	-webkit-transition: .6s ease;
  transition: .6s ease;
}
header .contact a img {
  display: block;
  width: 2.8rem;
  margin-bottom: 1.3rem;
	-webkit-transition: .6s ease;
  transition: .6s ease;
}
header .contact a:hover img {
	transform: scale(1.3);
	-webkit-transform: scale(1.3);
	-moz-transform: scale(1.3);
	-o-transform: scale(1.3);
}
header .contact a p {
  line-height: 1;
}
.nav-btn {
	display: none;
}

header .link-img {
  width: 12px;
  height: 8px;
  margin-left: 26px;
  position: relative;
  transition: all 0.5s;
}
header .link-img::before {
  display: block;
  content: "";
  width: 18px;
  height: 2px;
  background: #009135;
  position: absolute;
  top: 3px;
  left: -15px;
  transition: all 0.5s;
}

header .main_menu_box h3 > a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transition: all 0.5s;
}
header .main_menu_box h3 > a:hover {
  margin-left: 8px;
  color: #009135;
}
header .main_menu_box h3 > a:hover .link-img::before {
  width: 9px;
  left: -8px;
}


header .main_menu_box03 h3 {
  display: flex;
  justify-content: space-between;
}
header .link_btn {
  width: 21.5rem;
  height: 3.8rem;
  position: relative;
  margin-top:-5px;
}
header .link_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: #E54D39;
}
header .link_btn span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
header .link_btn span:after {
  opacity: 0;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background-image: linear-gradient(to right, #E54D39, #9A3022);
  transition: all 0.5s;
}
header .link_btn:hover span:after {
  opacity: 1;
}
header .link_btn p {
  position: relative;
  z-index: 2;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .link_btn p img {
  display: block;
  width: 21px;
  margin-left: 10px;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
header .link_btn:hover p img {
  transform:scale(1.2);
  -webkit-transform:scale(1.2);
  -moz-transform:scale(1.2);
  -o-transform:scale(1.2);
}
@media only screen and (max-width: 1160px) {
	/* search */
	.search-from .form-control {
    font-size: 1.2931vw;
    padding: 1vw 2vw;
  }
  .search-from .input-group {
    height: 3.4483vw;
  }
	.search-from .btn {
    padding: 1vw 1.4vw;
    height: 3.4483vw;
  }

  .hd_nav-top .navbar-form {
    max-width: 35.4310vw;
  }
  .hd_nav-top .form-control {
    width: 30.1724vw;
  }
  .hd_nav-top ul li a {
    font-size: 1.2931vw;
  }
  ul.main_menu > li > a {
    font-size: 1.2931vw;
    padding:1.5rem 1.3rem;
  }
  .main_menu_box{
        padding-right:2.5vw;
        padding-left:2.5vw;
  }
  .main_menu_box02 ul {
    flex-wrap: wrap;
  }
  .main_menu_box02 li {
		width: 17.9310vw;
  }
//	.main_menu_box03 li {
//		width: 31.5517vw;
//	}
//	.main_menu_box03 li:nth-child(3n - 1) {
//		margin-right: 2.5862vw;
//		margin-left: 2.5862vw;
//	}
	.main_menu_box03 li.col02 {
		width: 66%;
	}

}
@media only screen and (max-width: 768px) {
	.open .mask {
		top: 16.6667vw;
		height: 100vh;
		z-index: -1;
	}
  header .hd_inner {
		flex-direction: column;
	}
	header .logo {
		width: 100vw;
		margin-top: 4.7222vw;
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 0;
		padding-left: 2.7778vw;
		padding-bottom: 4.4444vw;
		border-bottom: 1px solid #E6E6E6;
	}
	header .logo img {
		width: 56.9444vw;
	}
	
	header .contact {
		width: 22.2222vw;
		height: 16.6667vw;
		position: absolute;
		right: 16.6667vw;
	}
	header .contact a img {
		width: 6.6667vw;
		margin-bottom: 1.3889vw;
	}
	header .contact p {
		font-size: 2.7778vw;
	}

.nav-btn {
	width: 16.6667vw;
	height: 16.6667vw;
	position: absolute;
	right: 0;
	background: #009135;
	display: flex;
	justify-content: center;
	align-items: center;
}
.nav-btn:before {
	display: block;
	content: "";
	width: 8.3333vw;
	height: 6.1111vw;
	background-image: url('../img/common/hd/icon_menu.svg');
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: contain;
}
.nav-btn.active:before {
	display: block;
	content: "";
	width: 8.3333vw;
	height: 6.1111vw;
	background-image: url('../img/common/hd/icon_closed.svg');
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: contain;
}

	#pn_menu {
		width: 100%;
		height: calc(100vh - 16.6667vw);
		overflow-y: scroll;
		display: none;
		background: #fff;
	}
	.open#pn_menu {
		display: block;
	}
	.hd_nav-top {
		align-items: flex-start;
		flex-direction: column-reverse;
		border-bottom: none;
		margin-top: 5.8333vw;
		width: 94.4444vw;
		margin-left: auto;
		margin-right: auto;
	}
	.hd_nav-top .navbar-form {
		max-width: 100%;
		width: 100%;
	}
	.hd_nav-top .input-group {
		height: 11.1111vw;
	}
	.hd_nav-top .form-control {
		width: 79vw;
		padding: 4.1667vw;
		box-sizing: border-box;
	}
	.hd_nav-top .btn {
		height: 11.1111vw;
	}
	.hd_nav-top ul {
		margin-left: 0; 
		margin-bottom: 4.1667vw;
	}
	.hd_nav-top ul li a {
		font-size: 3.6111vw;
	}
	.hd_nav-top ul li a img {
		width: 4.7222vw;
	}
	.hd_nav-top ul li + li {
		margin-left: 4.1667vw;
	}

	ul.main_menu {
		flex-direction: column;
		align-items: flex-start;
		padding-bottom: 8.3333vw;
	}
	ul.main_menu > li {
		width: 94.4444vw;
		margin-left: auto;
		margin-right: auto;
		border-bottom: 1px solid #3E9342;
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	ul.main_menu > li > a {
		width: 100%;
		margin: 0;
		padding: 6.9444vw 3.3333vw 3.3333vw 0;
		text-align: left;
		font-size: 5vw;
		display: flex;
        justify-content: space-between;
        align-items: center;
	}
	ul.main_menu > li > a:hover {
		color: #333;
	}
	ul.main_menu > li > a.active {
		border-bottom: 1px solid #009135;
	}
	ul.main_menu > li > a::after {
		display: none;
	}
    ul.main_menu > li:last-child a:after {
    	display: block;
    }
	ul.main_menu > li > a > img {
		display: block;
		width: 7.2222vw;
		margin: 0 0 0 auto;
	}

	/* search */
  .search-from .form-control {
    width: 75vw;
    font-size: 3.3333vw;  
    padding: 1.8rem 1.5rem;
  }
  .search-from .input-group {
    height: 11.1111vw;
  }
  .search-from .btn {
    padding: 1.8rem 1.5rem;
    height: 11.1111vw;
  }

	.main_menu_box {
		background: #fff;
		position: relative;
		top: 0;
		left: 2.7778vw;
		width: 88.8889vw;
		padding-top: 5.5556vw;
		padding-bottom: 0;
        padding-left:0;
        padding-right:0;
	}
	.open .main_menu_box {
        display: none;
	}
	.open .active .main_menu_box {
		display: block;
	}
	.main_menu_box h3 {
		width: 100%;
		font-size: 3.6111vw;
		padding-bottom: 3.3333vw;
		border-bottom: 1px solid #575757;
		margin-bottom: 0;
	}
	.main_menu_box h3 a {
		display: block;
		width: 100%;
		height: 100%;
		position: relative;
	}
	.main_menu_box h3 a::after {
		display: block;
		content: "";
		width: 1.3889vw;
		height: 2.7778vw;
		background: url(../img/common/sp_menu_arrow.svg) no-repeat;
		background-size: contain;
		position: absolute;
		right: 4.1667vw;
		top: 50%;
		transform: translateY(-50%);
	}
	.main_menu_box02,
	.main_menu_box03 {
		height: auto;
	}
	.main_menu_box02 ul {
		flex-direction: column;
	}
	.main_menu_box03 ul {
		flex-direction: column;
	}

	.main_menu_box02 li {
		width: 100%;
	}
	.main_menu_box03 li {
		width: 100%;
	}
	.main_menu_box li h4 {
		position: relative;
		border-radius: 0;
	}
	.main_menu_box li h4 img {
		display: none;
	}
	.main_menu_box li h4 p {
		font-size: 4.4444vw;
		line-height: 1;
		color: #009135;
		text-align: left;
		background: #fff;
		padding-top: 0;
		padding-bottom: 0;
		padding-left: 3.3333vw;
		border-left: 2px solid #009135;
		margin-top: 5.5556vw;
	}
	.main_menu_box li ol {
		margin-top: 0;
	}
	.main_menu_box02 li ol li {
		padding-top: 3.3333vw;
		padding-bottom: 3.3333vw;
		padding-left: 4.1667vw;
	}
	.main_menu_box03 li {
		padding-top: 3.3333vw;
		padding-bottom: 3.3333vw;
		padding-left: 4.1667vw;
	}
	.main_menu_box03 li:nth-child(3n - 1) {
		margin: 0;
	}
	.main_menu_box03 li:nth-child(n + 4){
		margin-top: 0;
	}
    .main_menu_box03 li.col02{
        width:100%;
    }
	.main_menu_box li a {
		font-size: 3.3333vw;
	}

	.nav_img .nav_list {
		position: relative;
	}
	.nav_img .nav_list:after {
		display: block;
		content: "";
		position: absolute;
		right: 4.1667vw;
		top: 50%;
		transform: translateY(-50%);
		width: 5vw;
		height: 5vw;
		background: url(../img/common/hd_nav_img02.svg) no-repeat;
	}
	.nav_img .nav_list.active::after {
		height: 1.6667vw;
		background: url(../img/common/hd_nav_img01.svg) no-repeat;
	}
	.main_menu_box02 li ol li,
	.main_menu_box03 ul li {
		position: relative;
	}
	.main_menu_box02 li ol li::after,
	.main_menu_box03 ul li::after {
		display: block;
		content: "";
		width: 1.3889vw;
		height: 2.7778vw;
		background: url(../img/common/sp_menu_arrow.svg) no-repeat;
		background-size: contain;
		position: absolute;
		right: 4.1667vw;
		top: 50%;
		transform: translateY(-50%);
	}

  .main_menu_box02 li {
    margin: 0;
  }
  .main_menu_box03 li:nth-child(3n - 1) {
    margin-left: 0;
    margin-right: 0;
  }
  .main_menu_box03 li {
    margin-left: 0;
    margin-right: 0;
  }
  .main_menu_box03 li:nth-child(3) {
    margin-top: 0;
  }

  header .link-img,
  header .link_btn {
    display: none;
  }
	ul.main_menu > li:first-child > a {
    padding: 6.9444vw 3.3333vw 3.3333vw 0;
}
	ul.main_menu > li:last-child > a {
		padding: 6.9444vw 3.3333vw 3.3333vw 0;
	}
}



/* ==========================================================================
   04. footer
========================================================================== */
footer a:hover {
  color: #009135;
}
footer .ft_inner {
	max-width: 1160px;
    width: 100%;
    margin: 0 auto;
	padding: 5.1724% 0 2.5862%;
	border-bottom: 1px solid #DBDBDB;
	display: flex;
}
#top footer .ft_inner {
	border-top: 1px solid #DBDBDB;
}
footer .ft_inner .ft_tit span {
	font-size: 1.4rem;
	font-weight: bold;
	border-bottom: 1px solid #4A4A4A;
}
footer .ft_inner .ft_stit {
	font-size: 1.3rem;
	font-weight: bold;
}
footer .ft_list02 .ft_tit,
footer .ft_list03 .ft_tit {
	margin-bottom: 1.7rem;
}
.ft_list02 ul {
	margin-top: 1.2rem;
}
.ft_list02 ul li {
	line-height: 2;
}
.ft_list02 .ft_stit.mt-20 {
	margin-top: 2rem;
}
footer .ft_list03 .ft_stit {
	margin-bottom: 1rem;
}
footer .ft_list04 .ft_tit {
	margin-bottom: 3rem;
}
footer .ft_list04 .ft_stit {
	margin-bottom: 1rem;
}
footer .ft_list04 .ft_tit.mb-17 {
	margin-bottom: 1.7rem;
}
footer .ft_list03 .ft_stit.mb-30,
footer .ft_list04 .ft_stit.mb-30 {
	margin-bottom: 3rem;
}

footer .ft_list01,
footer .ft_list03 {
	margin-right: 6.3793%;
}
footer .ft_list02 {
	min-width: 41.7241%;
}
footer .ft_flex-box {
	display: flex;
	justify-content: space-between;
}
footer .ft_list03 {
	margin-left: 6.3793%;
}
/* copyright */
footer small {
	display: block;
	font-size: 1.3rem;
	text-align: center;
  padding-top: 3rem;
  padding-bottom: 4rem;
}
footer small span {
	font-size: 1.4rem;
	vertical-align: middle;
}
@media only screen and (max-width: 1160px) {
  footer .ft_inner {
    padding-left: 1em;
    padding-right: 1em;
  }
  footer .ft_inner .ft_tit span {
    font-size: 1.2069vw;
  }
  footer .ft_inner .ft_stit {
    font-size: 1.1207vw;
  }
  footer .ft_list02 {
    min-width: 41.7241%;
  }
  footer .ft_inner ul li a {
    font-size: 1.1207vw;
  }
}
@media only screen and (max-width: 768px) {
  footer .ft_inner {
    max-width: 94.4444vw;
    padding: 9.7222vw 0;
    flex-direction: column;
  }
  footer .ft_inner .ft_tit span {
    font-size: 3.8889vw;
  }
  footer .ft_inner .ft_stit {
    font-size: 3.6111vw;
    line-height: 1.8;
  }
//  footer .ft_inner .ft_list03-2 .ft_stit:nth-child(even) {
//    padding-right:3vw;
//  }
  footer .ft_inner .ft_list03-2 .ft_stit:last-child { 
    margin-bottom: 8.3333vw;
 }

  footer .ft_list01 {
    margin-bottom: 8.3333vw;
  }
  footer .ft_list02 .ft_tit,
  footer .ft_list03 .ft_tit {
    margin-bottom: 5.5556vw;
  }
  .ft_list02 ul {
    margin-top: 2.7778vw;
    display: flex;
    flex-wrap: wrap;
  }
  .ft_list02 ul li {
    line-height: 1.8;
  }
  .ft_list02 .ft_stit.mt-20 {
    margin-top: 4.1667vw;
  }
  footer .ft_list04 .ft_tit {
    margin-bottom: 6.9444vw;
  }
	footer .ft_list04 .ft_tit:last-child {
		margin-bottom: 0;
	}
  footer .ft_inner ul li {
    width: 43.0556vw;
    padding-left: 4.1667vw;
  }
  footer .ft_inner ul.w_full li {
    width: 100%;
  }
  footer .ft_inner ul li a {
    font-size: 3.6111vw;
  }
  footer .ft_list03 .ft_stit.mb-30,
  footer .ft_list04 .ft_stit.mb-30 {
    margin-bottom: 8.3333vw;
  }
  footer .ft_list01,
  footer .ft_list03 {
    margin-right: 0;
  }
  footer .ft_list02 {
    min-width: 100%;
  }
  footer .ft_flex-box {
    flex-direction: column;
  }
  footer .ft_list03 {
    margin-left: 0;
  }
  .ft_list02-2 {
    margin-top: 5.5556vw;
  }
	.ft_list03-1 {
    margin-top: 8.3333vw;
  }
  .ft_list03-2,
  .ft_list04-1 {
    display: flex;
    flex-wrap: wrap;
  }
  .ft_list03-2{
    gap:0 7vw;
  }

  .ft_list03-2 .ft_tit {
    width: 100%;
  }
  .ft_list03-2 .ft_stit {
    width:calc((100% - 7vw)/2);
  }

  
  .ft_list04-1 .ft_stit {
    width: 50%;
  }
  /* copyright */
  footer small {
    font-size: 3.0556vw;
    padding-top: 5vw;
    padding-bottom: 5.5556vw;
  }
  footer small span {
    font-size: 4.1667vw;
  }
}

a._external{
  display:flex;
  align-items:center;
  gap:15px;
}

a._external:after{
  content: "";
  display: block !important;
  width: 0.8vw;
  height: 0.8vw;
  background: url(../img/parts/icon_external.svg) no-repeat center center / contain;
}
@media only screen and (max-width: 768px) {
  a._external{
    gap:8px;
  }
  
  a._external:after{
    width: 4vw;
    height: 4vw;
  }
}