@charset "utf-8";

/*====================================================================================

		basic layout

====================================================================================*/

body {
	background-color: #E9F5D3;
	color: var(--txt_black_01);
	font-family: "Zen Maru Gothic", serif;
	font-size: 14px;
	font-weight: 500;
	font-style: normal;
	font-feature-settings: "palt";
	line-height: 1.8;
	letter-spacing: 0.05em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body * {
	box-sizing: border-box;
}

.en {
	font-family: "Ysabeau SC", serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
}

.noto {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
}

.zen-kaku {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	font-style: normal;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
	image-rendering: -webkit-optimize-contrast;		/* for chrome */
	transition: all 0.3s;
}

a {
	border: none;
	color: var(--txt_black_01);
	text-decoration: none;
	transition: all .3s;
}

a:hover {
	/*filter: brightness(110%);*/
}

a.pc_not_tel {
	pointer-events: none;
	cursor: default;
}

em {
	font-style: normal;
	font-weight: bold;
}

.pc_none {
	display: none;
}

.sp_none {
	display: inline;
}

img.sp {
	display: none;
}

.marker {
	background-image: linear-gradient(#ffcffb, #ffcffb);
	background-size: 0 50%;
	background-position: 0 100%;
	background-repeat: no-repeat;
	transition: 1.5s;
}

.marker.active {
	background-size: 100% 50%;/
}


@media screen and (max-width: 768px){
	.sp_none {
		display: none;
	}
	
	.pc_none {
		display: inline;
	}
	
	img.pc {
		display: none;
	}
	
	img.sp {
		display: inline;
	}
	
	a.pc_not_tel {
		pointer-events: auto;
		cursor: pointer;
	}
}



/*------------------ clearfix layout ---------------------*/
.clearfix::after {
	content: "";
	display: block;
	clear: both;
}
/*
*:after {
	content: "";
	display:block;
	clear:both;
}
*/



/*------------------ fadein layout ---------------------*/
.fadein {
	opacity : 0;
	transform: translateY(10px);
	transition: all 1s;
}


/*------------------ arrow down layout ---------------------*/
.dummy_object::after {
	content: "";
	border-style: solid;
	border-width: 20px 20px 0 20px;
	border-color: #fff transparent transparent transparent;
	position: absolute;
	left: calc(50% - 10px);
	bottom: -40px;
}


/*------------------ flex layout ---------------------*/
.flex_space-between {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
}

.flex_center {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
}



/*------------------ set variable ---------------------*/
:root {
	--logo_green: #008C3E;
	--green_02: #25B167;
	--green_03: #BFDF67;
	--green_04: #E2F1C6;
	--light_green: #D8F3A3;
	--txt_black_01: #231815;
	--beige: #FFFBF2;
}

/*
hoge {
	color: var(--color_blue);
}
*/



/*------------------ SP scrollbar side ---------------------*/

@media screen and (max-width: 768px){
	.scroll-box {
		margin: 0 0 6vh;
		overflow-x: scroll;
	}
	
	.scroll-box::-webkit-scrollbar {
		height: 5px;
	}
	
	.scroll-box::-webkit-scrollbar-track {
		background: #ccc;
		border-radius: 5px;
	}
	
	.scroll-box::-webkit-scrollbar-thumb {
		background: #f00;
		border-radius: 5px;
	}
}



/*------------------ accordion icon ---------------------*/

.trigger::before,
.trigger::after {
	content: "";
	width: 15px;
	height: 2px;
	background-color: #A3BFCF;
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s;
}

.trigger::after {
	transform: translateY(-50%) rotate(90deg);
}

.trigger.selected::before {
	transform: translateY(-50%) rotate(180deg);
}

.trigger.selected::after {
	transform: translateY(-50%) rotate(360deg);
}



/*===============================================================

		form parts layout

===============================================================*/

form input[type="text"] {
	padding: 8px 10px;
	border: solid 1px #ddd;
	font-size: 16px;
}

form select {
	padding: 8px 10px;
	border: solid 1px #ddd;
	font-size: 16px;
}

form input::placeholder {
	color: #666;
}

form input[type="checkbox"] {
	margin-right: 10px;
}

form label:not(:last-of-type) {
	margin-right: 30px;
}

form textarea {
	padding: 8px 10px;
	border: solid 1px #ddd;
	font-size: 16px;
}

form input[type="submit"] {
	width: 224px;
	margin: 0 auto;
	padding: 10px 0;
	background: url("../img/icon_arrow01.png") right 20px center / auto no-repeat #fff;
	border: solid 2px #FF8228;
	border-radius: 30px;
	display: block;
	color: #FF8228;
	font-size: 14px;
	font-weight: bold;
	transition: all .3s;
}

form input[type="submit"]:hover {
	background: url("../img/icon_arrow02.png") right 20px center / auto no-repeat #FF8228;
	color: #fff;
}


/*---------- if IE ----------*/
@media all and (-ms-high-contrast:none) {
	*::-ms-backdrop, form input[type="submit"] {
		padding: 12px 0 8px;
	}
}


@media screen and (max-width: 768px){
	form input[type="text"] {
		-webkit-appearance: none;
		border-radius: 0;
	}
	
	form label:not(:last-of-type) {
		margin: 0 0 10px;
		display: inline-block;
	}
	
	form textarea {
		-webkit-appearance: none;
		border-radius: 0;
	}
	
	form input[type="submit"] {
		width: 60%;
		background: url("../img/icon_arrow01.png") right 15px center / auto no-repeat #fff;
	}
}



/*====================================================================================

		header layout

====================================================================================*/

header {
	position: relative;
}

header .wrapper {
	width: calc(100% - 40px);
	height: 80px;
	margin: 0 auto;
	padding: 0 min(60px, 3vw) 0 min(28px, 2vw);
	background-color: #fff;
	border-radius: 10px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	left: 20px;
	top: 25px;
	z-index: 1000;
}

header .wrapper .logo_area {
	display: flex;
	align-items: center;
}

header .wrapper .logo_area .logo {
	margin: 0 20px 0 0;
}

header .wrapper .logo_area ul {
	display: flex;
	align-items: center;
	gap: 0 13px;
}

header .wrapper .logo_area a:hover {
	opacity: 0.8;
}

header .wrapper ul.pc_nav {
	padding: 0 0 0 25px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 0 min(25px, 2vw);
	line-height: 1.0;
}

header .wrapper ul.pc_nav a {
	display: block;
	position: relative;
	font-weight: 700;
}

header .wrapper ul.pc_nav a:hover {
	color: var(--logo_green);
}

header .wrapper ul.pc_nav a::before {
	content: "";
	width: 100%;
	height: 2px;
	margin: auto;
	background: var(--logo_green);
	position: absolute;
	left: 0;
	bottom: -8px;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform .3s;
}

header .wrapper ul.pc_nav a:hover::before {
	transform: scale(1, 1);
}


@media screen and (max-width: 1000px){
	header .wrapper ul.pc_nav {
		flex-flow: row wrap;
		gap: 10px min(25px, 2vw);
	}
}


@media screen and (max-width: 768px){
	header .wrapper {
		width: 75%;
		height: 60px;
		margin: 0;
		padding: 0 4vw;
		left: 15px;
		top: 15px;
	}
	
	header .wrapper .logo_area {
		display: flex;
		align-items: center;
	}
	
	header .wrapper .logo_area .logo {
		margin: 0 20px 0 0;
	}
	
	header .wrapper .logo_area ul {
		display: flex;
		align-items: center;
		gap: 0 13px;
	}
	
	header .wrapper ul.pc_nav {
		display: none;
	}
}



/*===============================================================

		header nav layout

===============================================================*/

header .sp_nav {
	display: none;
}

header .drawer_button {
	display: none;
}


@media screen and (max-width: 768px){
	header .sp_nav {
		display: block;
	}
	
	/* .drawer_button */
	header .drawer_button {
		width: 50px;
		height: 50px;
		padding: 0;
		display: block;
		background: #fff;
		border: none;
		border-radius: 60px;
		box-shadow: 0px -6px 6px -3px rgba(0,0,0,0.2) inset;
		letter-spacing: 0.1em;
		cursor: pointer;
		position: fixed;
		right: 15px;
		bottom: 15px;
		z-index: 1001;
		text-align: center;
		outline: none;
		/*
		border-radius: 5px;
		right: 5px;
		top: 5px;
		*/
	}
	
	header .drawer_button.active {
		background: #fff;
		box-shadow: none;
	}
	
	header .drawer_button.active .drawer_close {
		display: block;
	}
	
	
	/* .drawer_bar */
	header .drawer_bar {
		display: block;
		width: 20px;
		height: 2px;
		margin: 5px auto;
		background: var(--logo_green);
		transition: all 0.2s;
		transform-origin: 50% 50%;
		position: relative;
	}
	
	header .drawer_button.active .drawer_bar {
		width: 20px;
		background: var(--logo_green);
	}
	
	header .drawer_button.active .drawer_bar1 {
		top: 7px;
		transform: rotate(45deg);
	}
	
	header .drawer_button.active .drawer_bar2 {
		opacity: 0;
	}
	
	header .drawer_button.active .drawer_bar3 {
		top: -7px;
		transform: rotate(-45deg);
	}
	
	
	/* .drawer_text */
	header .drawer_text {
		/*display: none;*/
		text-align: center;
		font-size: 10px;
		color: #fff;
		letter-spacing: -0.5px;
	}
	
	header .drawer_button.active .drawer_text {
		display: none;
	}
	
	header .drawer_button .drawer_close {
		display: none;
	}
	
	header .drawer_button.active .drawer_close {
		display: block;
	}
	
	
	/* .drawer_nav_wrapper */
	header .drawer_nav_wrapper {
		width: 100%;
		height: 100%;
		margin: 0;
		padding: 0;
		
		box-sizing: border-box;
		background-color: transparent;
		display: block;
		transform: none;
		
		pointer-events: none;
		transition: opacity 0.3s linear;
		opacity: 0;
		position: fixed;
		left: 0;
		top: 0;
		z-index: 1000;
		overflow: none;
		-webkit-overflow-scrolling: touch;
	}
	
	header .drawer_nav_wrapper.open {
		pointer-events: auto;
		opacity: 1;
	}
	
	header .drawer_nav_wrapper .inner {
		/*width: 92%;*/
		width: calc(100% - 30px);
		height: 85%;
		margin: 0;
		padding: 5vw 0 0;
		background: #fff;
		border-radius: 25px;
		display: flex;
		flex-flow: column nowrap;
		justify-content: space-between;
		position: absolute;
		/*top: 90px;*/
		/*right: 4%;*/
		bottom: 15px;
		right: 15px;
		overflow: hidden;
	}
	
	header .drawer_nav_wrapper .inner .nav_box {
		margin: 0 0 5vw;
		overflow-y: scroll;
	}
	
	
	/* ul.drawer_nav */
	header ul.drawer_nav {
		/*margin: 60px 0 0;*/
		width: 100%;
		height: 100%;
		margin: 0;
		padding: 0 5vw;
	}
	
	header ul.drawer_nav li {
		width: 100%;
		margin: 0;
		line-height: 1.0;
	}
	
	header ul.drawer_nav li a {
		width: 100%;
		margin: 0;
		padding: 5vw 0;
		border-bottom: solid 1px #DBDCDC;
		display: block;
		position: relative;
		color: var(--txt_black_01);
		font-size: 3.77vw;
		font-weight: 700;
	}
	
	header ul.drawer_nav li a::after {
		content: "";
		width: 12px;
		height: 11px;
		background: url("../img/icon_arrow01.svg") left top / cover no-repeat;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		transition: all 0.3s;
	}
	
	header ul.drawer_nav li a span {
		margin: 0 0 0 12px;
		display: inline-block;
		color: var(--logo_green);
		font-size: 3.0vw;
	}
	
	header ul.drawer_nav li ul.sub {
		padding: 4vw 0 2vw;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	
	header ul.drawer_nav li ul.sub li {
		width: 50%;
	}
	
	header ul.drawer_nav li ul.sub li a {
		background: url("../img/icon_dots01.svg") left center / auto no-repeat;
		padding: 4vw 0 4vw 20px;
		border-bottom: none;
	}
	
	header ul.drawer_nav li ul.sub li a::after {
		display: none;
	}
	
	
	header .drawer_nav_wrapper .inner p {
		width: 90%;
		margin: 0 0 0 2vw;
		border-radius: 0 0 0 25px;
		display: flex;
		align-items: center;
		gap: 0 10px;
		position: relative;
	}
	
	header .drawer_nav_wrapper .inner p::before {
		content: "";
		width: 77px;
		height: 69px;
		background: url("../img/character01.png") center top / 100% auto no-repeat;
		position: relative;
	}
	
	header .drawer_nav_wrapper .inner p span {
		padding: 5px 10px;
		background-color: var(--light_green);
		border-radius: 25px;
		color: var(--logo_green);
		font-size: 3.35vw;
		font-weight: 700;
		line-height: 1.0;
	}
}





/*====================================================================================

		.float_banner layout

====================================================================================*/

.float_banner {
	width: 483px;
	height: 80px;
	padding: 0 15px 0 25px;
	background-color: #fff;
	border-radius: 20px;
	box-shadow: 0px 1px 10px 0px rgba(0,0,0,0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	z-index: 999;
	right: 20px;
	bottom: 20px;
	line-height: 1.0;
}

.float_banner dl.tel {
	width: 52%;
}

.float_banner dl.tel dt {
	margin: 0 0 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 26px;
	font-weight: 700;
	gap: 0 20px;
}

.float_banner dl.tel dt img {
	width: auto;
	height: 26px;
}

.float_banner dl.tel dd {
	font-size: 12px;
}

.float_banner p.btn_contact {
	width: 200px;
}

.float_banner p.btn_contact a {
	width: 100%;
	height: 46px;
	background-color: var(--logo_green);
	border-radius: 50px;
	box-shadow: 0 4px 4px rgba(92, 255, 71,0.2) inset,
				0px 1px 10px 0px rgba(0,0,0,0.1);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 0 10px;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
}

.float_banner p.btn_contact a:hover {
	opacity: 0.8;
}

.float_banner p.btn_contact a img {
	width: 24px;
}


@media screen and (max-width: 768px){
	.float_banner {
		width: auto;
		height: auto;
		padding: 0;
		background-color: transparent;
		border-radius: 0;
		box-shadow: none;
		display: block;
		position: static;
		line-height: 1.0;
	}
	
	.float_banner dl.tel {
		display: none;
	}
	
	.float_banner p.btn_contact {
		width: auto;
	}
	
	.float_banner p.btn_contact a {
		width: 180px;
		box-shadow: 0 4px 4px rgba(92, 255, 71,0.2) inset;
		position: fixed;
		z-index: 999;
		right: 80px;
		bottom: 20px;
		font-size: min(15px, 3.5vw);
	}
}





/*====================================================================================

		link effect "circle - arrow" layout

====================================================================================*/

.outer-circle {
	width: 24px;
	height: 24px;
	background-color: #fff;
	border: solid 1px #DBDCDC;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	transition: background-color 0.3s ease;
}

.outer-circle .inner-circle {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--logo_green);
	position: absolute;
	transition: all 0.4s ease;
}

.outer-circle .arrow {
	width: 12px;
	height: 12px;
	position: absolute;
	opacity: 0;
	color: #fff;
	transition: opacity 0.3s ease, transform 0.4s ease;
	transform: translateX(-6px);	/* mark 動き */
}

a:hover .outer-circle {
	background-color: var(--logo_green);
}

a:hover .outer-circle .inner-circle {
	width: 24px;	/* mark 動き */
	height: 24px;	/* mark 動き */
	background-color: transparent;
}

a:hover .outer-circle .arrow {
	opacity: 1;
	transform: translateX(0);	/* mark 動き */
}


@media screen and (max-width: 768px){
	.outer-circle {
		background-color: var(--logo_green);
	}
	
	.outer-circle .inner-circle {
		display: none;
	}
	
	.outer-circle .arrow {
		opacity: 1;
		transform: translateX(0);
	}
	
	a:hover .outer-circle {
		background-color: var(--logo_green);
	}
	
	a:hover .outer-circle .inner-circle {
		width: 6px;
		height: 6px;
		background-color: var(--logo_green);
	}
	
	a:hover .outer-circle .arrow {
		opacity: 1;
		transform: translateX(0);
	}
}





/*====================================================================================

		link effect "arrow_01" layout

====================================================================================*/

.arrow_01 {
	width: 28px;
	height: 28px;
	background-color: var(--logo_green);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
	overflow: hidden;
	transition: all 0.3s ease;
}

.arrow_01 .arrow {
	width: 14px;
	height: 14px;
	position: absolute;
	z-index: 2;
}

a:hover .arrow_01 {
	transform: translateX(6px);
}





/*====================================================================================

		.swiper layout

====================================================================================*/

.swiper-slide img {
	width: 100%;
	height: auto;
}

.swiper-button-prev .arrow_01,
.swiper-button-next .arrow_01 {
	width: 60px;
	height: 60px;
}

.swiper-button-prev .arrow_01 {
	transform: rotate(180deg);
}

.swiper-button-next .arrow_01 {
	
}

.swiper-button-prev .arrow_01 .arrow,
.swiper-button-next .arrow_01 .arrow {
	width: 24px;
	height: 24px;
}

@media screen and (max-width: 768px){
	.swiper-button-prev .arrow_01,
	.swiper-button-next .arrow_01 {
		width: 40px;
		height: 40px;
	}
	
	.swiper-button-prev .arrow_01 .arrow,
	.swiper-button-next .arrow_01 .arrow {
		width: 20px;
		height: 20px;
	}
}





/*====================================================================================

		#contents layout

====================================================================================*/

#contents {

}

#contents section .inner,
#contents div .inner {
	max-width: 1080px;
	margin: 0 auto;
}

#contents .sub {
	font-size: 0.75em;
	vertical-align: sub;
}


