@charset "UTF-8";



/*--------------------------------------------------------------
font-family: "Zen Kaku Gothic New", sans-serif;
font-family: "Montserrat", sans-serif;
--------------------------------------------------------------*/

/*--------------------------------------------------------------
html, body
--------------------------------------------------------------*/

html, body{
	margin: 0;
    padding: 0;
	color: #363636;
	font-family: "Montserrat", "Zen Kaku Gothic New", sans-serif;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-align: justify;
	text-justify: inter-ideograph;
	font-feature-settings: "pkna" 1;
	word-break: break-all;
}



/*--------------------------------------------------------------
background: url("../image/ground.jpg") top center no-repeat;
-webkit-background-size: 100% 100%;
background-size: 100% 100%;
--------------------------------------------------------------*/

/*--------------------------------------------------------------
h1,h2,h3,h4,h5,h6
ul
--------------------------------------------------------------*/

h1,h2,h3,h4,h5,h6 {
	font-weight: normal;
}

ul {
	list-style-type: none;
}


/*--------------------------------------------------------------
img
--------------------------------------------------------------*/

img {
	width: 100%;
	height: auto;
}

/*--------------------------------------------------------------
a
--------------------------------------------------------------*/

a:link {
	color: #363636;
	text-decoration: none;
}

a:visited {
	color: #363636;
	text-decoration: none;
}

a:hover, a:active, a:focus {
	text-decoration: none;
}

/*--------------------------------------------------------------
color
--------------------------------------------------------------*/

.grn {
	color: #6FA88E;
}



/*--------------------------------------------------------------
#container
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	#container {
		margin: 0;
		padding: 0;
	}
	
	
}

/* Small than tablet */
@media (min-width: 768px) {
	
	
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	
	
}


/*--------------------------------------------------------------
#header
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	#header {
		margin: 0;
		padding: 1.66vw 3.3vw 0 3.3vw;
		position: relative;
	}
	
	#header h1 {
		margin: 0 0 10px 0;
		padding: 0;
		font-size: 10px;
		font-weight: 500;
	}
	
	#header dl {
		display: none;
	}
	


}

/* Small than tablet */
@media (min-width: 768px) {
	
	
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	#header {
		margin: 0;
		padding: 1.66vw 3.3vw 0 3.3vw;
		position: relative;
	}
	
	#header h1 {
		margin: 0;
		padding: 0;
		font-size: 1vw;
		font-weight: 500;
	}
	
	#header dl {
		margin: 0;
		padding: 0;
		position: absolute;
		top: 1.25vw;
		right: 1.25vw;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: flex-end;
		justify-content: flex-end;
	}
	
	#header dl dt {
		margin: 0.83vw 2.08vw 0 0;
		padding: 0;
		font-size: 2vw;
		font-weight: 500;
	}
	

	#header dl dt .material-symbols-outlined {
		font-variation-settings:
			'FILL' 0,
			'wght' 300,
			'GRAD' 0,
			'opsz' 24;
		color: #6FA88E;
		font-size: 2.08vw;
		vertical-align: -0.33vw;
		margin: 0 0.41vw 0 0;
	}
	
}


/*--------------------------------------------------------------
.btn
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	#header .btn{
		position: relative;
		overflow: hidden;
		text-decoration: none;
		display: inline-block;
		padding: 1.25vw 3.75vw;
		text-align: center;
		outline: none; 
		transition: ease .2s;
		font-size: 1.1vw;
		font-weight: 600;
		border-radius: 0.83vw;
		background: #6FA88E;
	}

	#header .btn span {
		position: relative;
		z-index: 3;
		color: #FFF;
	}
	
	#header .btn:hover span{
		color: #fff;
	}

	#header .bgleft:before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		z-index: 2;
		background: #AE9371;
		width: 100%;
		height: 100%;
		transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
		transform: scale(0, 1);
		transform-origin: right top;
	}
	
	#header .bgleft:hover:before{
		transform-origin:left top;
		transform:scale(1, 1);
	}

}

/* Small than tablet */
@media (min-width: 768px) {
	
	
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	
	
}

