@charset "utf-8";

/* ぱんくず */
#bread_List {
	justify-content: flex-start;
	font-size: 12px;
	gap: 5px;
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
	padding: 10px;
	box-sizing: border-box;
}

#bread_List>li {
	display: flex;
	align-items: center;
	gap: 5px;
}

#bread_List>li::after {
	display: block;
	content: '';
	width: 0.5em;
	height: 0.5em;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	transform: rotate(45deg);
}

#bread_List>li:last-child::after {
	content: none;
}

#bread_List>li a {
	text-decoration: underline;
}

@media only screen and (max-width: 900px) {
	#bread_List {
		display: none;
	}
}

/* メインビジュアル */
#main_Vis.img {
	position: relative;
	width: 100%;
	height: 100vh;
	margin-bottom: 80px;
	overflow: hidden;
}

#main_Vis.img .main_Copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	position: absolute;
	top: 50%;
	right: 10vw;
	height: max-content;
	writing-mode: vertical-rl;
	transform: translateY(-50%);
}

#main_Vis.img .main_Copy>span {
	display: inline-block;
	padding: 10px;
	color: #0055a2;
	background-color: rgba(255, 255, 255, .8);
	font-size: min(5vw, 40px);
	font-weight: 600;
	box-sizing: border-box;
}

#main_Vis.img>figure {
	width: 100%;
	height: 100%;
}

#main_Vis.img>figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

#main_Vis.feature {
	width: 100%;
	margin-bottom: 20px;
}

#main_Vis.feature .inner_1000 {
	max-width: 1000px;
	width: 90%;
	margin: 0 auto;
	padding: 0;
}

#main_Vis.feature .main_Ttl {
	position: relative;
	padding: 20px 0;
	background-color: #e7ecec;
	overflow: hidden;
}

#main_Vis.feature .main_Ttl>.inner_1000 {
	position: relative;
	z-index: 2;
}

#main_Vis.feature .main_Ttl>figure {
	position: absolute;
	top: 0;
	right: 0;
	width: 40vw;
	height: 100%;
	z-index: 1;
}

#main_Vis.feature .main_Ttl>figure::before {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 40%;
	height: 100%;
	background-image: linear-gradient(to right, #e7ecec, transparent);
}

#main_Vis.feature .main_Ttl>figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#main_Vis.feature h2 {
	display: block;
	color: #25579F;
	font-size: min(6vw, 34px);
	font-weight: 600;
}

#main_Vis.feature h2 span {
	display: block;
	margin-bottom: 10px;
	color: #333;
	font-size: min(3.5vw, 16px);
	font-weight: 400;
}

#main_Vis.feature h2+p {
	margin-top: 10px;
}

#main_Vis.feature p {
	font-size: 14px;
	line-height: 1.8;
}

#main_Vis.feature .main_Box {
	max-width: 900px;
	width: 90%;
	margin: 10px auto 0;
}

#main_Vis.feature .main_Box>section:first-of-type {
	margin-bottom: 30px;
}

#main_Vis.feature .main_Box h3 {
	display: block;
	position: relative;
	margin-bottom: 20px;
	padding: 15px 0;
	color: #0055a2;
	background-color: #FBF253;
	font-size: min(3vw, 20px);
	font-weight: 600;
	line-height: 1.5;
	text-align: center;
	box-sizing: border-box;
	cursor: pointer;
}

#main_Vis.feature .main_Box h3::before {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	width: 40px;
	height: 40px;
	background: url(/image/search/icon_plus_acc.svg) no-repeat center center;
	background-size: cover;
	transition: .3s;
	transform: translateY(-50%);
}

#main_Vis.feature .main_Box h3.acc_active::before {
	background: url(/image/search/icon_close_acc.svg) no-repeat center center;
	transform: translateY(-50%) rotate(180deg);
}

#main_Vis.feature .main_Box h4 {
	display: block;
	padding-bottom: 10px;
	margin-bottom: 10px;
	color: #08774c;
	border-bottom: 1px solid #ddd;
	font-size: min(3.5vw, 20px);
	font-weight: 600;
}

