/*
Theme Name: Azumino iju
Theme URI:
Template: lightning
Description:
Author:
Tags:
Version: 0.6.1
*/

/* .site-body::before {
	content: "※現在リニューアル作業中のため、一部表示不具合が生じる場合がございます。\A　ご不便をおかけいたしますが、何卒ご利用のほどお願いいたします。";
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    white-space: break-spaces;
    background-color: yellow;
}
 */

html {
	scroll-behavior: smooth;
}

a img:hover {
	opacity: 0.8;
}

.btn-hover {
	position: relative;
	overflow: hidden;
}

.btn-hover::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	transition: all 0.6s ease 0s;
	background-color: #e6f4ff;
}

.btn-hover:hover::before {
	width: 100%;
}

body {
	font-family: 'Zen Kaku Gothic New', sans-serif;
}

body .alpen-font {
	font-family: 'AlpenFont';
	font-weight: normal;
	font-style: normal;
}

.site-body {
	padding: 0;
}

.site-footer-copyright p:nth-child(2) {
	display: none;
}

@media (max-width: 1200px) {

	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl {
		max-width: 1020px;
	}
}

/* ----------
 * スマホ表示 767px
 * ---------- */
@media screen and (max-width:767px) {

	body.page-template-template-list,
	body.page-template-template-vendorlist {
		padding-bottom: 55px;
	}

	body .vk-mobile-nav {
		display: none;
	}

	.wp-block-query ul li:nth-child(n+2) {
		display: none;
	}
}

/* ----------
* nav-sub ヘッダー右上固定メニュー
* ---------- */
.gloval-nav-sub a:hover {
	opacity: 0.6;
}

@media (min-width: 992px) {
	body:not(.header_scrolled) .gloval-nav-sub {
		position: fixed;
		right: 7%;
		top: 25px;
		margin-top: 0.1rem;
		display: flex;
	}

	.gloval-nav-sub li a {
		color: var(--vk-color-text-body);
	}

	.gloval-nav-sub-list {
		margin: 0;
		margin-top: 0.5rem;
	}

	ul.gloval-nav-sub-list li {
		list-style-type: none;
		display: inline;
		padding: 0 0.6rem;
		border-right: solid 1px black;
	}

	ul.gloval-nav-sub-sns {
		margin: 0;
		padding-left: 1rem;
	}

	ul.gloval-nav-sub-sns li {
		list-style-type: none;
		display: inline;
		padding-right: 0.3rem;
	}
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
	body:not(.header_scrolled) .gloval-nav-sub {
		top: 3.4rem;
		right: 5%;
	}
}

@media (max-width: 992px) {
	.gloval-nav-sub {
		display: none;
	}
}

.fixed-sidebar .sidebar-item.active {
	background-color: #e6f4ff !important;
	border-left: 4px solid #007acc !important;
}

.fixed-sidebar .sidebar-item.active a {
	color: #007acc !important;
}


/* ----------------
* 
* header-nav
* 
* ---------------- */
#menu-logo_before_menu,
#menu-logo_after_menu {
	display: flex;
	width: 400px;
	max-width: 100%;
	justify-content: space-evenly;
}

#menu-logo_before_menu .menu-item a,
#menu-logo_after_menu .menu-item a {
	position: relative;
	padding: .7em 1em;
	border-bottom: none;
	overflow: hidden;
	background-color: #ffffff;
	color: #4FACFE;
}

#menu-logo_before_menu .menu-item a::after,
#menu-logo_after_menu .menu-item a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 2px;
	width: 0;
	background-color: #000000;
	transition: width .3s ease-out;
}

#menu-logo_before_menu .menu-item a:hover::after,
#menu-logo_after_menu .menu-item a:hover::after {
	width: 100%;
}


/* ----------------
* 
* humbarger
* 
* -------------- */
.vk-mobile-nav.vk-mobile-nav-drop-in {
	top: 0 !important;
	opacity: 0;
	transform: translateY(-10px) !important;
	animation: softFadeOut 1s ease-out forwards !important;
}

.vk-mobile-nav.vk-mobile-nav-open.vk-mobile-nav-drop-in {
	top: 0 !important;
	animation: softFadeIn 1s ease-out forwards !important;
	display: grid !important;
	grid-template-columns: 1fr 3fr;
	grid-template-rows: repeat(2, 1fr);
	padding: 45px;
}

.vk-mobile-nav {
	background-color: rgba(255, 255, 255, 0.9);
	border: none;
	margin: 20px 18px;
	max-width: 98.5%;
	max-height: 98.5%;
	overflow: hidden;
	border-radius: 30px;
	filter: drop-shadow(0 0 18px rgba(0, 0, 0, 0.2));
}

.vk-mobile-nav-menu-btn.menu-open {
	border: none;
}

#block-25 {
	grid-row: 1 / 3;
	grid-column: 1 / 2;
}

#menu-mobile-navigation {
	margin-top: 100px;
	display: flex;
}

#menu-mobile-navigation .acc-btn {
	display: none;
}

#menu-mobile-navigation .sub-menu {
	max-height: 100%;
	opacity: 1 !important;
}

.vk-mobile-nav nav>ul,
.vk-mobile-nav .widget_nav_menu ul li a,
.vk-mobile-nav nav ul li a {
	border: none;
}

