@charset "UTF-8";
/*-----------------------------------

	headline

-----------------------------------*/
#headline {
	width: 95%;
	height: 510px;
	border-radius: 30px;
	overflow: hidden;
	margin: 75px auto 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 0;
}
#headline::before,#headline::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
#headline::before {
	background-color: rgba(29,109,90,0.25);
	z-index: 1;
	mix-blend-mode: multiply;
}
#headline::after {
	background: url(../img/common/headline_icon.svg) no-repeat right center/cover;
	z-index: 2;
}
#headline h1 {
	font: 700 2.2rem/1 var(--fJa);
	color: #FFF;
	filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.6));
	position: absolute;
	top: calc(50% + 52.5px);
	left: calc(50vw - 600px);
	z-index: 3;
	transform: translateY(-50%);
}
#headline h1::before {
	display: block;
	font: 700 5.8rem/1 var(--fEn);
	text-transform: uppercase;
	margin-bottom: 30px;
}
@media screen and (max-width: 1340px) {
	#headline h1 {
		left: 2.5vw;
	}
}
@media screen and (max-width: 1200px) {
	#headline h1 {
		top: calc(50% + 50px);
	}
}
@media screen and (max-width: 840px) {
	#headline {
		height: 380px;
	}
	#headline::after {
		background: url(../img/common/headline_icon.svg) no-repeat calc(100% + 100px) center/cover;
	}
	#headline h1 {
		font-size: 1.8rem;
	}
	#headline h1::before {
		font-size: 4.6rem;
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 640px) {
	#headline {
		width: 100%;
		height: 280px;
		margin: 0 auto;
		border-radius: 0;
	}
	#headline h1 {
		top: calc(50% + 42.5px);
		font-size: 1.6rem;
	}
	#headline h1::before {
		font-size: 3rem;
		margin-bottom: 15px;
	}
}

/*main_title*/
.main_title .jp {
    display: block;
    font: 700 1.5rem/1 var(--fJa);
    margin-top: 10px;
}

.main_title .en {
    font: 700 3.7rem/1 var(--fEn);
    position: relative;
    padding-bottom: 10px;
}

.main_title .en::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--mClr1);
}

@media screen and (max-width: 640px) {
	.main_title .en {
        font-size: 2.5rem;
        padding-bottom: 10px;
        margin-bottom: 0px;
        line-height: 1.3;
    }

    .main_title .jp,
    .main_title .gra {
        font-size: 18px;
    }
    .main_title .jp {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
}

/*-----------------------------------

	breadcrumb

-----------------------------------*/
#breadcrumb {
	margin: -15px auto 120px;
}
#breadcrumb ul {
	width: max-content;
	margin: 0 0 0 auto;
	background: #33B195;
	border: 1px solid #FFF;
	border-radius: calc(1px/0);
	padding: 8px 20px;
	position: relative;
	display: flex;
	font: 700 12px/1 var(--fEn),var(--fJa);
}
#breadcrumb ul li {
	color: #FFF;
	display: flex;
}
#breadcrumb ul li:not(:last-child)::after {
	content: ">";
	margin: 0 10px;
}
#breadcrumb ul li a {
	color: #FFF;
}
@media screen and (max-width: 640px) {
	#breadcrumb {
		margin: -11px auto 60px;
	}
	#breadcrumb ul {
		font-size: 10px;
		padding: 5px 15px;
	}
	#breadcrumb ul li:not(:last-child)::after {
		margin: 0 5px;
	}
}