#main_Vis.feature .main_Box h4:not(:first-of-type) {
	margin-top: 30px;
}

.data_Txt {
	display: block;
	max-width: 1200px;
	width: 96%;
	margin: 0 auto 20px;
	font-size: 12px;
}

.view_Box_all,
.view_Box {
	display: none;
}

@media only screen and (max-width: 900px) {
	#main_Vis.img {
		height: 50vh;
		margin-bottom: 50px;
	}

	#main_Vis.img .main_Copy {
		gap: 10px;
		right: 5vw;
	}
}

/* 建物まとまり */
.building_Block {
	margin-bottom: 80px;
}

.building_Block:last-child {
	margin-bottom: 0;
}

/* 物件名 */
.build_Ttl {
	display: block;
	margin-bottom: 10px;
	padding: 10px;
	color: #25579F;
	border-top: 2px solid #FBF253;
	border-bottom: 2px solid #FBF253;
	font-size: min(5vw, 24px);
	font-weight: 600;
	box-sizing: border-box;
}

#build_Area .build_Ttl.inner_1000 {
	width: 90%;
}

@media only screen and (max-width: 900px) {

	/* 建物まとまり */
	.building_Block {
		margin-bottom: 30px;
	}

	.build_Ttl {
		margin: 0 auto 20px;
	}

	.build_Ttl.inner_1000 {
		width: 100%;
	}

	.building_Block .parking_List .other_Block {
		display: grid;
		grid-template-columns: 25px 1fr;
		grid-template-rows: auto auto;
		gap: 8px;
	}

	.building_Block .parking_List .other_Block .check_Box {
		width: 25px;
		grid-row: span 2 / span 2;
	}

	.building_Block .parking_List .other_Block .detail_Box {
		width: 100%;
		padding-bottom: 0;
	}

	.building_Block .parking_List .other_Block .detail_Box .build_Ttl {
		margin-bottom: 10px;
	}

	.building_Block .parking_List .other_Block .build_Btn {
		grid-column-start: 2;
		margin-bottom: 10px;
	}

	.building_Block .parking_List .other_Block .build_Btn>.build_Btn01 {
		padding: 10px 0;
	}

	.building_Block .parking_List .other_Block .build_Btn br {
		display: none;
	}
}

/* お問い合わせ・お気に入りボタン */
.build_Btn {
	justify-content: center;
	align-items: center;
	gap: 50px;
	max-width: 700px;
	width: 100%;
	margin: 0 auto 50px;
	text-align: center;
	box-sizing: border-box;
}

.build_Btn.inner_1000 {
	max-width: 1000px;
	width: 90%;
}

.build_Btn>.build_Btn01,
.build_Btn>button {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1em;
	width: 100%;
	padding: 20px 5px;
	border-radius: 50px;
	font-size: min(1.3vw, 18px);
	font-weight: 600;
	box-sizing: border-box;
}

.build_Btn>.build_Btn01 {
	width: calc((100% - 50px) / 2);
	color: #fff;
	background-color: #0055a2;
	border: 2px solid #0055a2;
}

.build_Btn>.fav_Btn {
	position: relative;
	top: unset;
	left: unset;
	width: calc((100% - 50px) / 2);
	height: auto;
	background-color: #fff;
	background-image: none;
	border: 2px solid #0055a2;
	transform: unset;
}

.build_Btn>.fav_Btn.onclick {
	background-image: none;
	color: #fff;
	background-color: #c75656;
	border: 2px solid #c75656;
}

.build_Btn>a i,
.build_Btn>button i {
	width: 1.5em;
}

.build_Btn>.fav_Btn.onclick i {
	filter: brightness(5);
}

@media only screen and (max-width: 900px) {
	.build_Btn {
		flex-wrap: wrap;
		flex-direction: column;
		gap: 10px;
		margin: 0 auto 30px;
		font-size: 12px;
	}

	.build_Btn>.build_Btn01 {
		width: 90%;
		padding: 15px 0;
		font-size: 12px;
	}

	.build_Btn>.fav_Btn {
		width: 90%;
		padding: 15px 0;
		font-size: 12px;
	}

}

