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

*/

.scroll_up {
	transition: 0.7s ease-in-out;
	transform: translateY(10px);
	opacity: 0;
}
.scroll_up.on {
	transform: translateY(0);
	opacity: 1.0;
}
.fade_in {
	transition: 1.2s ease-in-out;
	opacity: 0;
}
.fade_in.on {
	opacity: 1.0;
}

:root{
	--font-color: #222;
	--main-color: #1f3d32;
	--white-color: #FFF;
	--gray-color: #777;
	--light-gray-color: #fbfbfb;
	--border-color: #e5e5e5;
	--red-color: #f22;
	--light-red-color: #fff9f9;
}
* {
	min-height:0;
	min-width : 0;
}
.pc_none { display: none; }
.sp_none { display: block; }

body {
	font-family: "Noto Serif JP", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 18px;
	color: var(--font-color);
	line-height: 1.6;
	padding: 0;
	margin: 0;
}
h1 {
	text-align: center;
	font-size: 2.1rem;
	font-weight: 700;
	color: #1f3d32;
	margin-bottom: 12px;
	letter-spacing: 0.04em;
}
h1.title {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	background: var(--main-color);
	color: var(--white-color);
	padding: 15px;
}
h2 {
	position: relative;
	text-align: center;
	font-size: 1.9rem;
	font-weight: 600;
	color: var(--main-color);
	padding-bottom: 10px;
	margin: 20px 0 40px;
}

h2::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 64px;
	height: 2px;
	background: var(--main-color);
}
h3 {
	font-size: 1.5rem;
	text-align: center;
	font-weight: 600;
}
h3.title_sub {
	background: var(--light-gray-color);
	text-align: left;
	padding: 10px 20px;
}
h4 {
	font-size: 1.3rem;
	font-weight: 600;
	display: inline;
}
input, textarea {
	padding: 5px;
	width: 100%;
	border: 1px #aaa solid;
	outline: none;
	line-height: 1.5;
}
a {
	color: var(--main-color);
}
button {
	cursor: pointer;
	padding: 10px 20px;
	margin: 5px;
	outline: none;
	color: var(--font-color);
	border: 1px #aaa solid;
	background: #F0F0F0;
	font-size: 1.05rem;
	border-radius: 5px;
	letter-spacing: 1px;
	font-weight: 600;
	font-family: "Noto Serif JP";
}
input:focus, textarea:focus {
	background: #fffff8;
}
.box_flex {
	display: flex;
	gap: 40px;
	margin-bottom: 20px;
}
.box_flex div {
	width: 50%;
}
.wrap {
	width: 1200px;
	margin: 0 auto;
}
.wrap_min {
	width: 1024px;
	margin: 0 auto;
}
.w100 {
	width: 100%;
}
.wauto {
	width: auto;
}
.al_center {
	text-align: center;
}
.al_right {
	text-align: right;
}
.alert {
	color: var(--red-color);
	background: var(--light-red-color);
	padding: 5px 10px;
}
.bold {
	font-weight: bold;
	color: var(--main-color);
}
.underline {
	text-decoration: underline;
}
.list {
	list-style: disc;
	margin: 20px 0 20px 20px;
}
.list_num {
	list-style: decimal;
	margin: 20px 0 20px 20px;
}
.list_num li {
	margin-bottom: 20px;
}
strong {
	font-weight: bold;
}
small {
	font-size: 80%;
}
a {
	text-decoration: none;
}
img {
	max-width: 100%;
}
p {
	margin: 0.8em 0;
}
dl {
	display: flex;
	gap: 25px;
	margin: 30px 0;
}
dt {
	width: 180px;
	background: var(--light-gray-color);
	padding: 5px 10px;
}
dd {
	width: calc(100% - 180px);
}
table {
	width: 100%;
	margin-bottom: 20px;
}
th, td {
	padding: 10px 20px;
	border: 1px var(--border-color) solid;
	vertical-align: middle;
}
th {
	background: var(--main-color);
	color: var(--white-color);
}
main {
}
section {
	margin: 50px 0;
}
header {
	padding: 15px;
	position: relative;
}
header .wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header_logo img {
	width: 175px;
}
.catchcopy {
	display: block;
	color: var(--gray-color);
	margin-bottom: 7px;
	font-size: 11px;
}
.header_menu {
	display: flex;
	align-items: center;
	gap: 40px;
}
.header_menu a {
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: var(--main-color);
	text-decoration: none;
	position: relative;
}
.header_menu a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -6px;
	transform: translateX(-50%);
	width: 0;
	height: 1px;
	background: var(--main-color);
	transition: width 0.3s ease;
}
.header_menu a:hover::after {
	width: 100%;
}
.header_menu_sp {
	display: none;
}
.icon_x:hover > .header_menu a::after {
	width: 0;
	height: 0 !important;
}
footer {
	background: var(--main-color);
	color: var(--white-color);
	padding: 15px;
}
.img_top {
	width: 100vw;
	height: 500px;
	overflow: hidden;
	object-fit: cover;
}
.img_number, .img_title {
	width: 40px;
}
.top_message {
	padding: 20px 25px;
	background: var(--light-gray-color);
}
.top_osusume {
	display: flex;
	flex-wrap: wrap;
}
.top_osusume li {
	width: 50%;
	padding: 25px;
}
.top_osusume h3 {
	display: flex;
	justify-content: center;
	gap: 10px;
	align-items: center;
	margin-bottom: 15px;
}
.top_osusume p {
	font-size: 1rem;
	text-align: center;
}