/*--------------------------------------------------------------
.main
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	.main {
		margin: 0 0 2.5vw 0;
		padding: 0;
	}
	
	.main ul {
		display: -webkit-flex;
		display: flex;
	}
	
	.main ul li:nth-child(1),
	.main ul li:nth-child(2),
	.main ul li:nth-child(3),
	.main ul li:nth-child(5),
	.main ul li:nth-child(6),
	.main ul li:nth-child(7){
		display: none;
	}
	
	.main ul .logo {
		margin: 0;
		width: 180px;
	}
	
	.main ul .logo img {
		transition: all .3s;
	}
	
	.main ul .logo img:hover {
		opacity: 0.6;
	}
	
}

/* Small than tablet */
@media (min-width: 768px) {
	
	
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	.main {
		margin: 0.83vw 0 2.5vw 0;
		padding: 0;
	}
	
	.main ul {
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: center;
		justify-content: center;
	}
	
	.main ul li:nth-child(1),
	.main ul li:nth-child(2),
	.main ul li:nth-child(3),
	.main ul li:nth-child(5),
	.main ul li:nth-child(6),
	.main ul li:nth-child(7){
		margin: 6vw 0 0 0;
		display: inherit;
	}
	
	.main ul li:nth-child(1) a,
	.main ul li:nth-child(2) a,
	.main ul li:nth-child(3) a,
	.main ul li:nth-child(5) a,
	.main ul li:nth-child(6) a,
	.main ul li:nth-child(7) a{
		margin: 0;
		padding: 0.41vw 2vw;
		display: block;
		text-decoration: none;
		font-size: 1.3vw;
		font-weight: 700;
		position: relative;
	}
	
	.main ul .logo {
		margin: 0 2.91vw;
		width: 12vw;
	}
	
	.main ul .logo img {
		transition: all .3s;
	}
	
	.main ul .logo img:hover {
		opacity: 0.6;
	}
	
}


.main ul li:nth-child(1) a::after,
.main ul li:nth-child(2) a::after,
.main ul li:nth-child(3) a::after,
.main ul li:nth-child(5) a::after,
.main ul li:nth-child(6) a::after,
.main ul li:nth-child(7) a::after {
	content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    width: 70%;
    height: 0.08vw;
    background: #AE9371;
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: center top;
}

.main ul li:nth-child(1) a:hover::after,
.main ul li:nth-child(2) a:hover::after,
.main ul li:nth-child(3) a:hover::after,
.main ul li:nth-child(5) a:hover::after,
.main ul li:nth-child(6) a:hover::after,
.main ul li:nth-child(7) a:hover::after {
    transform: scale(1, 1);
}



/*--------------------------------------------------------------
.footer
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	#footer {
		margin: 0 2% 2% 2%;
		padding: 30px 0;
		background: #6FA88E;
		border-radius: 1.66vw;
	}
	
}

/* Small than tablet */
@media (min-width: 768px) {
	
	
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	#footer {
		margin: 0 4% 4% 4%;
		padding: 3.33vw 0 4.16vw 0;
		background: #6FA88E;
		border-radius: 1.66vw;
	}
	
}


