/*  */

:root {
	--white: #ffffff;
	--black: #787878;
	--gray: #eeeeee;
	--theme-pink: #993365;
	--pink: #D61166;
	--pink-rgb: 214, 17, 102;
	/* font-size */
	--fs-main: 16px;
	--fs-h1: 2.25rem;
	--fs-h2: 1.6875rem;
	--fs-h3: 1.6875rem;
	--ff-mincho: "Noto Serif JP", serif;
	--ff-gothic: "Noto Sans JP", sans-serif;
	/* section */
	--pd-section: 70px;
	--md-block: 40px;

	--brand: #FAE5EE;
	/* ?????? */
	--brand-dark: #993365;
	--bg: #ffffff;
	--text: #222;
	--text-invert: #fff;
	--muted: #666;
	--radius-xl: 16px;
	--radius-lg: 14px;
}

@media (width <=767.98px) {
	:root {
		--pd-section: 70px;
		--md-block: 40px;
	}
}

html {
	font-size: 100%;
}

body {
	color: var(--black);
	font-family: var(--ff-mincho);
	font-size: var(--fs-main);
	font-weight: 400;
	font-style: normal;
	background-color: var(--white);
}

img {
	max-width: 100%;
}

p {
	line-height: 2;
}

#PageBody {
	width: 100%;
}

#container {
	width: 800px;
	background-color: #FFF;
	overflow: hidden;
}

/* ?? */
.content-inner {
	width: min(90%, 1100px);
	margin-inline: auto;
}

.content-inner-narrow {
	width: min(90%, 900px);
	margin-inline: auto;
}

.section-title {
	font-size: var(--fs-h2);
}

.section-title.-top {
	color: var(--pink);
	text-align: center;
	font-weight: 400;
}

.-small {
	font-size: .9em;
}

.-large {
	font-size: 1.3em !important;
}

.-vlarge {
	font-size: 1.8em !important;
	font-weight: bold
}

@media (width <= 767.98px) {
	.-vlarge {
	font-size: 1.3em !important;
	font-weight: bold
}
}

/* header */
/*========= ???????????CSS ===============*/


#top-head {
	width: 100%;
	height: 90px;
	background-color: var(--theme-pink);
	display: flex;
	position: fixed;
	flex-direction: column;
	align-items: center;
	z-index: 998;
	transition: .2s;
	top: 0;
}

@media (width <=767.98px) {
	#top-head {
		height: 70px;
	}
}

#top-head .inner {
	width: 95%;
	max-width: 1240px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#g-nav ul {
	display: flex;
	list-style-type: none;
	align-items: center;
}

#g-nav li a {
	padding: 0 clamp(10px, 1vw, 20px);
	color: var(--white);
	text-decoration: none;
}

.openbtn {
	display: none;
}

.header-logo {
	padding: 5px 0;
	max-height: 50px;
}

.header-logo img {
	height: 40px;
}


@media screen and (max-width:768px) {
	#top-head .inner {
		width: 100%;
	}

	.header-logo {
		position: absolute;
		top: 50%;
		left: 10px;
		transform: translateY(-50%);
		width: 80%;
	}

	.header-logo img {
		height: auto;
		width: auto;
	}

	#g-nav {
		/*position:fixed;???z-index????????????*/
		position: fixed;
		z-index: 999;
		/*????????????*/
		top: 70px;
		right: -120%;
		width: 100%;
		height: calc(100svh - 70px);
		/*?????*/
		background: var(--white);
		/*??*/
		transition: all 0.6s;
	}

	/*????????????????0?*/
	#g-nav.panelactive {
		right: 0;
	}

	/*??????????????*/
	#g-nav.panelactive #g-nav-list {
		/*????????????????*/
		position: fixed;
		z-index: 999;
		width: 100%;
		height: 100svh;
		/*??????*/
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}

	/*???????*/
	#g-nav ul {
		/*?????????????*/
		position: absolute;
		z-index: 999;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		display: block;
		width: 90%;
	}

	/*???????????*/

	#g-nav li {
		list-style: none;
		text-align: left;
		margin: 1rem 0;
	}

	#g-nav li a {
		background-color: var(--pink);
		color: var(--white);
		text-decoration: none;
		padding: 1rem;
		display: block;
		text-transform: uppercase;
		letter-spacing: 0.1em;
		font-weight: bold;
		border: var(--pink) solid 1px;
		border-radius: 3px;
	}

	/*========= ???????CSS ===============*/
	.openbtn {
		position: fixed;
		z-index: 9999;
		/*????????*/
		top: 10px;
		right: 10px;
		cursor: pointer;
		width: 50px;
		height: 50px;
		display: inline-block;
	}

	/*×???*/
	.openbtn span {
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 14px;
		height: 3px;
		border-radius: 2px;
		background-color: var(--white);
		width: 50%;
	}

	.openbtn span:nth-of-type(1) {
		top: 15px;
	}

	.openbtn span:nth-of-type(2) {
		top: 23px;
	}

	.openbtn span:nth-of-type(3) {
		top: 31px;
	}

	.openbtn.active span:nth-of-type(1) {
		top: 18px;
		left: 18px;
		transform: translateY(6px) rotate(-45deg);
		width: 45%;
	}

	.openbtn.active span:nth-of-type(2) {
		opacity: 0;
	}

	.openbtn.active span:nth-of-type(3) {
		top: 30px;
		left: 18px;
		transform: translateY(-6px) rotate(45deg);
		width: 45%;
	}

}