/*一覧表示部分 */
#build_Area {
	max-width: 1000px;
	width: 90%;
	margin: 50px auto 0;
	background-color: #fff;
}

@media only screen and (max-width: 900px) {
	#build_Area {
		width: 100%;
		margin-top: 30px;
	}
}

/*ギャラリー*/
.gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	max-width: 1000px;
	width: 100%;
	margin: 0 auto 50px;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: 50% 50%;
}

.large {
	grid-column: span 2;
	aspect-ratio: 2/1;
}

.modal-description {
	font-size: 0;
}

@media only screen and (max-width: 900px) {
	.gallery {
		width: 90%;
	}
}

/*ギャラリーの写真クリックしてからのモーダル*/
.overlay {
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(255, 255, 255, 0.7);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: bold;
	color: black;
}

.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
}

.modal-content {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 80vw;
	min-width: 50vw;
	width: min-content;
	min-height: 50vh;
	height: 70vh;
	transform: translate(-50%, -50%);
}

.modal-content figure {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	width: 100%;
	height: 100%;
	margin: 0;
	aspect-ratio: 1/1;
}

.modal-content img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.close-modal {
	position: absolute;
	top: 0;
	right: 0;
	color: #fff;
	font-size: 30px;
	cursor: pointer;
	z-index: 2;
}

.modal-content button {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	width: 50px;
	height: 50px;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	transition: .3s;
	opacity: .4;
	transform: translateY(-50%);
	z-index: 2;
}

.modal-content button:hover {
	opacity: 1;
}

.modal-content .prev {
	left: -7%;
	background: url(/image/search/arrow_prev.png) no-repeat center top;
	background-size: cover;
}

.modal-content .next {
	right: -7%;
	background: url(/image/search/arrow_next.png) no-repeat center top;
	background-size: cover;
}

.dots {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	position: absolute;
	bottom: -5em;
	left: 50%;
	width: 100%;
	transform: translateX(-50%);
}

.dot {
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, .3);
	border-radius: 50%;
	transition: .3s;
	cursor: pointer;
}

.dot.active {
	background: rgba(255, 255, 255, 1);
}

.modal-text {
	position: absolute;
	bottom: -2em;
	left: 50%;
	width: 100%;
	transform: translateX(-50%);
	color: #fff;
	font-size: 14px;
	text-align: center;
}

@media only screen and (max-width: 900px) {
	.modal-content {
		top: 45%;
		max-width: 90vw;
		min-width: 90vw;
		height: 50vh;
		transform: translate(-50%, -50%);
	}

	.modal-content figure {
		align-items: center;
		aspect-ratio: 1/1;
	}

	.modal-content figure img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

	.modal-content button {
		width: 30px;
		height: 30px;
	}

	.modal-content .prev {
		left: -3%;
	}

	.modal-content .next {
		right: -3%;
	}

	.dots {
		justify-content: flex-start;
	}

	.modal-text {
		bottom: -3em;
		font-size: 12px;
		text-align: left;
	}
}

/* 建物リスト */
.other_List:not(:first-child) {
	margin-top: -1px;
}

.floor_Ttl {
	display: block;
	margin-bottom: 10px;
	font-size: min(8vw, 22px);
	text-align: center;
	box-sizing: border-box;
}

.other_Block {
	justify-content: flex-start;
	align-items: stretch;
	gap: 10px;
	position: relative;
	height: 100%;
	border-bottom: 1px solid #888;
}

.hidden {
	display: none;
}

.other_Block:first-of-type {
	border-top: 1px solid #888;
}

/*
.other_Block::after {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 20px;
	height: 20px;
	border-top: 2px solid #941D12;
	border-right: 2px solid #941D12;
	transform: translateY(-50%) rotate(45deg);
	transition: .3s;
} */