/*--------------------------------------------------------------
.contact-linker
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	.contact-linker h6 {
		margin: 20px 0 20px 0;
		padding: 0;
		font-size: 18px;
		text-align: center;
		font-weight: 500;
		letter-spacing: 2px;
		color: #FFF;
	}
	

	.contact-linker ul {
		margin: 0 5% 30px 5%;
		padding: 0;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		flex-wrap: wrap;
	}
	
	.contact-linker ul li {
		width: 100%;
		border-radius: 10px;
		text-align: center;
		margin: 0 0 10px 0;
		transition: all .3s;
	}
	
	.contact-linker ul li a {
		display: block;
		padding: 10px 0;
		
	}
	
	.contact-linker ul li:hover {
		box-shadow: 0 1.66vw 1.66vw rgba(0, 0, 0, 0.1);
		border-color: transparent;
	}
	
	.contact-linker ul li:first-child {
		background: #87C3A7;
		transition: all .3s;
	}
	
	.contact-linker ul li dl {
		margin: 0;
		padding: 0;
		color: #FFF;
	}
	
	.contact-linker ul li dt {
		margin: 0;
		padding: 0;
		font-size: 14px;
		font-weight: 600;
		letter-spacing: 0.08vw;
	}
	
	.contact-linker ul li dd .material-symbols-outlined {
		font-variation-settings:
			'FILL' 0,
			'wght' 300,
			'GRAD' 0,
			'opsz' 24;
		font-size: 20px;
		vertical-align: -5px;
		margin: 0 0.41vw 0 0;
	}
	
	.contact-linker ul li dd {
		margin: 0;
		padding: 0;
		font-size: 20px;
		font-weight: 600;
		letter-spacing: 0.08vw;
	}
	
	.contact-linker ul li:last-child {
		background: #FFF;
		transition: all .3s;
	}
	
	.contact-linker ul li:last-child:hover {
		background: rgba(251,255,226,1.00);
	}
	
	.contact-linker ul li:last-child .box {
		font-size: 15px;
		font-weight: 600;
		width: 100%;
		padding: 10px 0;
	}
	
	.contact-linker ul li:last-child .box .material-symbols-outlined {
		font-variation-settings:
			'FILL' 0,
			'wght' 300,
			'GRAD' 0,
			'opsz' 24;
		font-size: 23px;
		vertical-align: -5px;
		margin: 0 10px 0 0;
		color: #AE9371;
	}
}

/* Small than tablet */
@media (min-width: 768px) {
	
	
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	.contact-linker h6 {
		margin: 1.66vw 0 1.66vw 0;
		padding: 0;
		font-size: 1.66vw;
		text-align: center;
		font-weight: 500;
		letter-spacing: 0.16vw;
		color: #FFF;
	}
	
	.contact-linker ul {
		margin: 0 10% 5.83vw 10%;
		padding: 0;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		flex-wrap: nowrap;
	}
	
	.contact-linker ul li {
		width: 50%;
		border-radius: 0.83vw;
		text-align: center;
		margin: 0 0.83vw;
		transition: all .3s;
	}
	
	.contact-linker ul li a {
		display: block;
		padding: 2.08vw 0;
		height: 100%;
		
	}
	
	.contact-linker ul li:hover {
		box-shadow: 0 1.66vw 1.66vw rgba(0, 0, 0, 0.1);
		border-color: transparent;
	}
	
	.contact-linker ul li:first-child {
		background: #87C3A7;
		transition: all .3s;
	}
	
	.contact-linker ul li dl {
		margin: 0;
		padding: 0;
		color: #FFF;
	}
	
	.contact-linker ul li dt {
		margin: 0 0 0.41vw 0;
		padding: 0;
		font-size: 1.25vw;
		font-weight: 500;
		letter-spacing: 0.08vw;
	}
	
	.contact-linker ul li dd .material-symbols-outlined {
		font-variation-settings:
			'FILL' 0,
			'wght' 300,
			'GRAD' 0,
			'opsz' 24;
		font-size: 2.08vw;
		vertical-align: -0.25vw;
		margin: 0 0.41vw 0 0;
	}
	
	.contact-linker ul li dd {
		margin: 0;
		padding: 0;
		font-size: 2.5vw;
		font-weight: 600;
		letter-spacing: 0.08vw;
	}
	
	.contact-linker ul li:last-child {
		background: #FFF;
		position: relative;
		transition: all .3s;
	}
	
	.contact-linker ul li:last-child:hover {
		background: rgba(251,255,226,1.00);
	}
	
	.contact-linker ul li:last-child .box {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		font-size: 1.66vw;
		font-weight: 600;
		width: 100%;
		padding: 0;
	}
	
	.contact-linker ul li:last-child .box .material-symbols-outlined {
		font-variation-settings:
			'FILL' 0,
			'wght' 300,
			'GRAD' 0,
			'opsz' 24;
		font-size: 2.91vw;
		vertical-align: -0.83vw;
		margin: 0 1.66vw 0 0;
		color: #AE9371;
	}
	
}


/*--------------------------------------------------------------
.vision-area
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	.vision-area {
		margin: 0;
		padding: 0;
		text-align: center;
	}
	
	.vision-area dl {
		margin: 0;
		padding: 0;
	}
	
	.vision-area dt {
		margin: 0 0 20px 0;
		padding: 0;
		font-size: 15px;
		font-weight: 500;
		color: #FFF;
		letter-spacing: 0.33vw;
	}
	
	.vision-area dd {
		margin: 0 auto 10px auto;
		padding: 0;
		width: 120px;
	}
}

/* Small than tablet */
@media (min-width: 768px) {
	
	
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	.vision-area {
		margin: 0;
		padding: 0;
		text-align: center;
	}
	
	.vision-area dl {
		margin: 0;
		padding: 0;
	}
	
	.vision-area dt {
		margin: 0 0 3.33vw 0;
		padding: 0;
		font-size: 1.66vw;
		font-weight: 500;
		color: #FFF;
		letter-spacing: 0.33vw;
	}
	
	.vision-area dd {
		margin: 0 auto 5.83vw auto;
		padding: 0;
		width: 11.6vw;
	}
	
}

/*--------------------------------------------------------------
insurance-area
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	.insurance-area {
		margin: 50px 20px 0 20px;
		padding: 0;
	}
	
	.insurance-area ul {
		margin: 0;
		padding: 0;
		display: -webkit-flex;
		display: flex;
		flex-wrap: nowrap;
		align-items: center;
	}
	
	.insurance-area ul li {
		margin: 0 10px;
		padding: 0;
	}
}

/* Small than tablet */
@media (min-width: 768px) {
	
	.insurance-area {
		margin: 4.16vw 10% 0 10%;
		padding: 0;
	}
	
	.insurance-area ul {
		margin: 0;
		padding: 0;
		display: -webkit-flex;
		display: flex;
		flex-wrap: nowrap;
		align-items: center;
	}
	
	.insurance-area ul li {
		margin: 0 1.66vw 0 0;
		padding: 0;
	}
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	
	
}