.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor svg {
	color: #ffffff;
	fill: #ffffff;
}

@keyframes softFadeIn {
	0% {
		opacity: 0;
		transform: translateY(-10px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes softFadeOut {
	0% {
		opacity: 1;
		transform: translateY(-10px);
	}

	100% {
		opacity: 0;
		transform: translateY(0);
		display: none !important;
	}
}

.vk-mobile-nav-menu-btn {
	text-indent: inherit;
	text-align: center;
	left: inherit;
	right: 5px;
	padding-top: 24px;
	font-size: 0.8rem;
	height: 44px;
	background-position: top;
	width: 36px;
}

@media (min-width: 992px) {
	#vk-mobile-nav-menu-btn {
		display: block !important;
		top: 20px;
		right: 20px;
	}

	.vk-mobile-nav-menu-btn {
		right: 20px;
		width: 60px;
		height: 60px;
		border: none;
		border-radius: 30px;
		background-size: 65% !important;
		filter: drop-shadow(0 0 18px rgba(0, 0, 0, 0.2));
		padding-top: 40px;
		background-position: center;
		font-size: 0.65em;
	}
}

#vk-mobile-nav a {
	color: #3283b9;
}

#block-26 p,
#block-26 .wp-block-group {
	margin-left: 0 !important;
}

/* ------------------
* 
* Main Visual
* 
* ------------------ */
.z-index999 {
	position: relative;
	z-index: 999;
}

.z-index1000 {
	position: relative;
	z-index: 1000;
}

.z-index1001 {
	position: relative;
	z-index: 1001;
}

.site-header-container.container {
	display: none;
}

.site-header {
	box-shadow: none;
}

/* -------------------
* 
* page-header
* 
* ------------------- */
.page-header {
	background: linear-gradient(90deg in srgb, rgb(255, 255, 255), rgba(255, 255, 255, .5), rgba(255, 255, 255, 0)), url(https://azumino-ijyu.jp/wp2025/wp-content/uploads/2025/12/slider_01.jpg) no-repeat 50% center;
	background-size: cover;
	color: #fff;
	height: 360px;
	margin: 0 auto;
}

.page-header-inner.container {
	width: 800px;
	margin: 0;
	/* 	background-color: rgba(255, 255, 255, 0.8); */
	border-radius: 180px 0;
}

.page-header-title,
h1.page-header-title {
	font-weight: 700;
	line-height: var(--vk-line-height-low);
	margin: 0;
	padding: 80px 160px;
	color: #414141;
	text-align: left;
	font-size: 3rem;
}

/* -----------------
* 
* button - hover
* 
* ----------------- */

.blob-hover {
	position: relative;
	display: inline-block;
	padding: 12px 20px;
	font-size: 20px;
	z-index: 1;
	overflow: hidden;
}

.blob-hover::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 80%;
	height: 80%;
	background: #ffe8a3;
	border-radius: 60% 60% 65% 35%;
	transform: translate(-50%, -50%) scale(0.1);
	opacity: 0;
	transition: 0.6s ease;
	z-index: -1;
	filter: blur(6px);
}

/* hover 時 */
.blob-hover:hover::before {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}


/* ------------------
 * 
 * FAQ
 * 
 * ------------------ */
.single-faq .entry-meta {
	display: none;
}

/* ボタン（色のみ設定） */
.btn-primary-dark {
	background-color: var(--vk-color-primary);
	border-color: var(--vk-color-primary-dark);
	color: #fff;
}

.btn-primary-dark:hover {
	background-color: var(--vk-color-primary-dark);
	border-color: var(--vk-color-primary-dark);
	color: #fff;
	opacity: 0.8;
}

/* フォームバリデーション */
p.error {
	color: #dc3545 !important;
	margin-bottom: .1rem !important;
	font-size: 0.8rem;
}

.wpcf7-list-item {
	margin: 0 1rem 0 0 !important;
}

.input-group {
	margin-bottom: 0.5rem;
}

input[type=submit] {
	padding: .375rem .75rem;
}

.input-group input[type=button],
.input-group input[type=date],
.input-group input[type=email],
.input-group input[type=number],
.input-group input[type=password],
.input-group input[type=tel],
.input-group input[type=text],
.input-group input[type=url],
.input-group select {
	margin-bottom: 0;
}

.input-group:has(.input-group-prepend) input[type=button],
.input-group:has(.input-group-prepend) input[type=date],
.input-group:has(.input-group-prepend) input[type=email],
.input-group:has(.input-group-prepend) input[type=number],
.input-group:has(.input-group-prepend) input[type=password],
.input-group:has(.input-group-prepend) input[type=tel],
.input-group:has(.input-group-prepend) input[type=text],
.input-group:has(.input-group-prepend) input[type=url],
.input-group:has(.input-group-prepend) select {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	border-left: 1px solid #ced4da;
}

.input-group:has(.input-group-append) input[type=button],
.input-group:has(.input-group-append) input[type=date],
.input-group:has(.input-group-append) input[type=email],
.input-group:has(.input-group-append) input[type=number],
.input-group:has(.input-group-append) input[type=password],
.input-group:has(.input-group-append) input[type=tel],
.input-group:has(.input-group-append) input[type=text],
.input-group:has(.input-group-append) input[type=url],
.input-group:has(.input-group-append) select {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-right: 1px solid #ced4da;
}