@media screen and (max-width: 768px){
	#contents section .inner,
	#contents div .inner {
		max-width: inherit;
	}
}



/*===============================================================

		#contents .main_img layout

===============================================================*/

#contents .main_img {
	height: 363px;
	padding: 146px 20px 0;
	background: url("../img/main_bg02.png") center bottom / cover no-repeat;
}

#contents .main_img .inner {
	max-width: 1080px;
	margin: 0 auto;
}

#contents .main_img .inner h2 {
	text-align: center;
	color: #fff;
	font-size: min(45px, 4.5vw);
	font-weight: 700;
	line-height: 1.4;
}

#contents .main_img .inner h2 .en {
	margin: 0 0 10px;
	display: block;
	font-size: min(30px, 3.0vw);
	font-weight: 800;
	line-height: 1.0;
}


@media screen and (max-width: 768px){
	#contents .main_img {
		height: auto;
		padding: 100px 20px 14%;
		background: url("../img/sp/main_bg02.png") center bottom / cover no-repeat;
	}
	
	#contents .main_img .inner {
		max-width: inherit;
	}
	
	#contents .main_img .inner h2 {
		color: #fff;
		font-size: min(45px, 6vw);
		font-weight: 700;
		line-height: 1.4;
	}
	
	#contents .main_img .inner h2 .en {
		margin: 0 0 10px;
		display: block;
		font-size: min(30px, 3.0vw);
		font-weight: 800;
		line-height: 1.0;
	}
}