/*--------------------------------------------------------------
.footer-innfomartion
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	.footer-innfomartion {
		margin: 0 5%;
		padding: 0;
		color: #FFF;
		font-size: 12px;
		font-weight: 500;
		letter-spacing: 0.16vw;
		text-align: left;
	}
	
	.footer-innfomartion ul {
		display: none;
	}
	
	.footer-innfomartion ul li a {
		margin: 0 3.33vw 0 0;
		padding: 0;
		display: block;
	}
	
	.footer-innfomartion a:link {
		color: #FFF;
		text-decoration: none;
	}
	
	.footer-innfomartion a:visited {
		color: #FFF;
		text-decoration: none;
	}
	
	.footer-innfomartion a:hover, .footer-innfomartion a:active, .footer-innfomartion a:focus {
		text-decoration: none;
	}
	
	.footer-innfomartion ul li a{
		position: relative;
	}
	
	.footer-innfomartion ul li a:hover{
		color: #FFF;
	}
	
	.footer-innfomartion ul li a::after {
		content: '';
		position: absolute;
		bottom: -0.41vw;
		left: 0;
		width: 100%;
		height: 1px;
		background: #FFF;
		transition: all .3s;
		transform: scale(0, 1);
		transform-origin: left top;
	}
	
	.footer-innfomartion ul li a:hover::after {
		transform: scale(1, 1);
	}
	
	.footer-innfomartion dl {
		margin: 0 0 15px 0;
		padding: 0;
		text-align: center;
	}
	
	.footer-innfomartion dt {
		display: none;
	}
	
	.insta {
		margin: 30px auto 0 auto;
		padding: 0;
		width: 30px;
	}
	
	.footer-innfomartion .copy {
		margin: 0;
		padding: 0;
		font-size: 9px;
		font-weight: 500;
		letter-spacing: 0;
		text-align: center;
	}
}

/* Small than tablet */
@media (min-width: 768px) {
	
	
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	.footer-innfomartion {
		margin: 0 10%;
		padding: 0;
		color: #FFF;
		font-size: 1.16vw;
		font-weight: 500;
		letter-spacing: 0.16vw;
		text-align: left;
	}
	
	.footer-innfomartion ul {
		margin: 0 0 2.5vw 0;
		padding: 0 ;
		display: -webkit-flex;
		display: flex;
	}
	
	.footer-innfomartion ul li a {
		margin: 0 3.33vw 0 0;
		padding: 0;
		display: block;
	}
	
	.footer-innfomartion a:link {
		color: #FFF;
		text-decoration: none;
	}
	
	.footer-innfomartion a:visited {
		color: #FFF;
		text-decoration: none;
	}
	
	.footer-innfomartion a:hover, .footer-innfomartion a:active, .footer-innfomartion a:focus {
		text-decoration: none;
	}
	
	.footer-innfomartion ul li a{
		position: relative;
	}
	
	.footer-innfomartion ul li a:hover{
		color: #FFF;
	}
	
	.footer-innfomartion ul li a::after {
		content: '';
		position: absolute;
		bottom: -0.41vw;
		left: 0;
		width: 100%;
		height: 1px;
		background: #FFF;
		transition: all .3s;
		transform: scale(0, 1);
		transform-origin: left top;
	}
	
	.footer-innfomartion ul li a:hover::after {
		transform: scale(1, 1);
	}
	
	.footer-innfomartion dl {
		margin: 0 0 1.25vw 0;
		padding: 0;
		display: -webkit-flex;
		display: flex;
		position: relative;
		text-align: left;
	}
	
	.footer-innfomartion dt {
		margin: 0 2.08vw 0 0;
		padding: 0;
		display: inherit;
	}
	
	.insta {
		margin: 0;
		padding: 0;
		width: 2.33vw;
		position: absolute;
		top: 0;
		right: 0;
	}
	
	.footer-innfomartion .copy {
		margin: 0;
		padding: 0;
		font-size: 0.75vw;
		font-weight: 500;
		letter-spacing: 0;
		text-align: left;
	}
	
}