.parking_List .other_Block {
	gap: 20px;
}

.parking_List .other_Block::after {
	display: none;
	content: none;
}

.parking_List .build_Btn {
	justify-content: center;
	gap: 0;
	max-width: 300px;
	width: 100%;
	margin: 0 auto;
}

.parking_List .build_Btn>.build_Btn01 {
	max-width: 100%;
	width: 100%;
}

/*
.build_Btn>.build_Btn01 {
	width: calc((100% - 50px) / 2);
	color: #fff;
	background-color: #0055a2;
	border: 2px solid #0055a2;
} */

.other_Block:hover::after {
	right: -5px;
	opacity: .6;
}

.other_Block>a {
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
	width: 100%;
}

.other_Block>a figure {
	max-width: 20%;
	width: 150px;
	margin: 10px 0;
	font-size: 14px;
	text-align: center;
	aspect-ratio: 1/1;
}

.other_Block>a figure figcaption {
	margin-bottom: 5px;
	font-size: 0.8em;
}

.other_Block>a figure img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.check_Box {
	position: relative;
	width: 50px;
	padding: 10px 20px;
	background-color: #ddd;
	box-sizing: border-box;
}

.check_Box>label {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.check_Box input {
	width: 20px;
	height: 20px;
	margin: 0 auto;
}

.detail_Box {
	width: calc(100% - (20% + 20px));
	height: fit-content;
	margin: auto 0;
	padding: 10px 0;
}

.detail_Box>h2 {
	padding: 10px;
	font-size: min(5vw, 20px);
}

.detail_Box>p {
	font-size: 16px;
	line-height: 1.8;
}

.detail_Box>p.price {
	color: #941D12;
	font-size: 40px;
	line-height: 1.5;
}

.detail_Box>p.price span {
	font-size: 50%;
}

.detail_Box>p.price small {
	font-size: 15px;
}

.fav_Icon {
	display: block;
	position: absolute;
	top: 20%;
	left: 50%;
	width: 2em;
	height: 2em;
	background: url(/image/search/icon_fav.svg) no-repeat center top;
	background-size: 100%;
	transform: translateX(-50%);
}

.fav_Icon.onclick {
	background: url(/image/search/icon_fav02.svg) no-repeat center top;
}

#fav_Alert {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	max-width: 800px;
	width: 80vw;
	padding: 50px 0;
	color: #fff;
	background-color: rgba(0, 0, 0, .8);
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	transform: translate(-50%, -50%);
	z-index: 10;
}

#check_Contact {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 10px 0;
	color: #fff;
	background-color: rgba(0, 0, 0, .8);
	z-index: 11;
}

#check_Contact>.flex {
	justify-content: center;
	align-items: center;
	gap: 10px;
}

#check_Contact>.flex>p {
	font-size: 14px;
	line-height: 1;
}

#check_Contact a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1em;
	max-width: 350px;
	padding: 20px 40px;
	color: #0055a2;
	background-color: #fff;
	border: 2px solid #0055a2;
	border-radius: 50px;
	font-size: min(1.3vw, 18px);
	font-weight: 600;
	box-sizing: border-box;
}

#check_Contact a i {
	width: 1.5em;
}

@media only screen and (max-width: 900px) {
	.other_Block {
		justify-content: flex-start;
		align-items: stretch;
		gap: 5px;
		position: relative;
		height: 100%;
		border-bottom: 1px solid #888;
	}

	.hidden {
		display: none;
	}

	.other_Block:first-of-type {
		border-top: 1px solid #888;
	}

	.other_Block:hover::after {
		right: 0;
	}

	.other_Block>a {
		gap: 10px;
	}

	.other_Block>a figure {
		width: 35%;
	}

	.check_Box {
		width: 35px;
		padding: 0;
	}

	.check_Box input {
		width: 18px;
		height: 18px;
	}

	.detail_Box {
		height: fit-content;
		margin: auto 0;
	}

	.detail_Box>p {
		font-size: 12px;
		line-height: 1.5;
	}

	.detail_Box>p.price {
		font-size: 25px;
		line-height: 1.2;
	}

	.detail_Box>p.price small {
		font-size: 12px;
	}

	.fav_Icon {
		width: 1em;
		height: 1em;
	}

	#fav_Alert {
		width: 90vw;
		padding: 30px 0;
		font-size: 15px;
	}

	#check_Contact {
		bottom: 50px;
	}

	#check_Contact>.flex>p {
		font-size: 13px;
	}

	#check_Contact a {
		padding: 15px 20px;
		font-size: 16px;
	}

	#check_Contact a i {
		width: 1.5em;
	}
}