/*===============================================================

		#contents .btn_01 layout

===============================================================*/

#contents .btn_01 {
	width: 270px;
}

#contents .btn_01 a {
	width: 100%;
	padding: 15px 15px 18px 40px;
	background-color: #fff;
	border: solid 1px var(--logo_green);
	border-radius: 50px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 0 15px;
	color: var(--logo_green);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.0;
}


@media screen and (max-width: 768px){
	#contents .btn_01 {
		width: 80%;
		margin: 0 auto;
	}
	
	#contents .btn_01 a {
		text-align: center;
		font-size: 3.7vw;
	}
}



/*===============================================================

		#contents .roop_products layout

===============================================================*/

#contents .roop_products {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
}

#contents .roop_products .swiper-wrapper {
	align-items: center;
	transition-timing-function: linear;
}

#contents .roop_products .swiper-slide {
	width: auto;
	height: 254px;
}

#contents .roop_products .swiper-slide img {
	width: auto;
	height: 100%;
}


@media screen and (max-width: 768px){
	#contents .roop_products {
		display: none;
	}
	
	#contents .roop_products .swiper-slide {
		width: auto;
		height: auto;
	}
	
	#contents .roop_products .swiper-slide img {
		width: 100%;
		height: auto;
	}
}






/*====================================================================================

		footer layout

====================================================================================*/

