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

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


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


/* main navi */
.header-inn {
	padding: 40px 0;
	align-items: center;
    transition: 0.3s ease-in-out;
}
.is-sticky .header-inn {
	padding: 20px 0;
}

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


/* gnavi */
.gnav-wrap {
	width: calc(100% - 330px);
}
.gnav-wrap ul#gnav {
    width: 100%;
    display: flex;
	justify-content: flex-end;
	align-items: center;
}
.gnav-wrap ul#gnav > li {
	margin-left: 20px;
	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: 120px;
	padding: 0;
	color: var(--color-black);
    display: block;
	text-align: center;
    font-size: 1.5rem;
    transition: 0.3s ease-in-out;
	box-sizing: border-box;
	line-height: 1;
}
.is-trigger a {
	display: block;
}

/* contact・document */
.gnav-wrap ul#gnav > li > a.btn-header-contact, 
.gnav-wrap ul#gnav > li > a.btn-header-document {
	width: 150px;
	padding: 12px 22px;
	background: var(--color-black);
	border-radius: 50px;
	color: #fff;
	text-align: left;
	position: relative;
}
.gnav-wrap ul#gnav > li > a.btn-header-contact::after {
	content: '';
	width: 17px;
	height: 14px;
	background: url("../../img/common/icon_contact.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 7px);
	right: 20px;
}
.gnav-wrap ul#gnav > li > a.btn-header-document::after {
	content: '';
	width: 14px;
	height: 18px;
	background: url("../../img/common/icon_document.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 9px);
	right: 22px;
}

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

/* dropdown menu */
.dropdown-menu-wrap {
	width: 200px;
	padding: 0;
	background: #fff;
	position: absolute;
	top: calc(100% + 30px);
	left: calc(50% - 100px);
	
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.dropdown-menu-wrap::before {
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	left: calc(50% - 7px);
	top: -8px;
	border-bottom: 8px solid #fff;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
}

.is-dropdown .is-trigger {
	height: 100%;
	display: flex;
	align-items: center;
	position: relative;
	cursor: pointer;
}
.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 40px 15px 15px;
	line-height: 1;
	position: relative;
}
.dropdown-menu-ttl a::after {
	content: '';
	width: 14px;
	height: 5px;
	background: url("../../img/common/icon_arrow_b.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 2.5px);
	right: 10px;
    transition: 0.3s ease-in-out;
}



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


@media (max-width: 1200px) {
	.header-inn {
		width: 96%;
	}
	.gnav-wrap ul#gnav > li {
		margin-left: 1.5vw;
	}
	.gnav-wrap ul#gnav > li > a, 
	.gnav-wrap ul#gnav > li > .is-trigger a {
		width: 8vw;
	}
}