/*条件が似ている条件・閲覧済物件*/
#other_Block01,
#other_Block02,
#other_Block03 {
	margin-bottom: 80px;
}

#other_Block01 h3,
#other_Block02 h3,
#other_Block03 h3 {
	display: block;
	width: 100%;
	padding: 10px 0;
	margin-bottom: 20px;
	color: #fff;
	background-color: #0055a2;
	font-size: 22px;
	font-weight: 600;
	text-align: center;
}

div[id^="other_Block"] .slick-track {
	display: flex;
	align-items: stretch;
}

.slide_Item {
	position: relative;
	height: auto;
	margin: 0 10px;
	padding: 10px;
	background-color: #f6f6f6;
	box-sizing: border-box;
}

.slide_Item.new::after {
	display: block;
	content: '新着';
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 5px 10px;
	color: #fff;
	background-color: #a20000;
	font-size: 12px;
	box-sizing: border-box;
}

#other_Block01 figure,
#other_Block02 figure,
#other_Block03 figure {
	background-color: #fff;
	aspect-ratio: 1/1;
}

#other_Block01 figure img,
#other_Block02 figure img,
#other_Block03 figure img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.slide_Item>.flex {
	flex-wrap: wrap;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 20px;
}

.slide_Item>.flex>* {
	width: 100%;
}

.slide_Item .detail_Box {
	width: 100%;
	height: fit-content;
	padding: 20px;
	box-sizing: border-box;
}

.slick-prev,
.slick-next {
	width: 50px;
	height: 50px;
	z-index: 5;
}

.slick-prev {
	left: -25px;
	background: url(/image/search/arrow_prev.png) no-repeat center center;
	background-size: cover;
}

.slick-next {
	right: -25px;
	background: url(/image/search/arrow_next.png) no-repeat center center;
	background-size: cover;
}

@media only screen and (max-width: 900px) {

	#other_Block01 h3,
	#other_Block02 h3,
	#other_Block03 h3 {
		font-size: 18px;
	}

	.slide_Item {
		padding: 10px;
	}

	.slide_Item.new::after {
		top: 0;
		right: 0;
		font-size: 10px;
	}

	.slick-prev,
	.slick-next {
		top: 20%;
		width: 30px;
		height: 30px;
		transform: translateY(0);
	}

	.slick-prev {
		left: 5px;
	}

	.slick-next {
		right: 5px;
	}
}

/*ロケーション*/
#location_Area {
	margin: 80px auto;
}

#location_Area h3 {
	margin-bottom: 10px;
	color: #0055a2;
	font-size: 30px;
	text-align: center;
}

.map_Area {
	margin-bottom: 30px;
	aspect-ratio: 2/1;
}

.map_Area iframe {
	width: 100%;
	height: 100%;
	aspect-ratio: 2/1;
}

.store_Area h4 {
	margin-bottom: 10px;
	color: #0055a2;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-align: center;
}

.store_Area>div {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 30px;
	margin-bottom: 30px;
	padding: 20px;
	background-color: #f6f6f6;
	box-sizing: border-box;
}

.store_Area article {
	width: calc((100% - 30px) / 2);
}

.store_Area article>h5 {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	color: #0055a2;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-align: center;
}

.store_Area article>h5 i {
	width: 2em;
}

.store_List {
	padding-left: calc(20px + 1em);
	font-size: 16px;
	font-weight: 600;
	list-style: disc;
	box-sizing: border-box;
}