footer {
	margin: 120px 0 0;
	padding: 10% 0 0;
	background: url("../img/footer_bg.png") left top / 100% auto no-repeat var(--green_03);
	position: relative;
}

footer .page_top {
	position: absolute;
	right: 50px;
	top: -43px;
	z-index: 100;
}

footer .page_top a {
	width: 142px;
	height: 142px;
	background-color: var(--light_green);
	border-radius: 50%;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	text-align: center;
}

footer .page_top a span {
	color: var(--logo_green);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.0;
	transform: translate(2px, 63px);
	transition: all 0.3s;
}

footer .page_top a::after {
	content: "";
	width: 115px;
	height: 138px;
	background: url("../img/page_top.png") left top / 100% auto no-repeat;
	display: block;
	transform: translate(15px, 90px);
	transition: all 0.3s;
}

footer .page_top a:hover span {
	transform: translate(2px, 30px);
}

footer .page_top a:hover::after {
	transform: translate(15px, 40px);
}


@media screen and (max-width: 768px){
	footer {
		margin: 12vh 0 0;
		padding: 25% 0 0;
		background: url("../img/sp/footer_bg.png") left top / 100% auto no-repeat var(--green_03);
		position: relative;
	}
	
	footer .page_top {
		position: absolute;
		right: 20px;
		top: -20px;
		z-index: 100;
	}
	
	footer .page_top a {
		width: 110px;
		height: 110px;
	}
	
	footer .page_top a span {
		font-size: min(14px, 3.2vw);
		transform: translate(2px, 20px);
	}
	
	footer .page_top a::after {
		width: 90px;
		height: 114px;
		transform: translate(12px, 25px);
	}
	
	footer .page_top a:hover span {
		transform: translate(1px, 20px);
	}
	
	footer .page_top a:hover::after {
		transform: translate(12px, 25px);
	}
}