.input-group .input-group-append input[type=submit],
.input-group .input-group-append .btn,
.input-group .input-group-append .input-group-text,
.input-group .input-group-prepend:first-child .btn:not(:first-child),
.input-group .input-group-prepend:first-child .input-group-text:not(:first-child),
.input-group .input-group-prepend:not(:first-child) .btn,
.input-group .input-group-prepend:not(:first-child) .input-group-text {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	display: none;
	width: 100%;
	height: 100%;
	overflow: hidden;
	outline: 0;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	transition: opacity 0.15s linear;
}

.modal.show {
	display: block;
	opacity: 1;
	overflow-x: hidden;
	overflow-y: auto;
}

.modal-dialog {
	position: relative;
	width: auto;
	margin: 0.5rem;
	pointer-events: none;
	transform: translate(0, -50px);
	transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
	transform: none;
}

@media (min-width: 576px) {
	.modal-dialog {
		max-width: 500px;
		margin: 1.75rem auto;
	}
}

@media (min-width: 992px) {
	.modal-dialog {
		max-width: 800px;
	}
}

.modal-content {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 0.3rem;
	outline: 0;
	padding: 20px;
}

.modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1rem;
	border-bottom: 1px solid #dee2e6;
	border-top-left-radius: calc(0.3rem - 1px);
	border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header .modal-title {
	margin-bottom: 0;
	border: none;
	line-height: 1.5;
	font-size: 1.2rem;
	padding: 0;
}

.modal-header .close {
	font-size: 2rem;
	border: none;
	background-color: transparent;
}


.modal-body {
	position: relative;
	flex: 1 1 auto;
	padding: 1rem;
}

.modal-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	padding: 0.75rem;
	border-top: 1px solid #dee2e6;
	border-bottom-right-radius: calc(0.3rem - 1px);
	border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal-body table {
	width: 100%;
	margin-bottom: 1rem;
}

.modal-body th {
	width: 30%;
	background-color: #f8f9fa;
	padding: 10px;
	border: 1px solid #dee2e6;
}

.modal-body td {
	padding: 10px;
	border: 1px solid #dee2e6;
}

.modal-header p,
.modal-footer p {
	margin-bottom: 0;
}

.form-control-lg.wpcf7-select {
	font-size: 1rem;
}


.title-a {
	background-color: #B5E7FF;
	border: none;
	border-radius: 5px;
	padding: 10px;
	font-size: 18px;
	font-weight: normal;
}



.list-a {
	display: flex;
	flex-wrap: wrap;
}

.list-a li {
	border: 1px solid #1CBBDD;
	border-radius: 2px;
	padding: 2px 4px;
	margin: 0 4px 4px 0;
	color: #1CBBDD;
	font-size: 8px;
}

@media(min-width: 768px) {
	.list-a li {
		font-size: 12px;
	}
}

.list-b {}

.list-b .num {
	display: block;

}

.list-b li {
	padding: 5px;
	font-size: 14px;
	border-bottom: 1px dashed #6B6B6B;
}

.list-b li.active {
	border-bottom: 1px solid #000;
}

@media(min-width:768px) {
	.list-b {
		display: flex;
	}

	.list-b li {
		width: calc(33.3% - 20px);
		margin: 0 10px;
		padding: 0 10px 10px 10px;
		font-size: 16px;
		position: relative;
	}

	.list-b li::before {
		content: "";
		display: block;
		position: absolute;
		top: 10px;
		left: -10px;
		width: 1px;
		height: calc(100% - 20px);
		background-color: #cacaca;
	}

	.list-b li:last-child::after {
		content: "";
		display: block;
		position: absolute;
		top: 10px;
		right: -10px;
		width: 1px;
		height: calc(100% - 20px);
		background-color: #cacaca;
	}
}

.table-a {}

.table-a th {
	width: 96px;
	background-color: #F8F9FB;
	font-size: 12px;
	padding: 2px 4px;
	font-weight: normal;
}

.table-a td {
	padding: 2px 4px;
	text-align: center;
	font-size: 12px;
	font-weight: normal;
}

@media (max-width: 767px) {

	.table-a,
	.table-a tbody,
	.table-a th,
	.table-a td {
		display: block;
		border: none;
	}

	.table-a {
		border-bottom: 1px solid #eaeaea;
	}

	.table-a tbody {
		width: 100%;
	}

	.table-a tr {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
	}

	.table-a th {
		width: 96px;
		border-top: 1px solid #eaeaea;
		color: #000;
	}

	.table-a td {
		width: calc(100% - 96px);
		border-top: 1px solid #eaeaea;
		color: #000;
	}
}

@media(min-width: 768px) {

	.table-a {
		table-layout: fixed;
		width: 100%;
	}

	.table-a th,
	.table-a td {
		padding-top: 4px;
		padding-bottom: 4px;
		font-size: 16px;
	}

	.table-a td {
		width: auto;
	}
}

