@charset "UTF-8";
/* ------------------------------------------------
                    共通css
--------------------------------------------------- */
/*---------- group header ----------*/
.group-header {
	width: 100%;
    border-bottom: 5px solid var(--color-smbc-light-green);
    background: var(--color-smbc-green);
	position: relative;
	z-index: 999;
}
.group-header-inn {
	width: 90%;
	height: 60px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.group-header-logo {
	width: 120px;
}
.group-header-grouplogo {
	width: 80px;
}

/*
@media (max-width: 768px) {
	.group-header-inn {
		width: 94%;
		height: 46px;
		margin: 0 auto;
	}
	.group-header-logo {
		width: 90px;
	}
	.group-header-grouplogo {
		width: 65px;
	}
}*/


@media (max-width: 768px) {
	.group-header-inn {
		width: 94%;
		height: 9vw;
		margin: 0 auto;
	}
	.group-header-logo {
		width: 18vw;
	}
}


/*---------- header ----------*/
header {
    width: 100%;
	background: var(--color-white);
	position: sticky;
	top: 0;
	left: 0;
	z-index: 999;
    transition: 0.4s ease-in-out;
}
/*
header.is-sticky {
	background: var(--color-white);
}
*/
.header-inn {
    width: calc(100% - 100px);
    margin: 0 auto;
}


/* main navi */
.header-inn {
	height: 60px;
	align-items: center;
    transition: 0.3s ease-in-out;
}

.header-logo {
	width: 220px;
	margin-right: auto;
}


/* gnavi */
.header-navi-wrap {
	width: calc(100% - 240px);
}
.gnav-wrap {
    width: 100%;
}
.gnav-wrap ul#gnav {
    width: 100%;
    display: flex;
	justify-content: flex-end;
	align-items: center;
}
.gnav-wrap ul#gnav > li {
	padding: 5px 0;
	margin-left: 40px;
	position: relative;
}
.gnav-wrap ul#gnav > li:first-child {
	margin-left: 0;
}
.gnav-wrap ul#gnav > li:last-child {
	margin-left: 10px;
}
.gnav-wrap ul#gnav > li > a, 
.gnav-wrap ul#gnav > li > .is-trigger > a {
	width: auto;
	padding: 0;
	color: var(--color-black);
    display: block;
	text-align: center;
    font-size: 1.4rem;
	font-weight: 700;
    transition: 0.3s ease-in-out;
	box-sizing: border-box;
	line-height: 1;
}
.is-trigger a {
	display: block;
}
/* current */
.gnav-wrap ul#gnav > li.is-current {
	border-bottom: 2px solid var(--color-green);
}
.gnav-wrap ul#gnav > li.is-current > a, 
.gnav-wrap ul#gnav > li.is-current > .is-trigger > a {
	color: var(--color-green);
}

/* contact・document */
.gnav-wrap ul#gnav > li > a.btn-header-contact {
	width: 145px;
	padding: 8px 10px 8px 18px;
	background: var(--color-dark-green);
	border: 2px solid var(--color-dark-green);
	border-radius: 7px;
	color: var(--color-white);
    font-size: 1.2rem;
	text-align: center;
	line-height: 1;
	position: relative;
}
.gnav-wrap ul#gnav > li > a.btn-header-contact::before {
	content: '';
	width: 12px;
	height: 8px;
	background: url("../../img/common/icon_mail_w.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 4px);
	left: 15px;
} 
.gnav-wrap ul#gnav > li > a.btn-header-document {
	width: 150px;
	padding: 8px 10px 8px 18px;
	background: var(--color-white);
	border: 2px solid var(--color-dark-green);
	border-radius: 7px;
	color: var(--color-dark-green);
    font-size: 1.2rem;
	text-align: center;
	line-height: 1;
	position: relative;
}
.gnav-wrap ul#gnav > li > a.btn-header-document::before {
	content: '';
	width: 9px;
	height: 12px;
	background: url("../../img/common/icon_document_g.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 6px);
	left: 12px;
}