/*===============================================================

		footer .contact_area layout

===============================================================*/

footer .contact_area {
	margin: 10px 0 60px;
	padding: 0 40px;
}

footer .contact_area .inner {
	max-width: 1080px;
	margin: 0 auto;
	padding: 50px 40px 60px;
	background-color: var(--beige);
	border-radius: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 min(35px, 3vw);
}

footer .contact_area .inner .detail {
	/*width: 60.0%;
	max-width: 646px;*/
}

footer .contact_area .inner .detail h4 {
	margin: 0 0 25px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 24px;
	font-weight: 900;
	line-height: 1.4;
	letter-spacing: 0;
}

footer .contact_area .inner .detail h4::before {
	content: "";
	width: 32px;
	height: 32px;
	margin: 3px 10px 0 0;
	background: url("../img/vector01.svg") left top / cover no-repeat;
	display: inline-block;
}

footer .contact_area .inner .detail h4::after {
	content: "";
	width: 32px;
	height: 32px;
	margin: 3px 0 0 10px;
	background: url("../img/vector02.svg") left top / cover no-repeat;
	display: inline-block;
}

footer .contact_area .inner .detail ul {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	gap: 0 min(30px, 2vw);
}

footer .contact_area .inner .detail ul li.mail {
	width: 45%;
	max-width: 290px;
	position: relative;
	line-height: 1.0;
}