.list-item {
	display: flex;
	flex-direction: column;
	border-bottom: 1px dashed #6B6B6B;
	padding: 0 15px 20px 15px;
	margin-bottom: 20px;
}

.list-item header {
	/* order: 2; removed */
}

/* .label {
	display: inline-block;
	text-align: center;
	border-radius: 2px;
	margin-right: 10px;
	padding: 2px 4px;
} */

/* .label.chuko {
	color: #fff;
	background-color: #DE9D66;
}

.label.kashiya {
	color: #fff;
	background-color: #E59297;
}

.label.tenpo {
	color: #fff;
	background-color: #5D986B;
}

.label.jigyou {
	color: #fff;
	background-color: #3677A7;
} */

.list-item header .badge {
	min-width: 82px;
	height: 20px;
	font-size: 14px;
	margin-right: 10px;
	padding: 2px 4px;
}

.list-item header .price {
	display: inline-block;
	margin-right: 5px;
	margin-left: 5px;
	font-size: 24px;
	font-weight: bold;
}

.list-item .address {
	font-weight: bold;
	font-size: 14px;
	margin-top: 8px;
	margin-bottom: 8px;
}

.list-item .item-image {
	/* order: 1; removed */
}

.list-item .item-image img {
	border-radius: 5px;
}

.list-item .item-image .image1 {
	position: relative;
}

.list-item .item-image .image1::before {
	content: "";
	display: block;
	padding-top: calc(480 / 640 * 100%);
}

.list-item .item-image .image1 img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.list-item .item-image .image1 .bookmark {
	padding: 0;
	position: absolute;
	bottom: 10px;
	right: 5px;
}

.list-item .item-image .image1 .bookmark .btn {
	padding: 0;
	margin: 0;
}

.list-item .item-image .image2 {
	display: none;
}

.list-item .item-image .image3 {
	display: none;
}

.list-item .item-data {
	/* order: 2; removed */
}

.list-item .item-text {
	display: block;
	font-size: 14px;
	margin-bottom: 8px;
}

.list-item .table {
	margin-bottom: 8px;
}

.list-item .list {
	margin-top: 0;
	margin-bottom: 4px;
}

.list-item .item-link {
	margin-top: 8px;
}

.list-item .item-link .date {
	font-weight: bold;
}

.list-item .item-link .btn {
	display: block;
	margin-top: 8px;
	font-size: 12px;
}

.list-item .item-link .btn i {
	font-size: 10px;
}

.list-item .item-vendor {
	display: none;
}


@media (min-width: 768px) {
	.list-item {
		padding: 0 0 20px 0;
		flex-direction: row;
		justify-content: space-between;
	}

	.list-item .item-vendor {
		display: block;
	}

	.list-item .item-image {
		width: calc(224 / 676 * 100% - 20px);
	}

	.list-item .item-image .image1 {
		margin-bottom: 10px;
	}

	.list-item .item-image .image2 {
		display: block;
		width: 48%;
		margin: 0 4% 0 0;
		float: left;
		position: relative;
	}

	.list-item .item-image .image2::before {
		content: "";
		display: block;
		padding-top: calc(480 / 640 * 100%);
	}

	.list-item .item-image .image2 img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.list-item .item-image .image3 {
		display: block;
		width: 48%;
		float: left;
		position: relative;
	}

	.list-item .item-image .image3::before {
		content: "";
		display: block;
		padding-top: calc(480 / 640 * 100%);
	}

	.list-item .item-image .image3 img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.list-item .list-item-body {
		width: calc(100% - calc(224 / 676 * 100%));
	}

	.item-footer {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}

	.item-footer .item-link {
		order: 2;
		width: calc(186 / 432 * 100%);
		margin-top: 0;
		text-align: right;
	}

	.item-footer .item-link .btn {
		margin-top: 4px;
	}

	.item-footer .item-link .date {
		font-size: 12px;
	}

	.item-footer .item-vendor {
		display: flex;
		align-items: flex-end;
		order: 1;
		width: calc(100% - calc(186 / 432 * 100%) - 20px);
	}

	.item-footer .item-vendor .box {
		width: calc(100% - calc(67 / 227 * 100%));
	}

	.item-footer .item-vendor .box .link {
		display: block;
		font-size: 14px;
	}

	.item-footer .item-vendor .box .tel {
		font-size: 20px;
		font-weight: bold;
	}

	.item-footer .item-vendor .box .tel i {
		color: #2586DC;
	}



	.item-footer .item-vendor .photo {
		width: calc(67 / 227 * 100%);
		position: relative;
	}

	.item-footer .item-vendor .photo::before {
		content: "";
		display: block;
		padding-top: calc(47 / 67 * 100%);
	}

	.item-footer .item-vendor .photo img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: contain;
		border-radius: 5px;
	}

}

.list-item .bookmark i {
	font-size: 20px;
}

/* .js-removeFavorite i {
	margin-right: 0;
} */

.js-removeFavorite i.fa-heart {
	color: #F24B4B;
}

.js-addFavorite i.fa-heart {
	color: #fff;
}

@media (max-width: 767px) {
	#akiyabankInfomation {
		flex-direction: column;
		margin-bottom: 0;
	}

	#akiyabankInfomation p {
		font-size: 12px;
		margin-bottom: 10px;
	}
}