@media (min-width: 1101px) {
	.gnav-wrap {
		display: block !important;
	}
}




/* dropdown menu */
.dropdown-menu-wrap {
	width: max-content;
	min-width: 100%;
	background: #fff;
	position: absolute;
	top: calc(100% + 13px);
	left: 0;
	
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	
	transform: scaleY(0);
	transform-origin: center top;
}

.is-dropdown .is-trigger {
	height: 100%;
	display: flex;
	align-items: center;
	padding-right: 20px !important;
	position: relative;
	cursor: pointer;
}
.is-dropdown .is-trigger::after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-top: 8px solid var(--color-dark-green);
	border-right: 6px solid transparent;
	border-left: 6px solid transparent;
	position: absolute;
	top: calc(50% - 3px);
	right: 0;
	transition: 0.3s ease-in-out;
}

.is-trigger a {
	pointer-events: none;
}
.dropdown-menu-ttl  {
	border-bottom: 1px solid var(--color-light-gray);
}
.dropdown-menu-ttl:last-child { border-bottom: none;}
.dropdown-menu-ttl a {
	display: block;
	padding: 15px 36px 15px 15px;
	background: var(--color-white);
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1;
	position: relative;
}
.dropdown-menu-ttl a::after {
	content: '';
	width: 16px;
	height: 4px;
	background: url("../../img/common/icon_arrow_g.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 2px);
	right: 10px;
}


.btn-menu-wrap {
	display: none;
}


@media (max-width: 1300px) {
	.header-inn {
		width: 96%;
	}
	.gnav-wrap ul#gnav > li {
		margin-left: 2vw;
	}
}


@media (min-width: 1001px) {
	.dropdown-menu-wrap {
		display: block !important;
		transition: 0.3s ease-in-out;
	}

	.is-trigger.is-open::after,
	.is-dropdown:focus-within .is-trigger::after {
		transform: rotate(-180deg);
	}
	
	.dropdown-menu-wrap.is-show, 
	.is-open .dropdown-menu-wrap, 
	.is-dropdown:focus-within .dropdown-menu-wrap, 
	.dropdown-menu-wrap:focus-within {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: scaleY(1);
	}
}