footer .contact_area .inner .detail ul li.mail .catch {
	padding: 3px 10px 5px;
	background-color: var(--logo_green);
	border-radius: 20px;
	display: inline-block;
	position: relative;
	z-index: 2;
	color: #fff;
	font-size: min(16px, 1.6vw);
	font-weight: 700;
	letter-spacing: 0.1em;
}

footer .contact_area .inner .detail ul li.mail a {
	width: 100%;
	margin: -12px 0 0;
	padding: 30px 10px 30px;
	background-color: #fff;
	border: solid 2px var(--logo_green);
	border-radius: 8px;
	position: relative;
	z-index: 1;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 0 9px;
}

footer .contact_area .inner .detail ul li.mail a svg {
	position: relative;
	z-index: 2;
	transition: all 0.3s;
}

footer .contact_area .inner .detail ul li.mail a:hover path  {
	stroke: #ffffff;
	fill: #008C3E;
}

footer .contact_area .inner .detail ul li.mail a::after {
	content: "";
	width: 0;
	height: 100%;
	background: var(--logo_green);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	transition: all 0.3s;
}

footer .contact_area .inner .detail ul li.mail a:hover::after {
	width: 100%;
}

footer .contact_area .inner .detail ul li.mail a span {
	display: block;
	position: relative;
	z-index: 2;
	color: var(--logo_green);
	font-size: min(20px, 2vw);
	font-weight: 900;
	letter-spacing: 0;
	transition: all 0.3s;
}

footer .contact_area .inner .detail ul li.mail a:hover span {
	color: #fff;
}


footer .contact_area .inner .detail ul li.tel {
	width: 52%;
	max-width: 330px;
	text-align: left;
	line-height: 1.0;
}

footer .contact_area .inner .detail ul li.tel a {
	display: block;
	font-size: min(46px, 4vw);
	font-weight: 900;
	letter-spacing: 0;
}

footer .contact_area .inner .detail ul li.tel a .txt {
	padding: 0 5px 0 0;
	display: inline-block;
	font-size: min(24px, 2vw);
}

footer .contact_area .inner .detail ul li.tel a img {
	display: none;
}

footer .contact_area .inner .detail ul li.tel .hours {
	margin: 10px 0 0;
	display: block;
	font-size: min(13px, 1.3vw);
}


footer .contact_area .inner p.img {
	width: 205px;
}