/*--------------------------------------------------------------
.contents
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	.contents p {
		font-size: 15px;
		font-weight: 600;
		line-height: 1.8;
		letter-spacing: 2px;
	}
	
	
}

/* Small than tablet */
@media (min-width: 768px) {
	
	.contents p {
		font-size: 1.41vw;
		font-weight: 600;
		line-height: 2;
		letter-spacing: 0.16vw;
	}
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	
	
}


/*--------------------------------------------------------------
#category-top-title
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	#category-top-title {
		margin: 0 0 5px 0;
		padding: 0;
		
	}
	
	#category-top-title div:first-child {
		margin: 0;
		padding: 0;
		width: auto;
		box-sizing: border-box;
	}
	
	#category-top-title div:last-child {
		margin: 0 5%;
		padding: 0;
		width: auto;
		box-sizing: border-box;
	}
	
	#category-top-title div:last-child img {
		border-radius: 10px;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	#category-top-title div:first-child h2 {
		margin: 20px 0;
		padding: 0;
		font-size: 20px;
		letter-spacing: 2px;
		font-weight: 600;
		text-align: center;
	}
	
	#category-top-title div:first-child h2 span {
		margin: 0 0 0.41vw 0;
		padding: 0;
		display: block;
		color: #6FA88E;
		font-weight: 600;
		font-size: 11px;
		letter-spacing: 0;
	}
	
}

/* Small than tablet */
@media (min-width: 768px) {
	
	#category-top-title {
		margin: 0 0 5px 0;
		padding: 0;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		align-items: center;
	}
	
	#category-top-title div:first-child {
		margin: 0;
		padding: 0 0 0 8%;
		width: 30%;
		box-sizing: border-box;
	}
	
	#category-top-title div:last-child {
		margin: 0;
		padding: 0 1% 0 0;
		width: 70%;
		box-sizing: border-box;
	}
	
	#category-top-title div:last-child img {
		border-radius: 1.66vw;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	#category-top-title div:first-child h2 {
		margin: 0;
		padding: 0;
		font-size: 2.3vw;
		letter-spacing: 0.16vw;
		font-weight: 600;
		text-align: left;
	}
	
	#category-top-title div:first-child h2 span {
		margin: 0 0 0.41vw 0;
		padding: 0;
		display: block;
		color: #6FA88E;
		font-weight: 600;
		font-size: 1.08vw;
		letter-spacing: 0;
	}
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	
	
}

/*--------------------------------------------------------------
#link-conductor-area
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	#link-conductor-area {
		margin: 0 1%;
		padding: 50px 0 20px 0;
	}
	
	#link-conductor-area ul {
		
	}
	
	#link-conductor-area ul li {
		width: auto;
		text-align: center;
		margin: 0 2%;
	}
	
	#link-conductor-area ul li a {
		width: auto;
		margin: 0 0 3px 0;
		padding: 20px 0;
		background: #F8F8F7;
		border-radius: 10px;
		display: block;
		border: 1px solid #FFF;
		transition: all .3s;
	}
	
	#link-conductor-area ul li a:hover {
		border: 1px solid #6FA88E;
		
	}
	
	#link-conductor-area ul li a:hover .category_bt span {
		right: 0;
	}
	
	#link-conductor-area .category_bt {
		width: auto;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		align-items: center;
		
	}
	
	#link-conductor-area .category_bt{
		position: relative;
		font-size: 14px;
		font-weight: 600;
	}
	
	#link-conductor-area .category_bt::before{
		content: '';
		position: absolute;
		top: 50%;
		right: 3%;
		transform: translateY(-50%);
		width: 20px;
		height: 20px;
		border: 1px solid #6FA88E;
		background: #6FA88E;
		border-radius: 50%;
		
		
	}
	
	#link-conductor-area .category_bt span{
		content: '';
		position: absolute;
		top: 50%;
		right: 3%;
		transform: translateY(-50%);
		color: #FFF;
		font-size: 18px;
		transition: all .3s;
	}
	
	#link-conductor-area .category_bt .material-symbols-outlined {
		font-variation-settings:
			'FILL' 0,
			'wght' 300,
			'GRAD' 0,
			'opsz' 24;
		font-size: 18px;
		vertical-align: -0.83vw;
	}

}

/* Small than tablet */
@media (min-width: 768px) {
	
	#link-conductor-area {
		margin: 0 4%;
		padding: 8.33vw 0 2.5vw 0;
	}
	
	#link-conductor-area ul {
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
	}
	
	#link-conductor-area ul li {
		width: 100%;
		text-align: center;
		margin: 0 0.5%;
	}
	
	#link-conductor-area ul li a {
		width: 100%;
		padding: 4.16vw 1.66vw;
		background: #F8F8F7;
		border-radius: 0.83vw;
		display: block;
		border: 1px solid #FFF;
		transition: all .3s;
	}
	
	#link-conductor-area ul li a:hover {
		border: 1px solid #6FA88E;
		
	}
	
	#link-conductor-area ul li a:hover .category_bt span {
		right: 0;
	}
	
	#link-conductor-area .category_bt {
		width: auto;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		align-items: center;
		
	}
	
	#link-conductor-area .category_bt{
		position: relative;
		font-size: 1.66vw;
		font-weight: 600;
	}
	
	#link-conductor-area .category_bt::before{
		content: '';
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		width: 2.08vw;
		height: 2.08vw;
		border: 1px solid #6FA88E;
		background: #6FA88E;
		border-radius: 50%;
		
		
	}
	
	#link-conductor-area .category_bt span{
		content: '';
		position: absolute;
		top: 50%;
		right: 0.25vw;
		transform: translateY(-50%);
		color: #FFF;
		font-size: 2.0vw;
		transition: all .3s;
	}
	
	#link-conductor-area .category_bt .material-symbols-outlined {
		font-variation-settings:
			'FILL' 0,
			'wght' 300,
			'GRAD' 0,
			'opsz' 24;
		font-size: 1.5vw;
		vertical-align: -0.83vw;
	}
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	
	
}