@media (max-width: 1000px) {
	header {
		height: 60px;
	}
    .header-inn {
        width: 100%;
		height: 60px;
        max-width: initial;
        margin: 0 auto;
        padding: 0 0 0 5%;
		align-items: center;
		position: relative;
    }
    .is-sticky .header-inn {
        padding: 0 0 0 5%;
    }

	.header-logo {
		width: 280px;
		margin-right: 0;
	}
	.header-navi-wrap {
		width: auto;
	}

	
	/* 開閉ボタン */
	.btn-menu-wrap {
		width: 60px;
		height: 60px;
		display: block;
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		z-index: 2001;
		background: none;
		border: none;
	}
	.sp-menu-trigger {
		width: 45%;
		height: 100%;
		margin: 0 auto;
		padding: 0;
		display: block;
		position: relative;
		background: none;
		border: none;
	}
	.sp-menu-trigger span{
		display: block;
		height: 1px;
		background: var(--color-dark-green);
		position: absolute;
		width: 100%;
		left: 0;
		transition: 0.5s ease-in-out;	
	}
	.sp-menu-trigger span:nth-child(1){
		top: calc(50% - 15%);
	}
	.sp-menu-trigger span:nth-child(2){
		top: calc(50%);
	}
	.sp-menu-trigger span:nth-child(3){
		top: calc(50% + 15%);
	}

	
	/*開閉ボタンopen時*/
	.is-open.sp-menu-trigger span:nth-child(1) {
		top: 50%;
		transform: rotate(45deg);
	}
	.is-open.sp-menu-trigger span:nth-child(2) {
		opacity: 0;
	}
	.is-open.sp-menu-trigger span:nth-child(3) {
		top: 50%;
		transform: rotate(-45deg);
	}
	
	
	/* gnavi */
	.gnav-wrap {
        width: 100%;
        height: auto;
		display: none;
        padding: 0;
		background: rgba(255, 255, 255, 0.96);
        position: fixed;
        top: calc(65px + 60px);
        left: 0;
        z-index: 998;
		overflow: auto;
	}
    .is-sticky .gnav-wrap {
        top: 60px;
    }
	.gnav-wrap ul#gnav {
		width: 100%;
		padding: 0;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	.gnav-wrap ul#gnav > li {
		width: 100%;
		border-left: none;
		border-top: 1px solid var(--color-dark-green);
		margin-left: 0;
		padding: 0;
	}
	.gnav-wrap ul#gnav > li.header-btn {
		width: 50%;
		padding: 30px 0;
	}
	.gnav-wrap ul#gnav > li:last-child {
		margin-left: 0;
		border-top: none;
	}
	
	.gnav-wrap ul#gnav > li > a, 
	.gnav-wrap ul#gnav > li > .is-trigger > a {
		width: 100%;
		padding: 20px;
		display: block;
		text-align: left;
	}

	/* current */
	.gnav-wrap ul#gnav > li.is-current {
		border-bottom: none;
	}
	.gnav-wrap ul#gnav > li.is-current > a, 
	.gnav-wrap ul#gnav > li.is-current > .is-trigger > a {
		color: var(--color-dark-green);
	}

	/* contact・document */
	.gnav-wrap ul#gnav > li > a.btn-header-contact {
		width: 180px;
		margin: 20px auto;
	}
	.gnav-wrap ul#gnav > li > a.btn-header-document {
		width: 180px;
		margin: 0 auto 20px;
	}
	

	/* dropdown menu */
	.dropdown-menu-wrap {
		width: 100%;
		min-width: initial;
		display: none;
		padding: 0;
		background: none;
		border-top: none;
		opacity: 1;
		visibility: visible;
		transform: scaleY(1);
		pointer-events: auto;
		position: relative;
		top: auto;
		left: auto;
	}
	.dropdown-menu-wrap::before {
		content: none;
	}
	.is-dropdown .is-trigger {
		width: 100%;
		height: auto;
		display: block;
		padding-right: 0 !important;
		position: relative;
		cursor: pointer;
	}
	.is-dropdown .is-trigger::before {
		content: '';
		width: 1px;
		height: 14px;
		background: var(--color-black);
		position: absolute;
		top: calc(50% - 7px);
		right: calc(28px + 7px - 0.5px);
		transition: 0.3s ease-in-out;
	}
	.is-dropdown .is-trigger.is-open::before {
		opacity: 0;
	}
	.is-dropdown .is-trigger::after {
		content: '';
		width: 14px;
		height: 1px;
		background: var(--color-black);
		border: none;
		position: absolute;
		top: calc(50% - 0.5px);
		right: 28px;
		transition: 0.3s ease-in-out;
	}

	.dropdown-menu-ttl  {
		width: 100%;
		margin: 0 auto;
		border-top: 1px solid var(--color-white);
		border-bottom: none;
	}
	.dropdown-menu-ttl a {
		display: block;
		width: 100%;
		margin: 0 auto;
		padding: 20px 30px;
		color: var(--color-dark-green);
		background: var(--color-light-green);
		text-align: left;
		line-height: 1;
		position: relative;
	}
	.dropdown-menu-ttl a::after {
		content: '';
		width: 14px;
		height: 5px;
		background: url("../../img/common/icon_arrow_g.svg") center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 2.5px);
		right: 15px;
		transition: 0.3s ease-in-out;
	}
}