@media screen and (max-width: 1200px) {
	body {
		font-size: 1rem;
	}
	.wrap {
		width: 100%;
	}
	section {
		padding: 0 15px;
		margin: 30px 0;
	}
	h1 {
	  font-size: 1.9rem;
	}
	h2 {
		font-size: 1.7rem;
	}
	h3, h4 {
		font-size: 1.3rem;
	}
}
@media screen and (max-width: 1024px) {
	.wrap_min {
		width: 100%;
	}
	dl {
		flex-wrap: wrap;
		gap: 10px;
		margin: 20px 0;
	}
	dt, dd {
		width: 100%;
	}
	.box_flex {
		flex-wrap: wrap;
		gap: 10px;
	}
	.box_flex div {
		width: 100%;
	}
	.flex_order {
		flex-direction: column;
	}
	.flex_order div:nth-of-type(1) {
		order: 2;
	}
	.flex_order div:nth-of-type(2) {
		order: 1;
	}
	.header_menu {
		display: none;
	}
	.header_menu_sp {
		display: block;
	}
	.top_osusume li {
		width: 100%;
		text-align: center;
		padding: 0 0 20px;
	}
}
@media screen and (max-width: 800px) {
	body {
		font-size: 0.9rem;
	}
	.pc_none { display: block; }
	.sp_none { display: none; }
	main {
		margin-top: 70px !important;
	}
	h1 {
		font-size: 1.5rem;
	}
	h1.title {
		padding: 10px;
	}
	h2 {
		font-size: 1.3rem;
		margin: 20px 0;
	}
	h3, h4 {
		font-size: 1.0rem;
	}
	h3.title_sub {
		padding: 10px 15px;
	}
	button {
		font-size: 0.9rem;
	}
	input, textarea {
		font-size: 16px;
	}
	th, td {
		padding: 7px 15px;
	}
	.googlemaps {
		aspect-ratio: 16/9;
		height: auto;
	}
	.catchcopy {
		margin-bottom: 5px;
	}
	header {
		padding: 10px 15px;
		position: fixed;
		top: 0;
		left: 0;
		background: var(--white-color);
		width: 100%;
		z-index: 999;
	}
	.header_logo img {
		width: 150px;
	}
	.img_top {
		margin-top: 70px;
		height: auto;
	}
	.img_number, .img_title {
		width: 32px;
	}
	.top_osusume h3 {
		margin-bottom: 10px;
	}
	.top_osusume p {
		text-align: left;
		font-size: 0.85rem;
	}

}
