@charset "utf-8";
.modaal-wrapper {
		overflow: hidden !important;
}
.modaal-inner-wrapper {
		padding: 0 !important
}
.modaal-container {
		width: 100%;
		max-width: inherit !important;
		min-width: inherit;
		border-radius: 0;
		height: 100% !important;
		box-shadow: none;
		overflow: hidden !important;
}
.modaal-close {
		position: static;
}
.modaal-content-container {
		padding: 0;
}
.modaal-container .modaal-close {
		position: absolute;
		top: calc(50vh - 350px);
		right: calc(calc(100vw - 960px) * 0.5);
		background: none;
		width: 50px;
		height: 50px;
		border-radius: 50%;
		cursor: pointer;
}
@media(max-width: 1024px) {
		.modaal-container .modaal-close {
				right: 50px;
		}
}

@media (max-height: 500px) {
		.modaal-container .modaal-close {
				top: 10px;
				right: 20px;
				transform: scale(0.9)
		}
}
.modaal-close::before, .modaal-close::after {
		content: '';
		display: block;
		width: 50px;
		height: 2px;
		position: absolute;
		left: 0;
		top: 24px;
		pointer-events: none;
		transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
		border-radius: 20px;
		background: #e4002b;
}
.modaal-close::before {
		transform: rotate(-35deg);
}
.modaal-close::after {
		transform: rotate(35deg);
}
.modaal-confirm-btn {
		margin: 0 !important
}
/* ===================== */
.modal_hdr {
		background: #65947F;
		height: 44px;
		display: flex;
		justify-content: center;
		align-items: center;
		border-radius: 8px 8px 0 0;
}
.modal_title {
		text-align: center;
		font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		font-size: 22px;
		font-weight: 600;
		margin: 0 0 30px;
}
.modal_hdr .modal_title {
		color: #fff;
		margin: 0;
		font-size: 20px;
}
.modal_cont {
		padding: 30px;
}
.modal_cont_caption {
		line-height: 1.8;
		margin: 0 0 1em
}
ul.modal_btn_flex {
		display: flex;
		justify-content: center;
		align-items: center
}
.modal_btn_flex li {
		list-style: none;
		margin: 0 5px;
		font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		font-weight: 500;
		font-size: 85%;
}
.modal_btn_flex li a {
		color: #fff;
		text-decoration: none;
		display: flex;
		height: 34px;
		border-radius: 4px;
		justify-content: center;
		align-items: center
}
/* ===================== */
/* よく使う検索条件 + 保存*/
.searchHistoty_list {
		list-style: none;
		margin-left: 1em;
}
.searchHistoty_list li {
		margin: 0 0 8px;
		line-height: 1.8;
		position: relative;
}
.searchHistoty_list li::after {
		content: '・';
		display: block;
		position: absolute;
		top: 0;
		left: -1em;
		color: #65947F;
		line-height: 1.8;
}
.searchHistoty_list li:last-child {
		margin-bottom: 0;
}
.searchHistoty_list li a {
		color: #222;
		text-decoration: none;
		display: block;
}
@media (hover: hover) {
		.searchHistoty_list li a:hover {
				color: #65947F;
				text-decoration: underline;
		}
}