.footer {
	background-color: var(--white);
}

.footer-nav {
	width: min(1300px, 95%);
	padding: 1.5rem;
	margin: 0 auto;
}

.footer-nav ul {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 2rem 5rem;
}

.footer-nav li {
	list-style-type: none;
}

.footer-nav a {
	text-align: center;
	color: var(--black);
	text-decoration: none;
	display: inline-block;
	word-break: keep-all;
}

@media (width <= 767.98px) {
	.footer-nav a {
	word-break: keep-all;
}
}

.footer-copy {
	background-color: var(--gray);
	padding: 2rem 0;
}

.footer-copy img {
	display: block;
	width: min(500px, 90%);
	margin: 0 auto;
}


/* ????? */
.fv {
	background: url(../img/fv-bg.png) no-repeat;
	background-position: top center;
	background-size: cover;
	width: 100%;
	padding-top: 250px;
	min-height: 400px;
}

.fv-title {
	font-weight: 700;
	font-size: 36px;
	text-align: center;
}

.fv-read {
	margin-top: 80px;
	font-size: 18px;
	margin-bottom: 30px;
}

@media (width <=767.98px) {
	.fv-title {
		font-weight: 700;
		font-size: 23px;
		text-align: center;
	}

	.fv-read {
		margin-top: 40px;
		font-size: 17px;
		margin-bottom: 20px;
	}
}

.herb-text {
	color: var(--pink);
	text-align: center;
	margin-top: 30px;
	width: max-content;
	max-width: 83%;
	margin-inline: auto;
	position: relative;
	font-size: 18px;
}

.herb-text::before {
	content: "";
	background: url(../img/herb-left.png) no-repeat;
	width: 20px;
	background-size: contain;
	aspect-ratio: 1 /2.2;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -9%;
}

.herb-text::after {
	content: "";
	background: url(../img/herb-right.png) no-repeat;
	width: 30px;
	background-size: contain;
	aspect-ratio: 1 /1.4;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -9%;
}

@media (width <=767.98px) {
	.herb-text {
		font-size: 16px;
	}
}

/* button */
.round-button {
	background-color: var(--pink);
	color: var(--white);
	border-radius: 50px;
	display: grid;
	place-items: center;
	text-decoration: none;
	width: min(90%, 480px);
	text-align: center;
	padding: 10px 0;
	margin-inline: auto;
	margin-block: 50px;
	min-height: 50px;
}

.round-button.-reset {
	background-color: var(--black);
	margin: -40px auto 0 auto;
}

.round-button:hover {
	opacity: .7;
}

@media (width <=767.98px) {
	.round-button {
		margin-block: 30px;
	}

	.round-button.-reset {
		margin: -30px auto 0 auto;
	}
}

.ba-form-table {
	margin-inline: auto;
	width: min(100% ,700px);
}

.ba-form-table input {
	border: var(--black) solid 1px;
	width: 100%;
	min-height: 2em;
	padding: 5px;
	max-width: 500px;
}

.ba-form-links {
	text-align: right;
}

.ba-form-links a {
	color: var(--text);
	text-decoration: none;
}

@media (width <= 767.98px) {
	.ba-form-table,
	.ba-form-table tr,
	.ba-form-table th,
	.ba-form-table td {
		display: block;
		text-align: left;
	}
}

/* ???????? */
.ba-linklist li {
	margin-left: 2.5em;
	list-style-type: none;
	position: relative;
	margin-block: 3em;
}

.ba-linklist li a {
	color: var(--pink);
	text-decoration: none;
	font-weight: bold;
}

.ba-linklist li a:hover {
	text-decoration: underline;
}

/* ???????? */
.ba-linklist li::before {
	content: "";
	background: url(../../ba_login/img/yellowflower.png) no-repeat;
	background-size: contain;
	width: 30px;
	height: 30px;
	display: block;
	position: absolute;
	top: 0%;
	left: -2.5em;
}