/* Mobile Menu Fixed Bottom */
#mobileMenu {
	display: none;
}

@media screen and (max-width: 991px) {
	#mobileMenu {
		display: flex;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 9999;
		background-color: #2586DC;
		border-top: 1px solid #e0e0e0;
		padding: 10px 0;
		box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);
	}

	#mobileMenu select {
		width: 120px;
	}

	#mobileMenu i {
		margin-right: 0;
	}

	/* Avoid content being hidden behind the fixed menu */
	#listBox {
		padding-bottom: 80px;
	}
}

#searchBox .default-title {
	padding: 0;
	margin-bottom: 20px;
	background-color: transparent;
	border: none;
}

#searchBox .default-title::before,
#searchBox .default-title::after {
	display: none;
}

#searchBox .title {
	padding: 0;
	margin-bottom: 20px;
	background-color: transparent
}

#searchBox .title i {
	margin-right: 0;
	color: #2586DC;
}

/* Mobile Search Modal */
@media (max-width: 991px) {
	#searchBox {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 9999;
		background-color: #fff;
		overflow-y: auto;
		padding: 20px 20px 80px 20px;
		-webkit-overflow-scrolling: touch;
	}

	#searchBox.search-modal-open {
		display: block;
		animation: fadeIn 0.3s ease;
	}

	@keyframes fadeIn {
		from {
			opacity: 0;
		}

		to {
			opacity: 1;
		}
	}
}

body.modal-open-search {
	overflow: hidden;
}

/* フォームの幅調整 */
.input-width-150 {
	width: 150px;
}

.input-width-120 {
	width: 120px;
}

.input-width-100 {
	width: 100px;
}

.hr-a {
	border-top: 1px dashed #6B6B6B;
	margin: 20px 0;
}

@media (max-width: 767px) {
	.main-section {
		margin-bottom: 0;
	}

	.searchControl {
		font-size: 12px;
	}

	.searchControl .all {
		font-size: 16px;
	}
}


.detail-summary {}

.detail-summary .detail-header {}

.detail-summary .detail-header .detail-biko {
	font-size: 14px;
	font-weight: bold;
	color: #2586DC;
	background-color: #e6f4ff;
	padding: 10px 15px;
	border-radius: 5px;
	margin-bottom: 10px;
}

@media (min-width: 768px) {
	.detail-summary .detail-header .detail-biko {
		font-size: 20px;
	}
}

.detail-summary .detail-header h1 {
	font-size: 14px;
	margin-bottom: 8px;
}

.detail-summary .detail-header h1 .badge {
	min-width: 84px;
	height: 30px;
	line-height: 30px;
	padding-top: 0;
	padding-bottom: 0;
	margin-right: 10px;
	font-size: inherit;
	font-weight: normal;
}

.detail-summary .detail-header .price {
	margin-bottom: 20px;
}

.detail-summary .detail-header .price .badge {
	min-width: 75px;
	height: 21px;
	line-height: 21px;
	margin-right: 10px;
	padding-top: 0;
	padding-bottom: 0;
	font-size: 12px;
	font-weight: normal;
}

.detail-summary .detail-header .price .num {
	font-size: 24px;
	font-weight: bold;
}

.detail-summary .detail-header .btnbox {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.detail-summary .detail-header .btnbox .bookmark {
	width: 48%;
}

.detail-summary .detail-header .btnbox .print {
	width: 48%;
}

.detail-summary .detail-data .table th {
	font-weight: bold;
}

.detail-summary .detail-data .list {
	margin-bottom: 10px;
}

.detail-summary .detail-footer {
	margin-bottom: 20px;
}

.detail-summary .detail-footer .date {
	font-size: 12px;
	margin-bottom: 10px;
}

.detail-summary .detail-footer .btn {
	display: block;
	font-size: 16px;
}

@media (min-width: 768px) {
	.detail-summary .detail-header h1 {
		font-size: 20px;
	}

	.detail-summary .detail-header h1 .badge {
		min-width: 220px;
		height: 50px;
		line-height: 50px;
		font-size: 24px;
		margin-right: 20px;
	}

	.detail-summary .detail-header .price {
		margin-bottom: 0;
	}

	.detail-summary .detail-header .price .badge {
		min-width: 82px;
		height: 24px;
		line-height: 24px;
		font-size: 14px;
		transform: translateY(-3px);
	}

	.detail-summary .detail-header .price .num {
		font-size: 32px;
	}

	.detail-summary .detail-header .price .unit {
		font-size: 12px;
	}

	.detail-summary .detail-header .btnbox {
		margin-bottom: 0;
	}

	.detail-summary .detail-header .btnbox .bookmark {
		width: auto;
		margin-right: 10px;
	}

	.detail-summary .detail-header .btnbox .print {
		width: auto;
	}

	.detail-summary .detail-data {
		width: calc(640 / 990 * 100%);
	}

	.detail-summary .detail-data .list {
		margin-top: 10px;
	}

	.detail-summary .detail-photo-box {
		width: calc(278 / 990 * 100%);
	}

	.detail-summary .detail-footer {
		display: flex;
		flex-direction: column-reverse;
	}

	.detail-summary .detail-footer .btn {
		height: 54px;
		font-size: 23px;
	}

	.detail-summary .detail-footer .btn .text {
		font-size: 28px;
	}

	.detail-summary .detail-footer .btn .text i {
		font-size: 23px;
		margin-right: 0;
	}

	.detail-summary .detail-footer .date {
		text-align: right;
		margin: 15px 0 0 0;
		font-size: 16px
	}
}

.detail-photo-box {
	margin-bottom: 20px;
	border-bottom: 1px dashed #6B6B6B;
}

.detail-photo-box .photo-main {
	position: relative;
	background-color: #efefef;
}

.detail-photo-box .photo-main::before {
	content: "";
	display: block;
	padding-top: calc(480 / 640 * 100%);
}

.detail-photo-box .photo-main img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.detail-photo-box .photo-main figcaption {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	text-align: center;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.5);
	padding: 10px 0;
	border-radius: 10px 10px 0 0;
}

