@charset "UTF-8";
/*-----------------------------------

	contents

-----------------------------------*/
#contents {
	padding-top: 115px;
}
@media screen and (max-width: 640px) {
	#contents {
		padding-top: 60px;
	}
}
/*-----------------------------------

	headline

-----------------------------------*/
#headline {
	padding: 80px 0 100px;
	position: relative;
}
#headline::before {
    content: "";
    display: block;
    width: 174px;
    height: 174px;
    position: absolute;
    top: -164px;
    left: calc(50% - 174px);
    z-index: 0;
    background: url(../img/common/img_bg.svg) no-repeat center center / contain;
    margin: auto;
}
#headline h1 {
	font-weight: 700;
	position: relative;
}
#headline h1::after {
	content: "";
    display: block;
    font-size: 129px;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.02em;
    color: rgba(64, 168, 165, 0.08);
    width: max-content;
    max-width: 100%;
    margin: auto;
    position: absolute;
    top: -30px;
    right: 0;
    z-index: 1;
}
#headline h1 .en {
	display: block;
	font-size: 20px;
	color: #40A8A5;
	margin-bottom: 25px;
}
#headline h1 .ja {
	display: block;
    text-box: trim-both cap alphabetic;
	font-size: 38px;
	padding-left: 40px;
    position: relative;
}
#headline h1 .ja::before {
    content: '';
    display: block;
    background: #48CFB7;
    width: 12px;
    height: 12px;
    margin: auto;
    border-radius: 50vw;
    box-shadow: 0 0 0 5px #D0EBE6;
    position: absolute;
    top: 0;
    left: 5px;
    bottom: 0;
    z-index: 1;
}
@media screen and (max-width: 640px) {
	#headline {
		padding: 40px 0 50px;
	}
	#headline::before {
		width: 104px;
		height: 104px;
		top: -74px;
		left: calc(50% - 104px);
	}
	#headline h1::after {
		font-size: 29px;
        letter-spacing: 0;
        top: 25px;
	}
	#headline h1 .en {
		font-size: 14px;
		margin-bottom: 15px;
	}
	#headline h1 .ja {
		font-size: 20px;
		padding-left: 22.5px;
	}
	#headline h1 .ja::before {
		width: 8px;
        height: 8px;
        box-shadow: 0 0 0 2px #D0EBE6;
        top: -2px;
        left: 2px;
	}
}
/*-----------------------------------

	breadcrumbs

-----------------------------------*/
#breadcrumbs {
	background: #FFF;
	border-top: 1px solid #E4EFED;
	border-bottom: 1px solid #E4EFED;
	padding: 13px 50px;
	margin-bottom: 70px;
	overflow-x: auto;
}
#breadcrumbs ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 35px;
	min-width: max-content;
    word-break: keep-all;
    white-space: nowrap;
}
#breadcrumbs ul li {
    text-box: trim-both cap alphabetic;
	font-size: 12px;
	font-weight: 600;
	position: relative;
}
#breadcrumbs ul li:not(:last-child)::after {
	content: '';
	width: 20px;
	height: 1px;
	background: #C7E1E0;
	position: absolute;
	top: calc(50% - 1px);
	left: calc(100% + 7.5px);
}
#breadcrumbs ul li a {
	font-family: "Quicksand", "IBM Plex Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #40A8A5;
}
@media screen and (max-width: 640px) {
	#breadcrumbs {
		padding: 10px 20px;
		margin-bottom: 40px;
	}
	#breadcrumbs ul {
		gap: 5px 25px;
	}
	#breadcrumbs ul li {
		font-size: 10px;
	}
	#breadcrumbs ul li:not(:last-child)::after {
		width: 15px;
		left: calc(100% + 5px);
	}
	#breadcrumbs ul li a {
		font-size: 12px;
	}
}