@media (max-width: 768px) {
	header {
		height: 10.66vw;
	}
    .header-inn {
        width: 100%;
		height: 10.66vw;
        max-width: initial;
        margin: 0 auto;
		position: relative;
    }

	.header-logo {
		width: 45.33vw;
		max-width: 340px;
	}


	
	
	/* 開閉ボタン */
	.btn-menu-wrap {
		width: 10.66vw;
		height: 10.66vw;
		display: block;
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		z-index: 2001;
		border: none;
	}
	
	
	/* gnavi */
    .gnav-wrap {
        width: 100%;
        height: auto;
		display: none;
        padding: 0 0 6vw;
        position: fixed;
        top: calc(9vw + 5px + 10.66vw);
        left: 0;
        z-index: 998;
		overflow: auto;
    }
    .is-sticky .gnav-wrap {
        top: 10.66vw;
    }
	
	.gnav-wrap ul#gnav {
		width: 100%;
		padding: 0;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.gnav-wrap ul#gnav > li {
		width: 100%;
		border-left: none;
		border-top: 1px solid var(--color-black);
		margin-left: 0;
	}
	.gnav-wrap ul#gnav > li.header-btn {
		width: 50%;
		padding: 4vw 0;
	}
	.gnav-wrap ul#gnav > li:last-child {
		margin-left: 0;
	}
	
	.gnav-wrap ul#gnav > li > a, 
	.gnav-wrap ul#gnav > li > .is-trigger > a {
		width: 100%;
		padding: 4vw;
		display: block;
		text-align: left;
		font-size: 3.2vw;
	}


	/* contact・document */
	.gnav-wrap ul#gnav > li > a.btn-header-contact {
		width: 90%;
		margin: 4vw auto 0;
		padding: 3vw 4.4vw;
		border-radius: 1.5vw;
		font-size: 3.6vw;
	}
	.gnav-wrap ul#gnav > li > a.btn-header-contact::before {
		content: '';
		width: 4vw;
		height: 3vw;
		background: url("../../img/common/icon_mail_w.svg") center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 1.5vw);
		left: 3vw;
	}
	.gnav-wrap ul#gnav > li > a.btn-header-document {
		width: 90%;
		margin: 4vw auto 0;
		padding: 3vw 4.4vw;
		border-radius: 1.5vw;
		font-size: 3.6vw;
	}
	.gnav-wrap ul#gnav > li > a.btn-header-document::before {
		content: '';
		width: 3vw;
		height: 4vw;
		background: url("../../img/common/icon_document_g.svg") center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 2vw);
		left: 3.5vw;
	}
	

	/* dropdown menu */
	.dropdown-menu-wrap {
		width: 100%;
		min-width: initial;
		display: none;
		padding: 0;
		background: none;
		border-top: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		position: relative;
		top: auto;
		left: auto;
	}
	.dropdown-menu-wrap::before {
		content: none;
	}

	.is-dropdown .is-trigger {
		width: 100%;
		height: auto;
		display: block;
		padding-right: 0 !important;
		position: relative;
		cursor: pointer;
	}
	.is-dropdown .is-trigger::before {
		content: '';
		width: 1px;
		height: 3vw;
		background: var(--color-black);
		position: absolute;
		top: calc(50% - 1.5vw);
		right: calc(6vw + 1.5vw - 0.5px);
		transition: 0.3s ease-in-out;
	}
	.is-dropdown .is-trigger.is-open::before {
		opacity: 0;
	}
	.is-dropdown .is-trigger::after {
		content: '';
		width: 3vw;
		height: 1px;
		background: var(--color-black);
		position: absolute;
		top: calc(50% - 0.5px);
		right: 6vw;
		transition: 0.3s ease-in-out;
	}

	.dropdown-menu-ttl  {
		width: 100%;
		margin: 0 auto;
	}
	.dropdown-menu-ttl a {
		display: block;
		width: 100%;
		margin: 0 auto;
		padding: 4vw 5vw;
		font-size: 3.0vw;
		text-align: left;
		line-height: 1;
		position: relative;
	}
	.dropdown-menu-ttl a::after {
		content: '';
		width: 3vw;
		height: 1vw;
		top: calc(50% - 0.5vw);
		right: 6vw;
	}


}


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

footer {
    width: 100%;
	padding: 40px 0 50px;
	background: var(--color-white);
	position: relative;
	z-index: 990;
}
a.footer-dx-link {
	margin: 0 auto 40px;
	align-items: center;
	justify-content: center;
	gap: 30px;
}
a.footer-dx-link img {
	width: 357px;
}
.footer-dx-link-ttl {
	color: var(--color-dark-green);
	margin-bottom: 20px;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.55;
}