.detail-photo-box .photo-main::before {
	content: "";
	display: block;
	padding-top: calc(200 / 266 * 100%);
}

.detail-photo-box .photo-main img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 10px;
}


.detail-photo-box .photo-list {
	margin-bottom: 20px;
}

.detail-photo-box .photo-list li {
	width: 32%;
	margin: 0 2% 5px 0;
	position: relative;
	float: left;
	background-color: #efefef;
}

.detail-photo-box .photo-list li:nth-child(3n) {
	margin-right: 0;
}

.detail-photo-box .photo-list li:nth-child(3n+1) {
	clear: both;
}

.detail-photo-box .photo-list li::before {
	content: "";
	display: block;
	padding-top: calc(480 / 640 * 100%);
}

.detail-photo-box .photo-list li img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 5px;
}

@media(min-width: 768px) {
	.detail-photo-box {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.detail-photo-box .photo-main {
		width: calc(540 / 990 * 100%);
	}

	.detail-photo-box .photo-list {
		margin-top: 0;
		width: calc(430 / 990 * 100%);
	}

	.detail-photo-box .photo-list li {
		width: calc(100 / 430 * 100%);
		margin-right: calc(10 / 430 * 100%);
	}

	.detail-photo-box .photo-list li:nth-child(3n) {
		margin-right: calc(10 / 430 * 100%);
	}

	.detail-photo-box .photo-list li:nth-child(3n+1) {
		clear: none;
	}

	.detail-photo-box .photo-list li:nth-child(4n) {
		margin-right: 0;
	}

	.detail-photo-box .photo-list li:nth-child(4n+1) {
		clear: both;
	}
}

.detail-around {
	margin-bottom: 20px;
	width: 100%;
}

.detail-around .title {
	margin-bottom: 20px;
	background-color: transparent;
	padding: 0;
}

.detail-map {
	margin-bottom: 20px;
	border-bottom: 1px dashed #6B6B6B;
}

.detail-movie {
	margin-bottom: 20px;
	border-bottom: 1px dashed #6B6B6B;
}

.detail-movie .box {
	width: 100%;
	overflow: hidden;
	position: relative;
	margin-bottom: 20px;
}

.detail-movie .box::before {
	content: "";
	display: block;
	padding-top: calc(258 / 460 * 100%);
}

.detail-movie .box iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

}

@media(min-width:768px) {
	.detail-movie {
		display: flex;
		justify-content: space-between;
		padding-bottom: 20px;
	}

	.detail-movie .box {
		width: calc(480 / 990 * 100%);
		margin-bottom: 0;
	}

	.detail-movie .box:only-child {
		width: 100%;
	}
}



.detail-vendor {
	margin-bottom: 30px;
}

.detail-vendor .vendor-image {
	width: 100%;
	position: relative;
	margin-bottom: 20px;
}

.detail-vendor .vendor-image::before {
	content: "";
	display: block;
	padding-top: calc(480 / 640 * 100%);
}

.detail-vendor .vendor-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
}

.detail-vendor .vendor-data {
	width: 100%;
}

.detail-vendor .vendor-data header {
	width: 100%;
	margin-bottom: 10px;
}

.detail-vendor .vendor-data header .vendor-name {
	background-color: transparent;
	border: none;
	margin-bottom: 0px;
	padding: 0;
	font-size: 16px;
	font-weight: bold;
}

.detail-vendor .vendor-data header .vendor-name::after {
	display: none;
}

.detail-vendor .vendor-data header .vendor-tel {
	font-size: 18px;
	color: #2586DC;
}

.detail-vendor .vendor-btn {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}

.detail-vendor .vendor-btn .btn {
	width: 48%;
}

@media(min-width: 768px) {
	.detail-vendor {
		display: flex;
		justify-content: space-between;
	}

	.detail-vendor .vendor-image {
		width: calc(368 / 990 * 100%);
	}

	.detail-vendor .vendor-image::before {
		padding-top: calc(258 / 368 * 100%);
	}

	.detail-vendor .vendor-data {
		width: calc(596 / 990 * 100%);
	}

	.detail-vendor .vendor-data .detail-table tr {}

	.detail-vendor .vendor-data .detail-table tr th {
		width: 102px;
	}

	.detail-vendor .vendor-data .detail-table tr td {
		width: auto;
	}

}