.store_List>li:not(:first-child) {
	margin-top: 1em;
}

@media only screen and (max-width: 900px) {
	#location_Area h3 {
		font-size: 24px;
		font-weight: 600;
	}

	.map_Area {
		aspect-ratio: 1/1;
	}

	.map_Area iframe {
		aspect-ratio: 1/1;
	}

	.store_Area {
		width: 90%;
		margin: 0 auto;
	}

	.store_Area h4 {
		font-size: 18px;
	}

	.store_Area>div {
		flex-direction: column;
		gap: 30px 30px;
		padding: 10px;
	}

	.store_Area article {
		width: 100%;
	}

	.store_List {
		font-size: 14px;
	}
}

/*もっとみるボタン*/
.more-button,
.photo_more {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	max-width: 400px;
	width: 90%;
	margin: 10px auto;
	padding: 10px 0;
	border: 1px solid #888;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	box-sizing: border-box;
	transition: .3s;
	cursor: pointer;
}

.more-button:hover,
.photo_more:hover {
	opacity: .6;
}

.more-button::before,
.photo_more::before {
	display: block;
	content: '';
	position: relative;
	width: 1.5em;
	height: 1.5em;
	background-color: #a20000;
	border-radius: 50px;
	order: 2;
}

.more-button::after,
.photo_more::after {
	display: block;
	content: '';
	width: 0.5em;
	height: 0.5em;
	margin-top: -0.3em;
	margin-left: -1.6em;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(135deg);
	transition: .3s;
	order: 2;
	z-index: 2;
}

.more-button.active::after,
.photo_more.active::after {
	margin-top: 0.5em;
	transform: rotate(315deg);
	transition: .3s;
}

@media only screen and (max-width: 900px) {

	.more-button,
	.photo_more {
		padding: 10px 0;
	}

	.more-button::before,
	.photo_more::before {
		width: 1em;
		height: 1em;
	}

	.more-button::after,
	.photo_more::after {
		width: 0.3em;
		height: 0.3em;
		margin-top: -2px;
		margin-left: -20px;
	}

	.more-button.active::after,
	.photo_more.active::after {
		margin-top: 0.2em;
	}
}

/*検索ボタン*/
#prefecture,
#transportation,
#search-Detail {
	padding-top: 150px;
	margin-top: -150px;
}

.search_list_Block {
	padding: 20px;
	box-sizing: border-box;
}

.search_list_Block p {
	display: block;
	margin-bottom: 1em;
	padding: 10px;
	border-left: 5px solid #0055a2;
	border-bottom: 2px solid #0055a2;
	font-size: 18px;
	font-weight: 600;
	box-sizing: border-box;
}

.search_list_Block p.train_Ttl {
	margin-bottom: 10px;
	padding: 10px;
	background-color: #d0d5e2;
	border: 1px solid #d5d5d5;
	border: none;
	font-size: 14px;
	font-weight: 400;
}

.search_list_Block select,
.search_list_Block label,
.search_list_Block input {
	padding: 10px;
	background-color: #fff;
	border: 1px solid #d5d5d5;
	font-size: 14px;
	line-height: 1.2;
	box-sizing: border-box;
}

.search_list_Block label {
	display: inline-block;
}

.search_list_Block input {
	margin-right: 0.5em;
}

.search_list_Block select {
	-webkit-appearance: auto;
	appearance: auto;
}

.frm_dropdown,
.frm_check,
.frm_check_large,
.frm_input {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 10px;
}

.frm_check_large,
.frm_check_large label {
	width: 100%;
}

.frm_check_large.area_all:not(:first-child) {
	margin-top: 10px;
}

.frm_check_large {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	width: 100%;
	margin-bottom: 10px;
}

.frm_check_large label {
	width: 100%;
	padding-right: 40px;
	box-sizing: border-box;
}

.frm_check_large.area_all label {
	background-color: #d0d5e2;
}



.frm_dropdown,
.frm_input {
	align-items: center;
}