@media (min-width: 1001px) {
	.dropdown-menu-wrap {
		display: block !important;
		transition: 0.3s ease-in-out;
	}
	
	.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;
	}
}


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

	.header-logo {
		width: 280px;
	}

	
	/* 開閉ボタン */
	.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-black);
		position:absolute;
		width: 100%;
		left: 0;
		transition: 0.5s ease-in-out;	
	}
	.sp-menu-trigger span:nth-child(1){
		top: calc(50% - 10%);
	}
	.sp-menu-trigger span:nth-child(2){
		top: calc(50% + 10%);
	}

	
	/*開閉ボタンopen時*/
	.is-open.sp-menu-trigger span:nth-child(1) {
		top: 50%;
		transform: rotate(45deg);
	}
	.is-open.sp-menu-trigger span:nth-child(2) {
		top: 50%;
		transform: rotate(-45deg);
	}
	
	
	/* gnavi */
	.gnav-wrap {
        width: 100%;
        height: auto;
		display: none;
        padding: 0;
		background: rgba(246, 246, 246, 0.96);
        position: fixed;
        top: calc(43px + 60px);
        left: 0;
        z-index: 998;
		overflow: auto;
	}
    .is-sticky .gnav-wrap {
        top: 60px;
    }
	.gnav-wrap ul#gnav {
		width: 100%;
		padding: 0 5%;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	.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: 30px 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: 20px;
		display: block;
		text-align: left;
	}


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

	/* 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: 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);
		position: absolute;
		top: calc(50% - 0.5px);
		right: 28px;
		transition: 0.3s ease-in-out;
	}

	.dropdown-menu-ttl  {
		width: 90%;
		margin: 0 auto;
		border-top: 1px solid #fff;
	}
	.dropdown-menu-ttl a {
		display: block;
		width: 100%;
		margin: 0 auto;
		padding: 20px;
		text-align: left;
		line-height: 1;
		position: relative;
	}
	.dropdown-menu-ttl a::after {
		content: '';
		width: 14px;
		height: 5px;
		background: url("../../img/common/icon_arrow_b.svg") center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 2.5px);
		right: 10px;
		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;
		background: var(--color-primary);
		border: none;
	}
	
	
	/* gnavi */
    .gnav-wrap {
        width: 100%;
        height: auto;
		display: none;
        padding: 0 0 3vw;
        position: fixed;
        top: calc(9vw + 10.66vw);
        left: 0;
        z-index: 998;
		overflow: auto;
    }
    .is-sticky .gnav-wrap {
        top: 10.66vw;
    }
	
	.gnav-wrap ul#gnav {
		width: 100%;
		padding: 0 5%;
		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.6vw;
	}


	/* contact・document */
	.gnav-wrap ul#gnav > li > a.btn-header-contact {
		width: 94%;
		margin: 2vw auto 0 0;
		padding: 2.2vw 4.4vw;
		border-radius: 10vw;
		font-size: 3.8vw;
	}
	.gnav-wrap ul#gnav > li > a.btn-header-document {
		width: 94%;
		margin: 2vw 0 0 auto;
		padding: 2.2vw 4.4vw;
		border-radius: 10vw;
		font-size: 3.8vw;
	}
	.gnav-wrap ul#gnav > li > a.btn-header-contact::after {
		content: '';
		width: 4.0vw;
		height: 3.2vw;
		top: calc(50% - 1.6vw);
		right: 4vw;
	}
	.gnav-wrap ul#gnav > li > a.btn-header-document::after {
		content: '';
		width: 3.2vw;
		height: 4vw;
		top: calc(50% - 2vw);
		right: 4.2vw;
	}
	

	/* 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: 90%;
		margin: 0 auto;
		border-top: 1px solid #fff;
	}
	.dropdown-menu-ttl a {
		display: block;
		width: 100%;
		margin: 0 auto;
		padding: 4vw;
		text-align: left;
		line-height: 1;
		position: relative;
	}
	.dropdown-menu-ttl a::after {
		content: '';
		width: 3vw;
		height: 1vw;
		top: calc(50% - 0.5vw);
		right: 1.2vw;
	}


}


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

footer {
    width: 100%;
	background: var(--color-light-gray);
	position: relative;
	z-index: 990;
}
a.btn-pagetop {
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-black);
	border-radius: 50%;
	position: absolute;
	top: -35px;
	left: calc(50% - 35px);
	z-index: 991;
	color: #fff;
	font-size: 1.2rem;
	line-height: 1;
}


footer .cont-inn {
	padding: 155px 0 50px;
	border-top: 1px solid #fff;
	justify-content: space-between;
}

.footer-logo {
	width: 330px;
}

/* footer links */
.footer-links-wrap {
	width: calc(100% - 350px - 50px);
	justify-content: space-around;
}
.footer-links {
	width: calc((100% - 155px) / 3);
	max-width: 125px;
}
.footer-links li {
	margin-bottom: 20px;
}
.footer-links li:last-child {
	margin-bottom: 0;
}

.footer-links li.footer-link-parent a {
	color: var(--color-black);
	font-size: 1.6rem;
	line-height: 1;
}
.footer-links li.footer-link-children a {
	color: var(--color-txt-gray);
}