#street_canvas,
#map_canvas {
	height: 204px;
	margin-bottom: 20px;
	width: 100%;
}

@media(min-width: 768px) {



	#street_canvas {
		float: left;
		width: calc(480 / 990 * 100%);
		height: 350px
	}

	#map_canvas {
		float: right;
		width: calc(480 / 990 * 100%);
		height: 350px;
	}

	#map_canvas {
		width: 100%;
	}

	#street_canvas+#map_canvas {
		width: calc(480 / 990 * 100%);
	}
}

.detail-table {
	table-layout: fixed;
	width: 100%;
	margin-bottom: 20px;
}

.detail-table tr th {
	width: 190px;
	padding: 4px 8px;
	text-align: left;
}

.detail-table tr td {
	width: auto;
	padding: 4px 8px;
	text-align: left;
}

@media(max-width: 768px) {
	.detail-table tr {
		display: flex;
		flex-wrap: wrap;
	}

	.detail-table tr th {
		width: 96px;
		padding-left: 5px;
		padding-right: 5px;
		text-align: left;
	}

	.detail-table tr td {
		width: calc(100% - 96px);
		padding-left: 5px;
		padding-right: 5px;
		text-align: left;
	}
}

.detail-contact {
	margin-bottom: 20px;
}

.detail-contact .table {
	width: 100%;
	margin-bottom: 20px;
}

.detail-contact .table tr {
	display: block;
}

.detail-contact .table th {
	display: block;
	width: 100%;
	padding: 5px 10px;
	text-align: left;
	font-size: 14px;
}

.detail-contact .table td {
	display: block;
	width: 100%;
	min-height: 22px;
	padding: 5px 10px;
	text-align: left;
	font-size: 14px;
}

@media(min-width:768px) {
	.detail-contact .table {
		table-layout: fixed;
	}

	.detail-contact .table tr {
		display: table-row;
	}

	.detail-contact .table th {
		display: table-cell;
		width: 240px;
	}

	.detail-contact .table td {
		display: table-cell;
		width: 100%;
	}
}

.rendo-data {}

@media(min-width:768px) {
	.rendo-data {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.rendo-data .list-item {
		display: block;
		width: 48%;
		padding: 0;
		margin-bottom: 20px;
		border-bottom: none;
	}

	.rendo-data .list-item .item-image {
		width: 100%;
	}

	.rendo-data .list-item .item-image .image1 {
		position: relative;
	}

	.rendo-data .list-item .item-image .image1::before {
		content: "";
		display: block;
		padding-top: calc(200 / 266 * 100%);
	}

	.rendo-data .list-item .item-image .image1 img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.rendo-data .list-item .list-item-body {
		width: 100%;
	}

	.rendo-data .list-item .item-data .item-footer .item-link {
		width: 100%;
	}

}

@media(min-width:992px) {
	.rendo-data .list-item {
		width: 24%;
	}
}


.vendor-list {
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px dashed #6B6B6B;
}

.vendor-list .vendor-header {
	order: 2;
}

.vendor-list .vendor-header .title {
	padding: 0;
	margin-bottom: 5px;
	margin-top: 10px;
	border: none;
	font-size: 18px;
}

.vendor-list .vendor-header .title a {
	color: #2586DC;
}

.vendor-list .vendor-header .copy {
	margin-bottom: 10px;
}

.vendor-list .vendor-image {
	order: 1;
	position: relative;
}

.vendor-list .vendor-image::before {
	content: "";
	display: block;
	padding-top: calc(150 / 224 * 100%);
}

.vendor-list .vendor-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 5px;
}

.vendor-list .vendor-data {
	order: 3;
}

.vendor-list .vendor-data .table {
	margin-bottom: 10px;
}

.vendor-list .vendor-status {
	width: 198px;
	margin: 0 auto 20px auto;
}

.vendor-list .vendor-status .text {
	color: #2586DC;
	text-align: center;
	margin-bottom: 0;
	font-size: 20px;
}

.vendor-list .vendor-status .wrap {
	border: solid 1px #2586DC;
	background-color: #2586DC;
	border-radius: 4px;
	font-size: 0;
}

.vendor-list .vendor-status .day {
	display: inline-block;
	width: 50%;
	margin: 8px 0 0 0;
	padding-top: 4px;
	text-align: center;
	font-size: 14px;
	color: #fff;
}

.vendor-list .vendor-status .day img {
	width: 48px;
	height: auto;
	display: block;
	margin: 0 auto 4px auto;
}

.vendor-list .vendor-status .box {
	display: inline-block;
	min-height: 85px;
	width: 50%;
	background-color: #fff;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
	text-align: center;
	vertical-align: top;
	color: #2586DC;
	text-decoration: none;
}

.vendor-list .vendor-status .box .num {
	height: 50px;
	line-height: 50px;
	margin: 0 2px 4px 2px;
	font-size: 24px;
	border-bottom: solid 1px #2586DC;
	overflow-x: visible;
	vertical-align: top;
	white-space: nowrap;
}

.vendor-list .vendor-status .box .num span {
	font-size: 16px;
}

.vendor-list .vendor-status .box .published {
	font-size: 16px;
}