footer .cont-inn {
	padding: 50px 0 0;
	border-top: 1px solid var(--color-line-gray);
	justify-content: space-between;
}

.footer-logo-wrap {
	width: 364px;
}
.footer-logo {
	width: 100%;
	display: block;
}

/* footer link */
.footer-link-wrap {
	width: auto;
	justify-content: flex-end;
}
.footer-link {
	width: auto;
	display: grid;
	gap: 15px 40px;
	grid-template-columns: repeat(3, auto);
}

.footer-link li a {
	font-size: 1.4rem;
	line-height: 1;
}

.footer-btn-area {
	margin-top: 25px;
	align-items: center;
	justify-content: flex-start;
}
a.btn-footer-contact {
	width: 150px;
	padding: 8px 10px 8px 18px;
	background: var(--color-dark-green);
	border: 2px solid var(--color-dark-green);
	border-radius: 7px;
	color: var(--color-white);
    font-size: 1.2rem;
	font-weight: 700;
	text-align: center;
	line-height: 1;
	position: relative;
}
a.btn-footer-contact::before {
	content: '';
	width: 12px;
	height: 8px;
	background: url("../../img/common/icon_mail_w.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 4px);
	left: 15px;
} 
a.btn-footer-document {
	width: 150px;
	margin: 0 20px 0 10px;
	padding: 8px 10px 8px 18px;
	background: var(--color-white);
	border: 2px solid var(--color-dark-green);
	border-radius: 7px;
	color: var(--color-dark-green);
    font-size: 1.2rem;
	font-weight: 700;
	text-align: center;
	line-height: 1;
	position: relative;
}
a.btn-footer-document::before {
	content: '';
	width: 9px;
	height: 12px;
	background: url("../../img/common/icon_document_g.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 6px);
	left: 12px;
}

a.btn-footer-x {
	width: 22px;
	display: block;
}

/* copyright */
.footer-copyright {
	margin-top: 25px;
	color: var(--color-gray);
	font-size: 1.2rem;
	line-height: 1;
}



@media (max-width: 768px) {
	footer {
		width: 100%;
		padding: 10vw 0;
	}
	a.footer-dx-link {
		margin: 0 auto 10vw;
		gap: 3vw;
	}
	a.footer-dx-link img {
		width: 80%;
		margin: 0 auto;
	}
	.footer-dx-link-ttl {
		margin-bottom: 3vw;
		font-size: 4.2vw;
		text-align: center;
	}
	.footer-dx-link-txt {
		font-size: 3.2vw;
	}

	footer .cont-inn {
		padding: 10vw 5% 0;
	}

	.footer-logo-wrap {
		width: 65.33vw;
		margin-bottom: 10vw;
	}
	.footer-logo {
		width: 100%;
		display: block;
	}

	/* footer link */
	.footer-link-wrap {
		width: 100%;
	}
	.footer-link {
		width: 100%;
		margin: 0 auto;
		display: flex;
		flex-wrap: wrap;
		gap: 4vw 0;
		grid-template-columns: none;
	}
	.footer-link li {
		width: 50%;
	}

	.footer-link li a {
		font-size: 3.0vw;
	}

	.footer-btn-area {
		margin-top: 5vw;
		align-items: center;
		justify-content: flex-start;
		flex-direction: column;
	}
	a.btn-footer-contact, 
	a.btn-footer-document {
		width: 100%;
		margin: 4vw auto 0;
		padding: 3vw 4.4vw;
		border-radius: 1.5vw;
		font-size: 3.6vw;
	}
	a.btn-footer-contact::before {
		content: '';
		width: 4vw;
		height: 3vw;
		background: url("../../img/common/icon_mail_w.svg") center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 1.5vw);
		left: 3vw;
	}
	a.btn-footer-document::before {
		content: '';
		width: 3vw;
		height: 4vw;
		background: url("../../img/common/icon_document_g.svg") center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 2vw);
		left: 3.5vw;
	}

	a.btn-footer-x {
		width: 8vw;
		margin: 4vw auto 0;
	}

	/* copyright */
	.footer-copyright {
		margin-top: 5vw;
		font-size: 2.8vw;
		text-align: center;
	}
}