.frm_input>.flex {
	align-items: center;
}

select,
label {
	display: block;
}

.frm_dropdown select {
	width: calc((100% - (1.2em + 20px)) / 2);
}

.frm_check {
	align-items: stretch;
}

.frm_check label {
	width: calc((100% - 10px) / 2);
	text-indent: -1.5em;
	padding-left: 2em;
}

.frm_check label:has(input:checked),
.toggle_middle label:has(input:checked),
.main_St label:has(input:checked) {
	background-color: #ffdede;
}

.frm_dropdown+.frm_check {
	margin-top: 10px;
}

.submit_btn {
	display: block;
	width: 80%;
	margin: 20px auto;
	padding: 20px 0;
	background-color: #b12a2a;
	border-radius: 50px;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	box-sizing: border-box;
}

/* 住所 */
.address_Box:not(:first-child) {
	margin-top: 10px;
}

.address_Box:last-child {
	margin-bottom: 10px;
}

.toggle_middle {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	width: 100%;
}

.toggle_middle label {
	width: 100%;
	padding-right: 40px;
	box-sizing: border-box;
}

label span {
	display: inline-block;
	margin-left: 5px;
	padding: 3px 5px;
	background-color: #FBF253;
	border-radius: 3px;
	font-size: 12px;
	text-indent: initial;
	box-sizing: border-box;
}

.acc_open_search,
.acc_open_search_02 {
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	max-width: 60%;
	width: 40vw;
	height: 100%;
	transform: translateY(-50%);
	cursor: pointer;
}

.acc_open_search::after,
.acc_open_search_02::after {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	right: 10px;
	width: 20px;
	height: 20px;
	background: url(/image/search/icon_plus_acc.svg) no-repeat right center;
	background-size: 20px 20px;
	transition: .3s;
	transform: translateY(-50%);
}

.acc_open_search.acc_active::after,
.acc_open_search_02.acc_active::after {
	background: url(/image/search/icon_close_acc.svg) no-repeat right center;
	background-size: 20px 20px;
	transform: translateY(-50%) rotate(180deg);
}

.toggle_middle+.view_Box {
	margin-top: 10px;
}

.toggle_middle input>div {
	display: flex;
	justify-content: space-between;
}

@media only screen and (max-width: 900px) {
	#search_Wrap {
		width: 100%;
	}

	#side_Search.tab_Box.active {
		display: block;
	}

	#side_Search {
		display: none;
		max-width: 100%;
		width: 100%;
		border-radius: 0;
	}

	.fixed {
		position: fixed;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		z-index: 10;
	}

	.submit_btn {
		font-size: 16px;
	}
}

/* 印刷ボタン追加 */
.print_Block {
	justify-content: end;
	align-items: center;
	margin: 0 auto 10px;
}

.print_Block p {
	font-size: 14px;
}

.print_Block a {
	display: block;
	padding: 10px 20px;
	color: #fff;
	background-color: #0055a2;
	font-size: 15px;
	box-sizing: border-box;
}

@media only screen and (max-width: 900px) {
	.print_Block {
		display: none;
	}
}

/* 検索結果一覧追加ボタン */
.other_Block_Btn {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	gap: 10px;
	max-width: 150px;
	width: 100%;
	margin: 10px auto;
}

.other_Block_Btn>li {
	width: 100%;
	font-size: min(1.5vw, 15px);
	white-space: nowrap;
}

.other_Block_Btn a {
	display: block;
	width: 100%;
	padding: 10px 5px;
	text-align: center;
	box-sizing: border-box;
}

.other_Block_Btn>li:nth-child(1) a {
	color: #fff;
	background-color: #035d9e;
}

.other_Block_Btn>li:nth-child(2) a {
	background-color: #fbf253;
}

@media only screen and (max-width: 900px) {
	.other_Block_Btn {
		max-width: 90px;
	}

	.other_Block_Btn>li {
		font-size: 12px;
	}

	.other_Block_Btn a {
		padding: 10px;
	}
}