@media screen and (max-width: 768px){
	footer .contact_area {
		margin: 10px 0 5vh;
		padding: 0 20px;
	}
	
	footer .contact_area .inner {
		max-width: inherit;
		padding: 6vh 6vw 3vh;
		display: block;
	}
	
	footer .contact_area .inner .detail {
		
	}
	
	footer .contact_area .inner .detail h4 {
		font-size: min(24px, 4.5vw);
	}
	
	footer .contact_area .inner .detail h4::before,
	footer .contact_area .inner .detail h4::after {
		display: none;
	}
	
	footer .contact_area .inner .detail ul {
		display: block;
	}
	
	footer .contact_area .inner .detail ul li.mail {
		width: auto;
		max-width: inherit;
		margin: 0 0 30px;
	}
	
	footer .contact_area .inner .detail ul li.mail .catch {
		padding: 5px 15px 7px;
		border-radius: 30px;
		font-size: min(20px, 4vw);
	}
	
	footer .contact_area .inner .detail ul li.mail a {
		margin: -15px 0 0;
		padding: 30px 10px 25px;
		border-radius: 60px;
	}
	
	footer .contact_area .inner .detail ul li.mail a:hover path  {
		stroke: #008C3E;
		fill: #fff;
	}
	
	footer .contact_area .inner .detail ul li.mail a::after {
		display: none;
	}
	
	footer .contact_area .inner .detail ul li.mail a span {
		font-size: min(24px, 4.5vw);
	}
	
	footer .contact_area .inner .detail ul li.mail a:hover span {
		color: var(--logo_green);
	}
	
	
	footer .contact_area .inner .detail ul li.tel {
		width: auto;
		max-width: inherit;
		margin: 0 0 20px;
		text-align: center;
		line-height: 1.0;
	}
	
	footer .contact_area .inner .detail ul li.tel a {
		display: inline-flex;
		align-items: center;
		gap: 0 10px;
		font-size: min(46px, 9vw);
		font-weight: 900;
		letter-spacing: 0;
	}
	
	footer .contact_area .inner .detail ul li.tel a .txt {
		display: none;
	}
	
	footer .contact_area .inner .detail ul li.tel a img {
		width: 3.5vw;
		display: inline-block;
		transform: translateY(4px);
	}
	
	footer .contact_area .inner .detail ul li.tel .hours {
		margin: 10px 0 0;
		display: block;
		font-size: min(13px, 3vw);
	}
	
	
	footer .contact_area .inner p.img {
		width: 60%;
		max-width: 205px;
		margin: 0 auto;
	}
}



/*===============================================================

		footer .footer_contents .contact_area layout

===============================================================*/

footer .footer_contents {
	padding: 10px 20px 60px;
}

footer .footer_contents .inner {
	max-width: 1080px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	gap: 0 min(40px, 3vw);
}

footer .footer_contents .inner .detail {
	width: 43.518%;
	max-width: 470px;
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
}

footer .footer_contents .inner .detail ul {
	margin: 0 0 40px;
	display: flex;
	align-items: center;
	gap: 0 35px;
}

footer .footer_contents .inner .detail ul li:nth-child(2) img {
	width: 158px;
}

footer .footer_contents .inner .detail ul + p {
	font-size: 14px;
	letter-spacing: 0;
}

footer .footer_contents .inner .detail p.copy {
	font-size: 12px;
	letter-spacing: 0;
}


footer .footer_contents .inner .footer_nav {
	width: 45.185%;
	max-width: 380px;
}

footer .footer_contents .inner .footer_nav ul {
	
}

footer .footer_contents .inner .footer_nav ul li {
	line-height: 1.0;
}

footer .footer_contents .inner .footer_nav ul li a {
	width: 100%;
	margin: 0;
	padding: 20px 0;
	border-bottom: solid 1px #fff;
	position: relative;
	display: block;
	color: var(--txt_black_01);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0;
}

footer .footer_contents .inner .footer_nav ul li a::after {
	content: "";
	width: 12px;
	height: 11px;
	background: url("../img/icon_arrow01.svg") left top / cover no-repeat;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s;
}

footer .footer_contents .inner .footer_nav ul li a:hover::after {
	transform: scale(1.4) translateY(-50%);
	transform-origin: left top;
}

footer .footer_contents .inner .footer_nav ul li a span {
	margin: 0 0 0 12px;
	display: inline-block;
	color: var(--logo_green);
	font-size: 12px;
}