/*---------- コンテンツ レイアウト ----------*/
.cont-inn {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.flex-box {
	display: flex;
	flex-wrap: wrap;
}

/* 背景 */
.bg-cream {
	background: var(--color-cream) !important;
}
.bg-light-green {
	background: var(--color-light-green) !important;
}

@media (max-width: 768px) {
    .cont-inn {
        width: 90%;
        max-width: initial;
        margin: 0 auto;
        position: relative;
    }
}




/*---------- テキスト ----------*/
.txt-jost {
	font-family: "Jost", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
}

.txt-indent {
	text-indent: -1em;
	padding-left: 1em;
	display: block;
}

.txt-dark-green {
	color: var(--color-dark-green);
}
.txt-blue {
	color: var(--color-blue);
}

/*---------- 見出し ----------*/
.sec-ttl {
	width: 100%;
	margin-bottom: 50px;
	padding-top: 25px;
	color: var(--color-dark-green);
	font-size: 3.6rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-align: center;
	position: relative;
}
.sec-ttl::before {
	content: '';
	width: 70px;
	height: 3px;
	background: var(--color-light-yellowgreen);
	position: absolute;
	top: 0;
	left: calc(50% - 35px);
}
.sec-ttl .fs-l {
	font-size: 5.0rem;
	line-height: 1;
}


@media (max-width: 768px) {
	.sec-ttl {
		width: 100%;
		margin-bottom: 10vw;
		padding-top: 4vw;
		font-size: 5.4vw;
	}
	.sec-ttl::before {
		content: '';
		width: 14vw;
		height: 3px;
		position: absolute;
		top: 0;
		left: calc(50% - 7vw);
	}
	.sec-ttl .fs-l {
		font-size: 7.8vw;
	}
}



/*---------- SNS ----------*/
.sec-sns {
	width: 100%;
	padding: 80px 0;
	position: relative;
}
.sns-txt {
	width: 100%;
	margin-bottom: 40px;
	color: var(--color-dark-green);
	font-size: 3.0rem;
	font-weight: 700;
	text-align: center;
	line-height: 2.16;
}
.btn-x {
	width: 120px;
	margin: 0 auto;
	border-radius: 10px;
	display: block;
	overflow: hidden;
}

@media (max-width: 768px) {
	.sec-sns {
		width: 100%;
		padding: 16vw 0;
		position: relative;
	}
	.sns-txt {
		width: 100%;
		margin-bottom: 4vw;
		font-size: 4.2vw;
		line-height: 1.8;
	}
	.btn-x {
		width: 20vw;
		border-radius: 2vw;
	}
}



/*---------- CTA ----------*/
a.link-normal {
	color: var(--color-dark-green);
	text-decoration: underline;
}

/* contact・document */
.btn-contact, 
a.btn-contact {
	width: 250px;
	padding: 16px 10px 16px 34px;
	display: block;
	background: var(--color-dark-green);
	border: 2px solid var(--color-dark-green);
	border-radius: 10px;
	color: var(--color-white);
    font-size: 1.9rem;
	font-weight: 700;
	text-align: center;
	line-height: 1;
	position: relative;
}
.btn-contact::before, 
a.btn-contact::before {
	content: '';
	width: 20px;
	height: 14px;
	background: url("../../img/common/icon_mail_w.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 7px);
	left: 20px;
}
.btn-document, 
a.btn-document {
	width: 250px;
	padding: 16px 10px 16px 34px;
	display: block;
	background: var(--color-white);
	border: 2px solid var(--color-dark-green);
	border-radius: 10px;
	color: var(--color-dark-green);
    font-size: 1.9rem;
	font-weight: 700;
	text-align: center;
	line-height: 1;
	position: relative;
}
.btn-document::before, 
a.btn-document::before {
	content: '';
	width: 15px;
	height: 19px;
	background: url("../../img/common/icon_document_g.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 9.5px);
	left: 15px;
}

/* ボタン 白 */
.btn-white, 
a.btn-white {
	width: 250px;
	padding: 16px 10px;
	display: block;
	background: var(--color-white);
	border-radius: 10px;
	color: var(--color-dark-green);
    font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
	line-height: 1;
	position: relative;
}
.btn-white::before, 
a.btn-white::before {
	content: '';
	width: 24px;
	height: 6px;
	background: url("../../img/common/icon_arrow_g.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 3px);
	right: 10px;
}

/* ボタン 緑 */
.btn-dark-green, 
a.btn-dark-green {
	width: 250px;
	padding: 16px 10px;
	display: block;
	background: var(--color-dark-green);
	border-radius: 10px;
	color: var(--color-white);
    font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
	line-height: 1;
	position: relative;
}
.btn-dark-green::before, 
a.btn-dark-green::before {
	content: '';
	width: 24px;
	height: 6px;
	background: url("../../img/common/icon_arrow_w.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 3px);
	right: 10px;
}


@media (max-width: 768px) {

	/* contact・document */
	.btn-contact, 
	a.btn-contact, 
	.btn-document, 
	a.btn-document {
		width: 90%;
		margin: 0 auto;
		padding: 3vw 4.4vw;
		border-radius: 1.5vw;
		font-size: 3.6vw;
	}
	.btn-contact::before, 
	a.btn-contact::before {
		content: '';
		width: 4vw;
		height: 3vw;
		background: url("../../img/common/icon_mail_w.svg") center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 1.5vw);
		left: 3vw;
	}
	.btn-document::before, 
	a.btn-document::before {
		content: '';
		width: 3vw;
		height: 4vw;
		background: url("../../img/common/icon_document_g.svg") center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 2vw);
		left: 3.5vw;
	}

	/* ボタン 白・緑 */
	.btn-white,  
	a.btn-white, 
	.btn-dark-green,
	a.btn-dark-green {
		width: 90%;
		padding: 3vw 4.4vw;
		border-radius: 1.5vw;
		font-size: 3.6vw;
	}
	.btn-white::before, 
	a.btn-white::before, 
	.btn-dark-green::before, 
	a.btn-dark-green::before {
		content: '';
		width: 5vw;
		height: 1.4vw;
		top: calc(50% - 0.7vw);
		right: 4vw;
	}
	
}




/*---------- CTA ----------*/
.sec-bottom-link {
	width: 100%;
	padding: 80px 0;
	position: relative;
}

.sec-bottom-link .cont-inn {
	gap: 60px;
}
.bottom-link-item {
	width: calc((100% - 60px) / 2);
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px;
	background: var(--color-white);
	border: 6px solid transparent;
	border-radius: 20px;
	position: relative;
}
.bottom-link-item::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: -6px;
	left: -6px;
	border: 6px solid transparent;
	border-radius: 20px;
	transition: 0.3s ease-in-out;
}
.bottom-link-item img {
	width: 80%;
	margin-bottom: 30px;
}
.bottom-link-txt {
	margin-bottom: 30px;
	color: var(--color-dark-green);
    font-size: 2.6rem;
	font-weight: 700;
	text-align: center;
}

@media (min-width: 769px) {
	
	.bottom-link-item:hover::before {
		border: 6px solid var(--color-dark-green);
		transition: 0.3s ease-in-out;
	}
	
}

@media (max-width: 768px) {
	.sec-bottom-link {
		width: 100%;
		padding: 16vw 0;
		position: relative;
	}

	.sec-bottom-link .cont-inn {
		gap: 8vw;
	}
	.bottom-link-item {
		width: 100%;
		padding: 6vw 5vw 8vw;
		border-radius: 4vw;
	}
	.bottom-link-item img {
		width: 70%;
		margin-bottom: 5vw;
	}
	.bottom-link-txt {
		margin-bottom: 5vw;
		font-size: 4.2vw;
	}
}


