@charset "utf-8";
/*
Theme Name: kinchike
Theme URI: 
Description: 
Author: jan39
Author URI: http://jan39.com

*/

.fade_in{
	opacity:0;
	will-change:opacity;
	transition:opacity 0.7s ease;
}
.fade_in.on{
	opacity:1;
}
.scroll_up{
	opacity:0;
	transform:translateY(10px);
	will-change:opacity, transform;
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
}
.scroll_up.on{
	opacity:1;
	transform:translateY(0);
}

:root{
	--font-color: #383838;
	--black-color: #1A1F24;
	--white-color: #FFF;
	--green-color: #42B4B5;
	--blue-color: #356ACC;
	--red-color: #F22;
	--gray-color: #BBB;
	--border-color: #E5E5E5;
	--light-red-color: #FFF8F8;
	--link-color: #1497a7;
}
* {
	min-height:0;
	min-width : 0;
}
.pc_none { display: none; }
.sp_none { display: block; }

body {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 15px;
	color: var(--font-color);
	line-height: 1.5;
	padding: 0;
	margin: 0;
	background: #FCFCFC;
}
h1 {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 32px;
	padding-left: 16px;
	border-left: 6px solid var(--green-color);
}
h2 {
	font-size: 1.2rem;
	font-weight: 600;
}
.wrap {
	width: 1024px;
	margin: 0 auto;
}
.w100 {
	width: 100%;
}
.wauto {
	width: auto;
}
.center {
	text-align: center;
}
.right {
	text-align: right;
}
.bold {
	font-weight: bold;
}
small {
	font-size: 80%;
}
a {
	text-decoration: none;
	color: var(--font-color);
		word-break: break-all
}
.link {
	color: var(--link-color);
}
img {
	max-width: 100%;
}
p {
	margin: 0.7em 0;
}
table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
}
th, td {
	padding: 14px 16px;
	border-bottom: 1px solid var(--border-color);
	text-align: left;
	vertical-align: middle;
	font-size: 14px;
}
select, input[type="text"] {
	padding: 7px;
	border: 1px #ccc solid;
	border-radius: 0;
	background: var(--white-color);
	outline: none;
}
select:focus-visible, input[type="text"]:focus-visible {
	outline: none;
}
button, input[type="button"], input[type="submit"] {
	padding: 6px 30px;
	border: 1px #ccc solid;
	background: #eee;
	color: var(--font-color);
	cursor: pointer;
}
header {
	padding: 5px;
	background: var(--white-color);
}
header .wrap {
	display: flex;
	align-items: center;
}
.header_logo {
	width: 320px;
	margin-right: 30px;
}
.header_search {
	width: calc(100% - 320px);
}
footer {
	background: var(--black-color);
	color: var(--white-color);
	text-align: center;
	padding: 5px;
}
section {
	margin: 30px 12px;
}
.notice_ai_summary{
	padding: 10px;
	font-size: 13px;
	background: var(--light-red-color);
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
	text-align: center;
}
.shop_list {
	display:grid;
	grid-template-columns:repeat(3, 1fr);
	gap:20px;
}
.shop_card {
	list-style: none;
	background: var(--white-color);
	border: 1px solid var(--border-color);
	border-radius: 15px;
	box-shadow: 0 6px 18px rgba(0,0,0,0.06);
	overflow: hidden;
	padding: 15px;
	position: relative;
}
.shop_card a {
	display:block;
	height:100%;
}
.shop_card a:hover > .shop_card_image img {
	transform: scale(1.1);
	transition: 0.5s;
}
.shop_card_image {
	display: flex;
	justify-content: center;
	overflow: hidden;
}
.shop_card_image img {
	width: 100%;
	height: 170px;
	object-fit: cover;
}
.shop_tag_paid {
	position: absolute;
	top: 15px;
	right: 15px;
	background: var(--red-color);
	color: var(--white-color);
	padding: 2px 7px;
	z-index: 1;
}
.shop_tag_area {
	position: absolute;
	top: 15px;
	left: 15px;
	background: var(--green-color);
	color: var(--white-color);
	padding: 2px 7px;
	z-index: 1;
}
.shop_tag_item {
	background: var(--gray-color);
	color: var(--white-color);
	padding: 1px 4px 2px;
	display: inline-block;
	border-radius: 5px;
	margin-bottom: 1px;
}
.shop_card_title{
	line-height: 1.3;
	min-height: 2.6em;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	margin-top: 15px;
}
.shop_card_address {
	line-height: 1.3;
	min-height: 2.6em;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.pager {
	text-align: center;
	margin: 40px 0;
}
.page, .page-numbers {
	background: var(--white-color);
	border: 1px var(--border-color) solid;
	padding: 7px 15px;
}
.page-numbers.current {
	font-weight: 600;
}

.shop_single_summary,
.shop_single_info,
.shop_single_hours{
	background: #fff;
	border: 1px solid var(--border-color);;
	border-radius: 16px;
	box-shadow: 0 6px 18px rgba(0,0,0,0.06);
	padding: 25px 30px;
	margin-bottom: 30px;
}
.ai_tag {
	background: var(--red-color);
	color: var(--white-color);
	padding: 2px 7px;
	display: inline-block;
	font-weight: 500;
}
.shop_info_table th{
	width: 140px;
	background: #f8fbfc;
	font-weight: 500;
	text-align: center;
}
.shop_info_table tr:last-child th,
.shop_info_table tr:last-child td{
	border-bottom: none;
}
.shop_info_tags{
	display: flex;
	flex-wrap: wrap;
	gap: 0 15px;
}


@media screen and (max-width: 1024px) {
	h1 {
		font-size: 1.2rem;
	}
	h2 {
		font-size: 1.1rem;
	}
	.wrap {
		width: 100%;
	}
	.shop_list{
		grid-template-columns:repeat(2, 1fr);
	}
}
@media screen and (max-width: 768px) {
	body {
		font-size: 0.85rem;
	}
	section {
		margin: 20px 10px;
	}
	select, input[type="text"] {
		padding: 5px;
		font-size: 0.8rem;
	}
	button, input[type="button"], input[type="submit"] {
		padding: 5px 20px;
		font-size: 0.8rem;
	}
	h1 {
		font-size: 1.1rem;
		margin: 0 0 20px;
		padding-left: 10px;
	}
	h2 {
		font-size: 0.95rem;
	}
	.notice_ai_summary {
		font-size: 11px;
		text-align: left;
	}
	th{
		padding: 5px 12px;
		border-bottom: none;
		border-radius: 8px 8px 0 0;
		text-align: left;
	}
	td{
		padding: 10px 12px;
	}
	header {
		padding: 8px;
	}
	header .wrap {
		flex-wrap: wrap;
	}
	.header_logo {
		width: 100%;
		display: flex;
		justify-content: center;
		margin: 5px;
	}
	.header_logo img {
		width: 160px;
	}
	.header_search {
		width: 100%;
	}
	.shop_search_form {
		display: flex;
		gap: 5px;
		justify-content: center;
	}
	.shop_list{
		grid-template-columns:1fr;
	}
	.shop_card {
		padding: 12px;
	}
	.shop_card_title {
		min-height: auto;
		margin-top: 12px;
	}
	.shop_card_address {
		min-height: auto;
	}
	.shop_card_image img {
		height: 120px;
	}
	.shop_tag_area {
		top: 12px;
		left: 12px;
	}
	.shop_tag_paid {
		top: 12px;
		right: 12px;
	}
	.pager {
		margin: 25px 0;
	}
	.page, .page-numbers {
		font-size: 0.95rem;
		padding: 5px 10px;
	}
	
	.shop_single_summary,
	.shop_single_info,
	.shop_single_hours{
		padding: 20px 15px;
		border-radius: 12px;
	}
	.shop_info_table,
	.shop_info_table tbody,
	.shop_info_table tr,
	.shop_info_table th,
	.shop_info_table td{
		display: block;
		width: 100%;
	}
}
