.anker {
	position: absolute;
	top: -60px;
}

@media screen and (max-width: 768px) {
	.anker {
		top: -30px;
	}
}


.main_area {
	padding: 100px 0 0;
}

@media screen and (max-width: 768px) {
	.main_area {
		padding-top: 40px;
	}
}


/*============================ パスワード ============================*/
.password_form_area p {
	text-align: center;
}

.password_form_area p + p{
	display: flex;
    justify-content: center;
	gap: 20px 10px;
}
@media screen and (max-width: 768px) {
	.password_form_area p + p{
		flex-direction: column;
		align-items: center;
	}
}

.password_form_area label {
	font-size: 1.6rem;
	font-weight: bold;
	vertical-align: middle;
}

.password_form_area input[type="password"] {
	background: #f6faf0;
	border: none;
	width: 300px;
	height: 50px;
	padding: 0 10px;
	color: #000000;
	font-family: inherit;
	font-size: 1.5rem;
	line-height: 50px;
	letter-spacing: inherit;
	text-align: left;
}

.password_form_area input[type="submit"] {
	background: var(--brown);
	border: none;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	width: 100px;
	height: 50px;
	color: #ffffff;
	font-family: inherit;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 50px;
	letter-spacing: 0.15em;
	cursor: pointer;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.password_form_area input[type="submit"]:hover {
	opacity: 0.7;
}
/*============================ パスワード end ============================*/

.main_manual {
	padding: 0 0 200px;
}

@media screen and (max-width: 768px) {
	.main_manual {
		padding-bottom: 100px;
		line-height: 1.8;
	}
}

@media screen and (max-width: 768px) {
	.main_manual .mainimg_area {
		height: 180px;
	}
}

@media screen and (max-width: 768px) {
	.main_manual .page_title {
		line-height: 1.3;
	}
}

.title_type01 {
    padding: 0 0 20px;
    margin: 0 auto 50px;
    position: relative;
    color: var(--brown);
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.6;
    letter-spacing: 0.2em;
}
.title_type01::after {
	content: "";
	width: 50px;
	height: 2px;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	background-color: var(--brown);
}

.main_manual .title_type01 .num {
	font-size: 3.6rem;
	display: block;
}

.main_manual .title_type01 br {
	display: none;
}

@media screen and (max-width: 768px) {
	.main_manual .title_type01 {
		margin-bottom: 40px;
		font-size: 1.5rem;
	}

	.main_manual .title_type01 .num {
		font-size: 3.2rem;
		line-height: 1.2;
	}
}

.main_manual .area {
	margin: 90px auto 0;
}

@media screen and (max-width: 768px) {
	.main_manual .area {
		margin-top: 60px;
	}
}

.main_manual .inner_wrap {
	width: 980px;
}

@media screen and (max-width: 768px) {
	.main_manual .inner_wrap {
		padding: 0 30px !important;
	}
}

.main_manual .btn-toggle1 {
	width: 30px;
	height: 45px;
	position: absolute;
	top: 0;
	right: 0;
	display: inline-block;
	cursor: pointer;
}

.main_manual .btn-toggle1::before {
	content: "";
	background-image: url("../images/icon_open.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 16px;
	height: 10px;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.main_manual .btn-toggle1.-open::before {
	background-image: url("../images/icon_close.svg");
	width: 11px;
	height: 11px;
}

@media screen and (max-width: 768px) {
	.main_manual .btn-toggle1 {
		height: 32px;
	}

	.main_manual .btn-toggle1::before {
		width: 14px;
		height: 8px;
	}

	.main_manual .btn-toggle1.-open::before {
		width: 9px;
		height: 9px;
	}
}

/*================================ マニュアルサブメニュー ================================*/
.main_manual .pagelink_wrap {
	margin: 0 auto;
}

.main_manual .pagelink_list {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

@media screen and (max-width: 768px) {
	.main_manual .pagelink_list {
		flex-direction: column;
	}
}

.main_manual .pagelink_list li {
	width: calc((100% - 60px) / 5);
}

@media screen and (max-width: 768px) {
	.main_manual .pagelink_list li {
		width: 100%;
	}
	.main_manual .pagelink_list li br {
		display: none;
	}
}

.main_manual .pagelink_list a {
	background: #ffffff;
	border: 2px solid var(--brown);
	border-radius: 10px;
	width: 100%;
	height: 65px;
	padding: 0 5px;
	margin: 0 auto;
	color: var(--brown);
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 1.4;
	text-align: left;
	text-decoration: none;
	letter-spacing: 0.04em;
	display: block;
	cursor: pointer;
	position: relative;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	transition: 500ms;
}

.main_manual .pagelink_list a:hover {
	background-color: var(--brown);
	color: #fff;
}

@media screen and (max-width: 768px) {
	.main_manual .pagelink_list a {
		width: 100%;
		height: auto;
		padding: 10px 5px;
		font-size: 1.5rem;
	}
}

.main_manual .pagelink_list .num {
	width: 36px;
	margin: 0 5px 0 0;
	font-size: 3.5rem;
	text-align: center;
	line-height: 1.0;
	letter-spacing: 0;
	display: inline-block;
}

@media screen and (max-width: 768px) {
	.main_manual .pagelink_list .num {
		font-size: 2.7rem;
		margin-right: 10px;
	}
}

/*================================ 最初に理解しておくべきこと ================================*/
/* 理念 */
.main_manual .philosophy_block .block_content {
	position: relative;
}
.main_manual .philosophy_block .block_content::before {
	content: "";
	background-image: url("../images/manual01.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 478px;
	height: 458px;
	position: absolute;
	top: 200px;
	right: 30px;
}

@media screen and (max-width: 768px) {
	.main_manual .philosophy_block .block_content::before {
		content: none;
	}
}

.main_manual .cred_wrap {
	background: #fdeeea;
	margin: 30px 0 0 -40px;
	padding: 55px 65px 80px;
}

@media screen and (max-width: 768px) {
	.main_manual .cred_wrap {
		margin: 25px 0 0;
		padding: 40px 20px 40px;
	}
}

.main_manual .cred_wrap .wrap_head {
	margin: 0 auto 55px;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.main_manual .cred_wrap .wrap_head {
		margin-bottom: 40px;
	}
}

.main_manual .cred_wrap .credo_box_container {
	width: 836px;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
	.main_manual .cred_wrap .credo_box_container {
		max-width: 100%;
	}
}

.main_manual .cred_wrap .credo_box_wrap {
	margin: -45px -50px 0;
	display: flex;
	flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
	.main_manual .cred_wrap .credo_box_wrap {
		margin: 0;
		flex-direction: column;
	}
}

.main_manual .cred_wrap .credo_box {
	width: 368px;
	max-width: 100%;
	margin: 45px 50px 0;
}

@media screen and (max-width: 768px) {
	.main_manual .cred_wrap .credo_box {
		margin: 40px auto 0;
	}

	.main_manual .cred_wrap .credo_box:first-child {
		margin-top: 0;
	}
}

.main_manual .cred_wrap .credo_box_head {
	border-bottom: 1px solid #00757f;
	padding: 0 0 15px;
}

.main_manual .cred_wrap .credo_box_head img {
	width: auto;
	height: 58px;
	max-height: 100%;
}

@media screen and (max-width: 768px) {
	.main_manual .cred_wrap .credo_box_head {
		padding-bottom: 10px;
	}

	.main_manual .cred_wrap .credo_box_head img {
		height: 36px;
	}
}

.main_manual .cred_wrap .credo_box_content {
	margin: 15px 0 0;
	color: #00757f;
	font-size: 1.7rem;
	font-weight: bold;
	letter-spacing: 0.2em;
}

@media screen and (max-width: 768px) {
	.main_manual .cred_wrap .credo_box_content {
		margin: 10px 0 0;
		font-size: 1.5rem;
		letter-spacing: 0.1em;
	}
}

.main_manual .area {
	position: relative;
}

.main_manual p + p {
	margin: 30px 0 0;
}

.main_manual .block {
	margin: 45px 0 0;
}

.main_manual .block:first-child {
	margin-top: 0;
}

.main_manual .block img {
	max-width: 100%;
	height: auto;
}

@media screen and (max-width: 768px) {
	.main_manual .block {
		margin-top: 30px;
	}
}

.main_manual .block_head {
	border-left: 12px solid var(--brown);
	border-bottom: 2px solid var(--brown);
	min-height: 45px;
	padding: 3px 0 3px 25px;
	position: relative;
}

@media screen and (max-width: 768px) {
	.main_manual .block_head {
		border-left-width: 9px;
		min-height: 32px;
		padding-left: 12px;
	}
}

.main_manual .block_title {
	font-size: 2.5rem;
	font-weight: bold;
	line-height: 1.4;
	letter-spacing: 0.12em;
}

@media screen and (max-width: 768px) {
	.main_manual .block_title {
		font-size: 1.8rem;
	}
}

.main_manual .block_content {
	padding: 30px 0 0 40px;
	overflow: hidden;
	display: none;
}

@media screen and (max-width: 768px) {
	.main_manual .block_content {
		padding: 25px 0 0;
	}
}

.main_manual .block_text {
	padding: 0;
}

.main_manual .block_text+.box_wrap {
	margin-top: 30px;
}

.main_manual .block.is_toggle .block_head {
	cursor: pointer;
}

.main_manual .block.is_open .block_head .btn-toggle1 {
	display: none;
}

.main_manual .block.is_open .block_content {
	display: block;
}

.main_manual .box {
	margin: 17px 0 0;
}

.main_manual .box:first-child {
	margin-top: 0;
}

.main_manual .box_head {
	background: #f4f0e7;
	border-left: 8px solid var(--brown);
	padding: 6px 0 5px 15px;
	position: relative;
	cursor: pointer;
}

.main_manual .box_head .btn-toggle1 {
	height: 40px;
}

@media screen and (max-width: 768px) {
	.main_manual .box_head {
		padding: 5px 0 4px 10px;
	}

	.main_manual .box_head .btn-toggle1 {
		height: 32px;
	}
}

.main_manual .box_title {
	font-size: 2.0rem;
	font-weight: bold;
	line-height: 1.4;
	letter-spacing: 0;
}

@media screen and (max-width: 768px) {
	.main_manual .box_title {
		font-size: 1.6rem;
	}
}

.main_manual .box_content {
	padding: 15px 0 10px;
	display: none;
}

.main_manual .box ul {
	margin: 15px 0 0;
	padding: 0 0 0 12px;
}

.main_manual .box li {
	margin: 5px 0 0;
	padding: 0 0 0 22px;
	line-height: 1.8;
	position: relative;
}

.main_manual .box li::before {
	content: "";
	background: #766b60;
	border-radius: 50%;
	width: 10px;
	height: 10px;
	position: absolute;
	top: 6px;
	left: 0;
}

.main_manual .box1 {
	margin: 50px 0 0;
}

.main_manual .box1:first-child {
	margin-top: 20px;
}

.main_manual .box1:first-child .box1_head2 {
	letter-spacing: 0.19em;
}

@media screen and (max-width: 768px) {
	.main_manual .box1:first-child {
		margin-top: 0;
	}
}

.main_manual .box1 .icon {
	margin: 0 3px;
	vertical-align: 6px;
	display: inline-block;
}

@media screen and (max-width: 768px) {
	.main_manual .box1 .icon {
		width: 22px;
	}
}

.main_manual .box1_head {
	margin: 0 0 10px;
	color: #f3a691;
	font-size: 2.9rem;
	font-weight: bold;
	line-height: 1.6;
	letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
	.main_manual .box1_head {
		margin-bottom: 10px;
		font-size: 2.5rem;
	}
}

.main_manual .box1_head2 {
	color: #00757f;
	font-size: 1.6rem;
	font-weight: bold;
	letter-spacing: 0.09em;
}

@media screen and (max-width: 768px) {
	.main_manual .box1_head2 {
		font-size: 1.4rem;
		line-height: 1.8;
	}
}

.main_manual .box1_text {
	margin: 20px 0 0;
}

.main_manual .box2 {
	display: -webkit-flex;
	display: flex;
}

.main_manual .box2_img {
	min-width: 236px;
}

.main_manual .box2_content {
	padding: 40px 0 0 90px;
	font-size: 1.6rem;
	line-height: 2.0;
}

@media screen and (max-width: 768px) {
	.main_manual .box2 {
		-webkit-flex-direction: column;
		flex-direction: column;
	}

	.main_manual .box2 .img_inner {
		width: 180px;
		margin: 0 auto;
	}

	.main_manual .box2_content {
		padding: 20px 0 0;
		font-size: 1.5rem;
	}
}

.main_manual .full_open .block_content {
	display: block;
}

.main_manual .full_open .box_content {
	display: block;
}

div.drawer-overlay {
	background-color: transparent;
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

.drawer_btn {
	display: none;
}

@media screen and (max-width: 768px) {
	.drawer_btn {
		display: block;
	}
}

body.drawer--right .drawer-hamburger {
	background-image: url("../images/manual/manual_nav_open_pc.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 50px;
	width: 60px;
	height: 60px;
	padding: 0;
	top: 120px;
	right: 30px;
	z-index: 2010;
}

@media screen and (max-width: 768px) {
	body.drawer--right .drawer-hamburger {
		background-color: var(--brown);
		background-image: url("../images/manual/manual_nav_open_wht.png");
		background-position: 19px 24px;
		background-size: 20px;
		border-radius: 0 0 0 10px;
		top: 0;
		right: 0;
	}
}

body.drawer--right.drawer-open .drawer-hamburger {
	background-image: url("../images/manual/manual_nav_close.svg");
	right: 30px;
}

@media screen and (max-width: 768px) {
	body.drawer--right.drawer-open .drawer-hamburger {
		background-color: transparent;
		background-size: 26px;
		background-position: center 20px;
		right: 0;
	}
}

body.drawer--right .drawer-nav {
	right: -350px;
}

@media screen and (max-width: 768px) {
	body.drawer--right .drawer-nav {
		right: -100%;
	}
}

nav.drawer-nav {
	background: #fff;
	width: 350px;
	height: calc(100% - 110px - 50px);
	padding: 35px 25px;
	top: 140px;
	right: -350px;
	z-index: 2000;
	border-radius: 20px 0 0 20px;
	border: 5px solid var(--brown);
	border-right: none;
}

@media screen and (max-width: 768px) {
	nav.drawer-nav {
		padding: 50px 25px 50px;
		width: 100%;
		height: calc(100%);
		border-radius: 0;
		top: 0;
		right: -100%;
		border-right: 5px solid var(--brown);
	}
}

.drawer-title {
	padding: 0 12px;
	color: var(--brown);
	font-family: Cabin;
	font-size: 3.6rem;
	font-weight: bold;
	line-height: 1.2;
	letter-spacing: 0.25em;
}

@media screen and (max-width: 768px) {
	.drawer-title {
		font-size: 3.0rem;
		text-align: center;
		line-height: 1.3;
	}
}

ul.drawer-menu {
	margin: 30px 0 0;
}

@media screen and (max-width: 768px) {
	ul.drawer-menu {
		margin-top: 50px;
	}
}

ul.drawer-menu li {
	border-bottom: 2px solid var(--brown);
	width: 100%;
}

ul.drawer-menu li br {
	display: none;
}

@media screen and (max-width: 768px) {
	ul.drawer-menu li:last-child {
		border-bottom: none;
	}
}

ul.drawer-menu a {
	width: 100%;
	height: auto;
	padding: 10px 5px;
	margin: 0 auto;
	color: var(--brown);
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.4;
	text-align: left;
	text-decoration: none;
	letter-spacing: 0.04em;
	display: block;
	cursor: pointer;
	position: relative;
	top: 0;
	left: 0;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-moz-transition: 0.1s;
	-o-transition: 0.1s;
	-webkit-transition: 0.1s;
	transition: 0.1s;
}

ul.drawer-menu .num {
	width: 42px;
	margin: 0 5px 0 0;
	font-size: 2.8rem;
	text-align: center;
	line-height: 1.0;
	letter-spacing: 0;
	display: inline-block;
}

@media screen and (max-width: 768px) {
	ul.drawer-menu .num {
		font-size: 2.7rem;
		margin-right: 10px;
	}
}

.drawer-logo {
	display: none;
}

@media screen and (max-width: 768px) {
	.drawer-logo {
		margin: 40px auto 0;
		text-align: center;
		display: block;
	}
}

.panel_btn_box {
	display: none !important;
}