@media(min-width:768px) {
	.vendor-list {
		flex-direction: row;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.vendor-list .vendor-header {
		order: 1;
		width: 100%
	}

	.vendor-list .vendor-image {
		order: 2;
		width: calc(224 / 676 * 100%);
	}

	.vendor-list .vendor-data {
		order: 3;
		width: calc(430 / 676 * 100%);
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.vendor-list .vendor-data .table {
		width: 100%;
	}

	.vendor-list .vendor-data .vendor-status {
		width: calc(78 / 440 * 100%);
		margin: 0;
	}



	.vendor-list .vendor-data .vendor-status .text {
		display: none;
	}

	.vendor-list .vendor-data .vendor-status .day {
		font-size: 8px;
		margin: 0;
	}



	.vendor-list .vendor-data .vendor-status .day img {
		width: 16px;
		margin-bottom: 0;
	}

	.vendor-list .vendor-data .vendor-status .box .num {
		font-size: 12px;
		height: 17px;
		line-height: 17px;
		margin-bottom: 0;
	}

	.vendor-list .vendor-data .vendor-status .box .num span {
		font-size: 12px;
	}

	.vendor-list .vendor-data .vendor-status .box .published {
		font-size: 10px;
	}

	.vendor-list .vendor-data .vendor-status .box {
		min-height: 27px;
	}

	.vendor-list .vendor-data .vendor-btnbox {
		width: calc(350 / 440 * 100%);
		height: 33px;
		display: flex;
		justify-content: space-between;
	}

	.vendor-list .vendor-data .vendor-btnbox .btn {
		font-size: 12px;
		width: 48%;
	}
}

.vendor-detail .vendor-header {
	margin-top: 20px;
	margin-bottom: 20px;
}

.vendor-detail .vendor-header .title {
	padding: 0;
	margin-bottom: 5px;
	margin-top: 10px;
	border: none;
}

.vendor-detail .vendor-image {
	margin-bottom: 20px;
	position: relative;
}

.vendor-detail .vendor-link {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.vendor-detail .vendor-link li {
	width: 48%;
}

.vendor-detail .vendor-image::before {
	content: "";
	display: block;
	padding-top: calc(200 / 266 * 100%);
}

.vendor-detail .vendor-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.vendor-detail .vendor-data {
	margin-bottom: 20px;
}


.vendor-detail .vendor-copy {
	border: none;
	padding: 0;
}

.vendor-detail .vendor-copy::before,
.vendor-detail .vendor-copy::after {
	display: none;
}

.vendor-detail .vendor-copy img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.vendor-detail .vendor-status {
	width: 198px;
	margin: 0 auto 20px auto;
}

.vendor-detail .vendor-status .text {
	color: #2586DC;
	text-align: center;
	margin-bottom: 0;
	font-size: 20px;
}

.vendor-detail .vendor-status .wrap {
	border: solid 1px #2586DC;
	background-color: #2586DC;
	border-radius: 4px;
	font-size: 0;
}

.vendor-detail .vendor-status .day {
	display: inline-block;
	width: 50%;
	margin: 8px 0 0 0;
	padding-top: 4px;
	text-align: center;
	font-size: 14px;
	color: #fff;
}

.vendor-detail .vendor-status .day img {
	width: 48px;
	height: auto;
	display: block;
	margin: 0 auto 4px auto;
}

.vendor-detail .vendor-status .box {
	display: inline-block;
	min-height: 85px;
	width: 50%;
	background-color: #fff;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
	text-align: center;
	vertical-align: top;
	color: #2586DC;
	text-decoration: none;
}

.vendor-detail .vendor-status .box .num {
	height: 50px;
	line-height: 50px;
	margin: 0 2px 4px 2px;
	font-size: 24px;
	border-bottom: solid 1px #2586DC;
	overflow-x: visible;
	vertical-align: top;
	white-space: nowrap;
}

.vendor-detail .vendor-status .box .num span {
	font-size: 16px;
}

.vendor-detail .vendor-status .box .published {
	font-size: 16px;
}

@media(min-width:768px) {
	.vendor-detail .vendor-data .table {
		table-layout: fixed;
		width: 100%;
	}

	.vendor-detail .vendor-data .table tr {
		display: table-row;
	}

	.vendor-detail .vendor-data .table .v-col-th,
	.vendor-detail .vendor-data .table th {
		width: 150px;
	}

	.vendor-detail .vendor-data .table td {
		width: auto;
	}
}

/* ------------------
 * Page Top Button
 * ------------------ */
.page-top {
	position: fixed;
	right: 20px;
	bottom: 42px;
	z-index: 1002;
	width: 50px;
	height: 50px;
	background: #3283b9;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-top i {
	font-size: 20px;
	margin-right: 0;
}

.page-top:hover {
	background: #4FACFE;
	color: #fff;
	transform: translateY(-5px);
	text-decoration: none;
}

.page-top.show {
	opacity: 1;
	visibility: visible;
}

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

	.page-top {
		bottom: 35px;
	}

	body.page-template-template-list .page-top,
	body.page-template-template-vendorlist .page-top {
		bottom: 90px;
	}
}

.wpcf7-turnstile {
	display: none;
}

.breadcrumb-list li:last-child:after {
	content: none;
}