/* contact・document */
.footer-btn-wrap {
	width: auto;
	margin-left: 20px;
}
a.btn-footer-contact, 
a.btn-footer-document {
	width: 155px;
	margin-bottom: 20px;
	padding: 12px 22px;
	display: block;
	background: var(--color-black);
	border-radius: 50px;
	color: #fff;
	font-size: 1.6rem;
	text-align: left;
	position: relative;
}
a.btn-footer-contact::after {
	content: '';
	width: 17px;
	height: 14px;
	background: url("../../img/common/icon_contact.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 7px);
	right: 20px;
}
a.btn-footer-document::after {
	content: '';
	width: 14px;
	height: 18px;
	background: url("../../img/common/icon_document.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 9px);
	right: 22px;
}



.footer-bottom-wrap {
	width: 100%;
	margin: 110px auto 0;
	justify-content: space-between;
	align-items: center;
}
.footer-bottom-links {
	width: auto;
	margin: 0 auto 0 0;
	align-items: center;
	justify-content: flex-start;
}
.footer-bottom-links li {
	margin-right: 50px;
}
.footer-bottom-links li a {
	color: var(--color-txt-gray);
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1;
}


/* copyright */
.copyright-txt {
	color: var(--color-black);
	font-size: 1.2rem;
	line-height: 1;
}

@media (max-width: 1100px) {

	/* footer links */
	.footer-links-wrap {
		width: calc(100% - 350px - 50px);
		justify-content: space-around;
	}
	.footer-links {
		width: calc((100% - 155px) / 3);
		max-width: 125px;
	}

	/* contact・document */
	.footer-btn-wrap {
		width: auto;
		margin-left: auto;
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}
	a.btn-footer-contact, 
	a.btn-footer-document {
		margin: 20px 0 0 20px;
	}
	
}


@media (max-width: 768px) {
	footer {
	}
	a.btn-pagetop {
		width: 14vw;
		height: 14vw;
		display: flex;
		top: -7vw;
		left: calc(50% - 7vw);
		font-size: 2.8vw;
	}


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

	.footer-logo {
		width: 75%;
		margin: 0 auto 10vw;
	}

	/* footer links */
	.footer-links-wrap {
		width: 90%;
		margin: 0 auto;
		justify-content: space-around;
		border-top: 1px solid var(--color-txt-gray);
	}
	.footer-links {
		width: 100%;
		max-width: initial;
		padding: 2vw 0;
		border-bottom: 1px solid var(--color-txt-gray);
	}
	.footer-links li {
		margin-bottom: 0;
	}
	.footer-links li:last-child {
		margin-bottom: 0;
	}

	.footer-links li.footer-link-parent a {
		width: 100%;
		display: block;
		padding: 3vw;
		font-size: 3.4vw;
	}
	.footer-links li.footer-link-children {
		padding-left: 4vw;
	}
	.footer-links li.footer-link-children a {
		width: 100%;
		display: block;
		padding: 2vw 2vw;
		font-size: 3.4vw;
	}

	/* contact・document */
	.footer-btn-wrap {
		width: auto;
		margin-left: auto;
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}

	/* contact・document */
	.footer-btn-wrap {
		width: 100%;
		margin-left: auto;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	a.btn-footer-contact, 
	a.btn-footer-document {
		width: 46%;
		margin: 6vw 0 0;
		padding: 1vw 4.4vw;
		border-radius: 10vw;
		font-size: 3.8vw;
	}
	a.btn-footer-contact::after {
		content: '';
		width: 4.0vw;
		height: 3.2vw;
		top: calc(50% - 1.6vw);
		right: 4vw;
	}
	a.btn-footer-document::after {
		content: '';
		width: 3.2vw;
		height: 4vw;
		top: calc(50% - 2vw);
		right: 4.2vw;
	}



	.footer-bottom-wrap {
		width: 100%;
		margin: 8vw auto 0;
		justify-content: space-between;
		align-items: center;
	}
	.footer-bottom-links {
		width: 90%;
		margin: 0 auto 0;
		align-items: center;
		justify-content: flex-start;
		flex-direction: column;
	}
	.footer-bottom-links li {
		margin: 0 auto 3vw 0;
	}
	.footer-bottom-links li a {
		font-size: 2.8vw;
	}


	/* copyright */
	.copyright-txt {
		width: 100%;
		margin-top: 12vw;
		text-align: center;
		font-size: 2.66vw;
	}
}


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

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


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




/*---------- font ----------*/
.txt-roboto {
	font-family: "Roboto Condensed", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}


/*---------- テキスト ----------*/
.txt-indent {
	text-indent: -1em;
	padding-left: 1em;
	display: block;
}



@media (max-width: 768px) {
}



/*---------- ボタン、リンク ----------*/

/* more */
.btn-more, 
a.btn-more {
	width: 154px;
	height: 70px;
	padding-right: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	position: relative;
}
.btn-more::before {
	content: '';
	width: 70px;
	height: 70px;
	background: var(--color-black);
	border-radius: 50%;
	position: absolute;
	top: calc(50% - 35px);
	right: 0;
	transition: 0.3s ease-in-out;
}
.btn-more::after {
	content: '';
	width: 70px;
	height: 70px;
	background: url("../../img/common/icon_arrow_w.svg") center center no-repeat;
	background-size: 19px;
	position: absolute;
	top: calc(50% - 35px);
	right: 0;
	transition: 0.3s ease-in-out;
}

/* more */
.btn-icon-more, 
a.btn-icon-more {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.btn-icon-more::before {
	content: '';
	width: 60px;
	height: 60px;
	background: var(--color-black);
	border-radius: 50%;
	position: absolute;
	top: calc(50% - 30px);
	right: 0;
	z-index: 1;
	transition: 0.3s ease-in-out;
}
.btn-icon-more img {
	width: 19px;
	position: relative;
	z-index: 2;
}


@media (min-width: 769px) {
	.btn-more:hover::before {
		content: '';
		width: 60px;
		height: 60px;
		background: var(--color-black);
		border-radius: 50%;
		position: absolute;
		top: calc(50% - 30px);
		right: 5px;
		transition: 0.3s ease-in-out;
	}
	.btn-icon-more:hover::before {
		content: '';
		width: 44px;
		height: 44px;
		border-radius: 50%;
		position: absolute;
		top: calc(50% - 22px);
		right: 8px;
	}
}



@media (max-width: 768px) {
	/* more */
	.btn-more, 
	a.btn-more {
		width: 35vw;
		height: 12vw;
		padding-right: 12vw;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 3.66vw;
		position: relative;
	}
	.btn-more::before {
		content: '';
		width: 12vw;
		height: 12vw;
		background: var(--color-black);
		border-radius: 50%;
		position: absolute;
		top: calc(50% - 6vw);
		right: 0;
		transition: 0.3s ease-in-out;
	}
	.btn-more::after {
		content: '';
		width: 12vw;
		height: 12vw;
		background: url("../../img/common/icon_arrow_w.svg") center center no-repeat;
		background-size: 4vw;
		position: absolute;
		top: calc(50% - 6vw);
		right: 0;
		transition: 0.3s ease-in-out;
	}

	/* more */
	.btn-icon-more, 
	a.btn-icon-more {
		width: 12vw;
		height: 12vw;
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
	}
	.btn-icon-more::before {
		content: '';
		width: 12vw;
		height: 12vw;
		position: absolute;
		top: calc(50% - 6vw);
		right: 0;
		z-index: 1;
		transition: 0.3s ease-in-out;
	}
	.btn-icon-more img {
		width: 4.6vw;
	}
	
}


/*---------- パンクズ ----------*/
.breadcrumb-wrap {
	width: 100%;
	margin-bottom: 80px;
	padding: 15px 40px;
	background: #fff;
	border-radius: 15px;
}
.breadcrumbs ol {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.breadcrumbs ol li {
    position: relative;
    font-size: 1.2rem;
	font-weight: 500;
	line-height: 1;
}
.breadcrumbs ol li::after {
    content: '';
	width: 11px;
	height: 5px;
	background: url("../../img/common/icon_arrow_b.svg") center center no-repeat;
	background-size: 100%;
    margin: 0 10px 2px;
    display: inline-block;
}
.breadcrumbs ol li:last-child::after {
    content: none;
}
.breadcrumbs ol li a {
	color: var(--color-txt-gray);
}

@media screen and (max-width: 768px) {
	.breadcrumb-wrap {
		width: 100%;
		margin-bottom: 16vw;
		padding: 2.8vw 4vw;
	}
	.breadcrumbs ol li {
		font-size: 3.0vw;
	}
	.breadcrumbs ol li::after {
		width: 2vw;
		height: 1vw;
		margin: 0 2vw 0.4vw;
	}
}


