@charset "UTF-8";
/* CSS Document */
.pt_page {
	padding-top: 80px !important;
}
.section_ttl {
	padding: 0;
	padding-top: 15px;
	padding-bottom: 15px;
	border: none;
	border-bottom: 1px solid #c4a983;
	font-size: 2rem;
	margin-bottom: 1.6rem;
	font-family: serif;
}
.accordion-container {
	margin-bottom: 20px;
}
.accordion-content {
	padding-bottom: 20px;
}
.reserve_category {
	position: relative;
	font-size: 2rem;
	background-color: #eae2d4;
	padding: 10px;
	font-family: serif;
	font-weight: 600;
	margin-bottom: 20px;
}
.reserve_category::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    width: 15px;
    height: 2px;
    transform: rotate(90deg);
    background: #b69a65;
    transition: all .3s ease-in-out;
}
.reserve_category::after {
	content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    width: 15px;
    height: 2px;
    background: #b69a65;
    transition: all .2s ease-in-out;
}
.reserve_category.open::before {
  transform: rotate(180deg);
}
.reserve_category.open::after {
  opacity: 0;
}
.reserve_block {
	border: 1px solid #907852;
	display: flex;
}
.reserve_block .ttl {
	background-color: #907852;
	color: #fff;
	font-weight: 600;
	text-align: center;
	writing-mode: vertical-rl;
	padding: 5px 0;
	width: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.reserve_block .ttl.horizontal {
	writing-mode: horizontal-tb;
	width: 100%;
}
.reserve_block .container {
	padding: 20px;
	flex-grow: 1;
}
.btn_area {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 20px;
	line-height: 1.3;
}
.btn_area > a {
	border-radius: 10px;
	color: #fff;
	padding: 10px;
}
.btn_area .btn_tel {
	background-color: #FF8282;
	position: relative;
	padding-left: 32px;
}
.btn_area .btn_tel::before {
	position: absolute;
	content: "";
	background: url('../images/reserve/icon_call.svg')no-repeat;
	background-size: contain;
	top: 12px;
	left: 10px;
	width: 18px;
	height: 18px;
}
.btn_area .btn_web {
	background-color: #829DFF;
	position: relative;
	padding-left: 32px;
}
.btn_area .btn_web::before {
	position: absolute;
	content: "";
	background: url('../images/reserve/icon_web.svg')no-repeat;
	background-size: contain;
	top: 12px;
	left: 10px;
	width: 18px;
	height: 18px;
}
.btn_area .btn_schedule {
	position: relative;
	display: inline-block;
	padding-left: 30px;
	background: #b59a65;
}
.btn_area .btn_schedule::before {
	content: '';
	width: 6px;
	height: 6px;
	border: 0;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	left: 10px;
	bottom: 0;
	margin: auto;
}
.branch_area {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 20px;
	line-height: 1.3;
}
.branch_area > div {
	background: #ECE5DB;
	text-align: center;
	flex-grow: 1;
	padding: 15px 10px;
}
.arrow {
	margin-left: 5px;
	display: block;
	width: 29.7px;
	height: 50px;
	background: #c92011;
	clip-path: polygon(0 70.3%, 33.2% 70.3%, 33.2% 0, 66.8% 0, 66.8% 70.3%, 100% 70.3%, 50% 100%);
}
.arrow_box {
	display: grid;
	grid-template-columns: 40px 1fr;
	grid-template-rows: 1fr 14px;;
}
.arrow_shaft {
	margin: auto;
	width: 10px;
	height: 100%;
	background: #c92011;
}
.arrow_triangle {
	margin: auto;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 15px solid transparent;
	border-left: 15px solid transparent;
	border-top: 14px solid #c92011;
	border-bottom: 0;
}
.arrow_text {
	color: #C92011;
	font-weight: 600;
	padding: 20px 0 10px;
}
.how_ttl {
	color: #907852;
	font-weight: 600;
	margin-bottom: 20px;
}
.how_ttl_sub {
	font-weight: 600;
	position: relative;
	padding-left: 1.5em;
}
.how_ttl_sub::before {
	content: '●';
	position: absolute;
	top: 0;
	left: 0;
}
.small_text {
	font-size: 0.9em;
}
.em_text {
	color: #C92011;
	font-weight: 600;
}
.bold {
	font-weight: 600;
}
.note {
	position: relative;
	padding-left: 1.5em;
}
.note::before {
	content: '※';
	position: absolute;
	top: 0;
	left: 0;
}
.mb20 {
	margin-bottom: 20px;
}
.mb {
	margin-bottom: 1.6rem;
}
.disc_list li {
	list-style-type: disc;
	margin-left: 1.5em;
	margin-bottom: 5px;
	line-height: 1.8;
}

@media screen and (max-width: 768px) {
	.pt_page {
		padding-top: 40px !important;
	}
	.disc_list li {
		font-size: 1.4rem;
}