/*--------------------------------------------------------------
#pankuzu
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	#pankuzu,
	#pankuzu-top{
		margin: 0;
		padding: 0 20px 10px 20px;
		color: #6FA88E;
		font-size: 11px;
		font-weight: 500;
		letter-spacing: 0;
	}
	
	#pankuzu-top{
		margin: 0 0 30px 0;
		padding: 0 20px 10px 20px;
		border-bottom: 1px solid #DDDDDD;
	}
	
	#pankuzu span,
	#pankuzu-top span{
		margin: 0 5px;
	}
	
	#pankuzu a:link,
	#pankuzu-top a:link {
		color: #6FA88E;
		position: relative;
	}
	
	#pankuzu a:visited,
	#pankuzu-top a:visited{
		color: #6FA88E;
	}
	
	#pankuzu a:active,
	#pankuzu-top a:active,
	#pankuzu a:focus,
	#pankuzu-top a:focus {
		
	}
	
	#pankuzu a:hover,
	#pankuzu-top a:hover{
		color: #6FA88E;
	}
	
	#pankuzu a::after,
	#pankuzu-top a::after {
		content: '';
		position: absolute;
		bottom: -0.41vw;
		left: 0;
		width: 100%;
		height: 1px;
		background: #6FA88E;
		transition: all .3s;
		transform: scale(0, 1);
		transform-origin: left top;
	}
	
	#pankuzu a:hover::after,
	#pankuzu-top a:hover::after {
		transform: scale(1, 1);
	}

}

/* Small than tablet */
@media (min-width: 768px) {
	
	#pankuzu {
		margin: 0 4%;
		padding: 0 0 10px 10px;
		color: #6FA88E;
		font-size: 1.08vw;
		font-weight: 500;
		letter-spacing: 0;
	}
	
	#pankuzu-top {
		margin: 0 1% 4.16vw 3%;
		padding: 0 10px 8px 0;
		text-align: right;
		color: #6FA88E;
		font-size: 1.08vw;
		font-weight: 500;
		letter-spacing: 0;
	}
	
	#pankuzu span,
	#pankuzu-top span{
		margin: 0 0.83vw;
	}
	
	#pankuzu a::after,
	#pankuzu-top a::after {
		content: '';
		position: absolute;
		bottom: -0.41vw;
		left: 0;
		width: 100%;
		height: 1px;
		background: #6FA88E;
		transition: all .3s;
		transform: scale(0, 1);
		transform-origin: left top;
	}
	
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	
	
}