footer .footer_contents .inner .footer_nav ul li ul.sub {
	padding: 15px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

footer .footer_contents .inner .footer_nav ul li ul.sub li {
	width: 50%;
}

footer .footer_contents .inner .footer_nav ul li ul.sub li a {
	padding: 15px 0 15px 30px;
	border-bottom: none;
	display: inline-flex;
	align-items: center;
	gap: 0 10px;
	transition: all 0.3s;
}

footer .footer_contents .inner .footer_nav ul li ul.sub li a::after {
	display: none;
}

footer .footer_contents .inner .footer_nav ul li ul.sub li a .outer-circle {
	width: 15px;
	height: 15px;
	position: absolute;
	left: 0;
	top: calc(50% - 7px);
}

footer .footer_contents .inner .footer_nav ul li ul.sub li a .outer-circle .inner-circle {
	width: 5px;
	height: 5px;
}

footer .footer_contents .inner .footer_nav ul li ul.sub li a .outer-circle .arrow {
	width: 12px;
	height: 12px;
}

footer .footer_contents .inner .footer_nav ul li ul.sub li a:hover .outer-circle {
	width: 22px;
	height: 22px;
	top: calc(50% - 10px);
}

footer .footer_contents .inner .footer_nav ul li ul.sub li a:hover .outer-circle .inner-circle {
	width: 22px;
	height: 22px;
}


@media screen and (max-width: 768px){
	footer .footer_contents {
		padding: 10px 0 8vh;
	}
	
	footer .footer_contents .inner {
		max-width: inherit;
		flex-flow: column-reverse nowrap;
		justify-content: flex-start;
		gap: 0 min(40px, 3vw);
	}
	
	footer .footer_contents .inner .detail {
		width: auto;
		max-width: inherit;
		padding: 0 30px;
	}
	
	footer .footer_contents .inner .detail ul {
		margin: 0 0 40px;
		justify-content: center;
		gap: 0 min(20px, 4vw);
	}
	
	footer .footer_contents .inner .detail ul li:nth-child(1) {
		width: 50%;
	}
	
	footer .footer_contents .inner .detail ul li:nth-child(2) {
		width: 30%;
	}
	
	footer .footer_contents .inner .detail ul li:nth-child(2) img {
		width: 100%;
	}
	
	footer .footer_contents .inner .detail ul + p {
		font-size: 3.4vw;
	}
	
	footer .footer_contents .inner .detail p.copy {
		margin: 2vh 0 0;
		font-size: 3.0vw;
	}
	
	
	footer .footer_contents .inner .footer_nav {
		width: auto;
		max-width: inherit;
		margin: 0 0 8vh;
		padding: 0 40px;
	}
	
	footer .footer_contents .inner .footer_nav ul li {
		line-height: 1.0;
	}
	
	footer .footer_contents .inner .footer_nav ul li a {
		font-size: 3.7vw;
	}
	
	footer .footer_contents .inner .footer_nav ul li a:hover::after {
		transform: scale(1.0) translateY(-50%);
	}
	
	footer .footer_contents .inner .footer_nav ul li a span {
		font-size: 3.0vw;
	}
	
	footer .footer_contents .inner .footer_nav ul li ul.sub li a {
		padding: 15px 0 15px 6vw;
	}
	
	footer .footer_contents .inner .footer_nav ul li ul.sub li a .outer-circle {
		width: 14px;
		height: 14px;
		top: calc(50% - 7px);
	}
	
	footer .footer_contents .inner .footer_nav ul li ul.sub li a .outer-circle .arrow {
		width: 8px;
		height: 8px;
	}
	
	footer .footer_contents .inner .footer_nav ul li ul.sub li a:hover .outer-circle {
		width: 14px;
		height: 14px;
		top: calc(50% - 7px);
	}
	
	footer .footer_contents .inner .footer_nav ul li ul.sub li a:hover .outer-circle .inner-circle {
		width: 14px;
		height: 14px;
	}
}



/*===============================================================

		footer .sizgas_group layout

===============================================================*/

footer .sizgas_group {
	padding: 60px 20px 140px;
	background-color: #fff;
	line-height: 1.0;
}

footer .sizgas_group p {
	margin: 0 0 35px;
	text-align: center;
}

footer .sizgas_group p a:hover {
	opacity: 0.8;
}

footer .sizgas_group ul {
	display: flex;
	justify-content: center;
	gap: 0 1em;
}
/*
footer .sizgas_group ul li a {
	font-size: 12px;
}

footer .sizgas_group ul li a:hover {
	color: var(--logo_green);
	text-decoration: underline;
}
*/

footer .sizgas_group ul li a {
	display: block;
	position: relative;
	font-size: 12px;
}

footer .sizgas_group ul li a:hover {
	color: var(--logo_green);
}

footer .sizgas_group ul li a::before {
	content: "";
	width: 100%;
	height: 1px;
	margin: auto;
	background: var(--logo_green);
	position: absolute;
	left: 0;
	bottom: -8px;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform .3s;
}

footer .sizgas_group ul li a:hover::before {
	transform: scale(1, 1);
}


@media screen and (max-width: 768px){
	footer .sizgas_group {
		padding: 6vh 20px 100px;
	}
	
	footer .sizgas_group ul {
		flex-flow: row wrap;
		justify-content: flex-start;
		gap: 1em;
	}
	
	footer .sizgas_group ul li a {
		font-size: 3vw;
	}
	
	footer .sizgas_group ul li a:hover {
		color: var(--txt_black_01);
	}
	
	footer .sizgas_group ul li a::before {
		display: none;
	}
}