@charset "utf-8";

/* ---------- 共通 ---------- */

.pc_only {
	display: none;
}

.pc_only_2 {
	display: none;
}

.sp_only {
	display: block;
}

@media screen and (min-width: 768px){
    .pc_only{
		display: block;
	}

	.pc_only_2 {
		display: none;
	}

	.sp_only{
		display: none;
	}
}

@media screen and (min-width: 1024px){
    .pc_only{
		display: block;
	}

	.pc_only_2 {
		display: block;
	}

	.sp_only{
		display: none;
	}
}

body {
	font-family: "Noto Sans JP", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1rem;
	color: #000;
}

.font {
	font-family: "Montserrat", serif;
	font-weight: 400;
	font-style: normal;
}

.headline {
	text-align: center;
	font-size: 2.4rem;
	line-height: 1;
}

.headline_sub {
	display: block;
	margin: 0.5em 0 0 0;
	font-size: 0.5em;
	line-height: 1;
}

.bg_1 {
	background-color: #FBF9F5;
}

@media screen and (min-width: 425px) {}

@media screen and (min-width: 768px) {}

@media screen and (min-width: 1024px) {}

@media screen and (min-width: 1440px) {
	.headline {
		font-size: 3rem;
	}
}

@media screen and (min-width: 1920px) {}

/* ---------- ヘッダー ---------- */

.header {
	position: fixed;
	top: 0px;
	width: 100%;
	margin: 0;
	padding: 8px;
	background-color: rgba(255, 255, 255, 1);
	box-sizing: border-box;
	z-index: 10;
}

.header_inner {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
	width: 100%;
	margin: 0 0 0 auto;
}

.header_logo {
	display: block;
	width: 45%;
}

.header_logo img {
	width: 100%;
}

.header_flex {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 4px;
	width: 50%;
}

.header_tel,
.header_entry {
	padding: 0.25em 0.75em;
	font-size: 0.7rem;
	font-weight: 700;
	line-height: 1;
}

.header_tel {
	border: 1px #000 solid;
	background-color: #fff;
	text-align: center;
}

.header_tel_img {
	vertical-align: baseline;
	height: 0.6rem;
}

.header_tel_text {
	vertical-align: baseline;
}

.header_entry {
	border: 1px #000 solid;
	background-color: #000;
	text-align: center;
	color: #fff;
}

@media screen and (min-width: 768px) {
	.header {
		padding: 16px;
	}

	.header_logo {
		width: 40%;
	}

	.header_flex {
		display: flex;
		flex-direction: row;
		justify-content: flex-end;
		align-items: center;
		gap: 8px;
		width: 50%;
	}

	.header_tel,
	.header_entry {
		padding: 0.5em;
		font-size: 1rem;
		width: 45%;
		border: 5px #000 solid;
	}

	.header_tel_img {
		height: 0.8em;
		margin-right: 0.3em;
	}
}

@media screen and (min-width: 1024px) {
	.header_tel,
	.header_entry {
		padding: 0.5em 0;
		font-size: 1.2rem;
		width: 45%;
	}
}

@media screen and (min-width: 1440px) {
	.header_logo {
		width: 35%;
	}

	.header_flex {
		gap: 16px;
	}

	.header_tel,
	.header_entry {
		padding: 0.5em 0;
		font-size: 1.6rem;
		width: 45%;
	}
}

@media screen and (min-width: 1920px) {
	.header {
		padding: 24px 24px 24px 36px;
	}

	.header_tel,
	.header_entry {
		padding: 0.5em 0;
		font-size: 1.8rem;
		width: 40%;
	}
}

/* ---------- フッター ---------- */

.footer {
	background-color: #000;
	color: #fff;
}

.footer_inner {
	padding: 5%;
}

.footer_img {
	display: block;
	width: 80%;
	padding: 0;
}

.footer_img img {
	width: 100%;
}

.footer_flex {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}

.footer_info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 8px;
	width: 100%;
	margin: 4% 0;
	line-height: 1.5;
}

.footer_access {}

.footer_access > *:nth-of-type(1),
.footer_access > *:nth-of-type(2) {
	display: block;
}

.footer_time_tel > *:nth-of-type(1),
.footer_time_tel > *:nth-of-type(2) {
	display: block;
}

.footer_time_tel > *:nth-of-type(2) {
	color: #E3C34C;
}

.footer_link {
	width: 100%;
	padding: 4% 0;
	border: 1px #E3C34C solid;
	text-align: center;
	color: #E3C34C;
}

.copyright {
	width: 100%;
	margin: 0 auto;
	padding: 2.5% 0;
	background-color: #000;
	text-align: center;
}

@media screen and (min-width: 768px) {
	.footer_img {
		width: 50%;
	}

	.footer_flex {
		flex-direction: row;
		justify-content: space-between;
	}

	.footer_info {
		margin: 4% 0 0;
	}

	.footer_access {}

	.footer_access > *:nth-of-type(1),
	.footer_access > *:nth-of-type(2) {}

	.footer_time_tel > *:nth-of-type(1),
	.footer_time_tel > *:nth-of-type(2) {}

	.footer_link {
		width: 40%;
		margin: 4% 0 0;
	}

	.copyright {}
}

@media screen and (min-width: 1024px) {}

@media screen and (min-width: 1440px) {
	.footer_inner {
		padding: 6% 5% 2%;
	}

	.footer_img {
		width: 35%;
	}

	.footer_info {
		gap: 24px;
		line-height: 2;
	}

	.footer_link {
		padding: 3% 0;
		font-size: 1.4rem;
	}
}

@media screen and (min-width: 1920px) {
	.footer_img {
		width: 35%;
	}

	.footer_info {
		font-size: 1.2rem;
	}

	.footer_link {
		padding: 3% 0;
		font-size: 1.6rem;
	}
}