/*--------------------------------------------------------------
#sp-nav
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	#sp-nav.panelactive{
		position: fixed;
		z-index: 999;
		top: 0;
		width: 100%;
		height: 100vh;
	}
	
	.circle-bg{
		position: fixed;
		z-index: 3;
		width: 100px;
		height: 100px;
		border-radius: 50%;
		background-color: #6FA88E;
		transform: scale(0);
		right: -50px;
		top: -50px;
		transition: all .6s;
	}
	
	.circle-bg.circleactive{
		transform: scale(50);
	}

	#sp-nav-list{
		display: none;
		position: fixed;
		z-index: 999; 
		width: 100%;
		height: 100vh;
		background: url("../images/spbg.jpg") top 0 right -200% no-repeat;
		-webkit-background-size: 80% auto;
		background-size: 80% auto;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}
	
	#sp-nav.panelactive #sp-nav-list{
		display: block;
	}
	
	#sp-nav ul.modal {
		opacity: 0;
		margin: 80px 0 30px 0;
		padding: 0;
	}
	
	#sp-nav.panelactive ul {
		opacity:1;
	}

	#sp-nav.panelactive ul li,
	#sp-nav.panelactive #sp-nav-list,
	#sp-nav.panelactive .copy {
		animation-name: gnaviAnime;
		animation-duration:1s;
		animation-delay:.2s;
		animation-fill-mode:forwards;
		opacity:0;
	}
	
	#sp-nav li{
		list-style: none;
	}
	
	#sp-nav ul.modal li a {
		color: #FFF;
		text-decoration: none;
		padding: 15px 50px;
		display: block;
		text-transform: uppercase;
		letter-spacing: 0.1em;
		font-weight: bold;
	}
	
	#sp-linker {
		margin: 0 0;
	}
	
	#sp-linker .contact-linker ul {
		margin: 0 5% 30px 5%;
		padding: 0;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		flex-wrap: wrap;
	}
	
	#sp-linker .contact-linker ul li {
		width: 100%;
		border-radius: 10px;
		text-align: center;
		margin: 0 0 10px 0;
		transition: all .3s;
	}
	
	#sp-linker .contact-linker ul li a {
		display: block;
		padding: 10px 0;
		
	}
	
	#sp-linker .contact-linker ul li:first-child {
		background: #87C3A7;
		box-shadow: 0 0 1.66vw rgba(0, 0, 0, 0.1);
	}
	
	#sp-linker .contact-linker ul li dl {
		margin: 0;
		padding: 0;
		color: #FFF;
	}
	
	#sp-linker .contact-linker ul li dt {
		margin: 0;
		padding: 0;
		font-size: 15px;
		font-weight: 500;
		letter-spacing: 0.08vw;
	}
	
	#sp-linker .contact-linker ul li dd .material-symbols-outlined {
		font-variation-settings:
			'FILL' 0,
			'wght' 300,
			'GRAD' 0,
			'opsz' 24;
		font-size: 20px;
		vertical-align: -5px;
		margin: 0 0.41vw 0 0;
	}
	
	#sp-linker .contact-linker ul li dd {
		margin: 0;
		padding: 0;
		font-size: 20px;
		font-weight: 600;
		letter-spacing: 0.08vw;
	}
	
	#sp-linker .contact-linker ul li:last-child {
		background: #FFF;
		box-shadow: 0 0 1.66vw rgba(0, 0, 0, 0.1);
	}
	
	#sp-linker .contact-linker ul li:last-child .box {
		font-size: 15px;
		font-weight: 600;
		width: 100%;
		padding: 10px 0;
	}
	
	#sp-linker .contact-linker ul li:last-child .box .material-symbols-outlined {
		font-variation-settings:
			'FILL' 0,
			'wght' 300,
			'GRAD' 0,
			'opsz' 24;
		font-size: 23px;
		vertical-align: -5px;
		margin: 0 10px 0 0;
		color: #AE9371;
	}
	
	#sp-nav .copy{
		margin: 30px 0;
		font-size: 9px;
		text-align: center;
		color: #FFF;
	}
	
	
}

/* Small than tablet */
@media (min-width: 768px) {
	
	#sp-nav.panelactive{
		position: fixed;
		z-index: 999;
		top: 0;
		width: 100%;
		height: 100vh;
	}
	
	.circle-bg{
		position: fixed;
		z-index: 3;
		width: 100px;
		height: 100px;
		border-radius: 50%;
		background-color: #6FA88E;
		transform: scale(0);
		right: -50px;
		top: -50px;
		transition: all .6s;
	}
	
	.circle-bg.circleactive{
		transform: scale(50);
	}

	#sp-nav-list{
		display: none;
		position: fixed;
		z-index: 999; 
		width: 100%;
		height: 100vh;
		background: url("../images/spbg.jpg") center right no-repeat;
		-webkit-background-size: 50% auto;
		background-size: 50% auto;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}
	
	#sp-nav.panelactive #sp-nav-list{
		display: block;
	}
	
	#sp-nav ul.modal {
		opacity: 0;
		margin: 80px 0 30px 0;
		padding: 0;
	}
	
	#sp-nav.panelactive ul {
		opacity:1;
	}

	#sp-nav.panelactive ul li,
	#sp-nav.panelactive #sp-nav-list,
	#sp-nav.panelactive .copy {
		animation-name: gnaviAnime;
		animation-duration:1s;
		animation-delay:.2s;
		animation-fill-mode:forwards;
		opacity:0;
	}
	
	#sp-nav li{
		list-style: none;
	}
	
	#sp-nav ul.modal li a {
		color: #FFF;
		text-decoration: none;
		margin: 0 0 0 40px;
		padding: 15px 50px 15px 0 ;
		display: inline-block;
		text-transform: uppercase;
		letter-spacing: 0.1em;
		font-weight: bold;
		position: relative;
	}
	
	#sp-nav ul.modal li a::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 70%;
		height: 0.08vw;
		background: #FFF;
		transition: all .3s;
		transform: scale(0, 1);
		transform-origin: left top;
	}
	
	#sp-nav ul.modal li a:hover::after {
		transform: scale(1, 1);
	}
	
	#sp-linker {
		display: none;
	}
	
	
	
	#sp-nav .copy{
		margin: 0;
		font-size: 9px;
		text-align: center;
		color: #FFF;
		position: absolute;
		bottom: 20px;
		left: 20px;
	}
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	
	
}

@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}

/*--------------------------------------------------------------
.openbtn
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	.openbtn{
		position: fixed;
		top: 10px;
		right: 10px;
		z-index: 9999;
		cursor: pointer;
		width: 50px;
		height: 50px;
		background: #6FA88E;
		border-radius: 50%;
	}
	
	
	.openbtn span{
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 14px;
		height: 3px;
		border-radius: 2px;
		background-color: #FFF;
		width: 45%;
	}
	
	
	.openbtn span:nth-of-type(1){
		top:15px;	
	}
	
	.openbtn span:nth-of-type(2){
		top:23px;
	}

	.openbtn span:nth-of-type(3){
		top:31px;
	}
	
	.openbtn.active span:nth-of-type(1){
		top: 18px;
		left: 18px;
		transform: translateY(6px) rotate(-45deg);
		width: 30%;
	}
	
	.openbtn.active span:nth-of-type(2){
		opacity: 0;
	}
	
	.openbtn.active span:nth-of-type(3){
		top: 30px;
		left: 18px;
		transform: translateY(-6px) rotate(45deg);
		width: 30%;
	}
	
}

/* Small than tablet */
@media (min-width: 768px) {
	
	.openbtn{
		display: none;
	}
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	
	
}


/*--------------------------------------------------------------
.openbtn_pc
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	.openbtn_pc{
		top: 0;
	}
	
}

/* Small than tablet */
@media (min-width: 768px) {
	
	.openbtn_pc{
		position: fixed;
		top: -5vw;
		right: 0.83vw;
		z-index: 9999;
		cursor: pointer;
		width: 4.16vw;
		height: 4.16vw;
		background: #6FA88E;
		border-radius: 0.8vw;
		margin-top: 0.8vw;
	}
	
	.openbtn_pc span{
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 1.16vw;
		height: 0.25vw;
		border-radius: 0.16vw;
		background-color: #FFF;
		width: 45%;
	}
	
	.openbtn_pc span:nth-of-type(1){
		top: 1.25vw;	
	}
	
	.openbtn_pc span:nth-of-type(2){
		top: 1.91vw;
	}

	.openbtn_pc span:nth-of-type(3){
		top: 2.58vw;
	}
	
	.openbtn_pc.active span:nth-of-type(1){
		top: 1.5vw;
		left: 1.5vw;
		transform: translateY(0.5vw) rotate(-45deg);
		width: 30%;
	}
	
	.openbtn_pc.active span:nth-of-type(2){
		opacity: 0;
	}
	
	.openbtn_pc.active span:nth-of-type(3){
		top: 2.5vw;
		left: 1.5vw;
		transform: translateY(-0.5vw) rotate(45deg);
		width: 30%;
	}
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	
	
}

/*--------------------------------------------------------------
clearFix
--------------------------------------------------------------*/

.clearFix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clearFix {
	min-height: 1px;
}





/*--------------------------------------------------------------
@media
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	.pc {
		display: none;
	}
	

}

/* Small than tablet */
@media (min-width: 768px) {
	

	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	.pc {
		display: inherit;
	}
	
	.sp {
		display: none;
	}

}

/*--------------------------------------------------------------

	.button {
		display: inline-block;
		width: 200px;
		height: 54px;
		text-align: center;
		text-decoration: none;
		line-height: 54px;
		outline: none;
	}
	
	.button::before,
	.button::after {
		position: absolute;
		z-index: -1;
		display: block;
		content: '';
	}
	
	
	.button,
	.button::before,
	.button::after {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		-webkit-transition: all .3s;
		transition: all .3s;
	}
--------------------------------------------------------------*/
