@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
@import url("https://use.typekit.net/dpw1ebj.css");

:root {
	/* font */
	--gothic: "Noto Sans JP", sans-serif;
	--mincho: "Noto Serif JP", serif;
	--big: "big-caslon-fb", serif;

	/* color */
	--blk: 35, 24, 21;
	--wht: 255, 255, 255;
	--blu: 63, 77, 100;
	--lightBlu: 210, 215, 221;
	--darkBlu: 26, 47, 54;

	--header: 123, 137, 156;
	--footer: 27, 41, 53;
}

/* ----------------------------------------------------
	基本設定
---------------------------------------------------- */
html {
	scroll-behavior: smooth;
}

/*
	reset
------------------------------ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
}

p {
	word-wrap: break-word;
}

p:not(:last-of-type) {
	margin-bottom: 1em;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

fieldset,
img {
	border: 0;
}

address,
b,
caption,
cite,
code,
dfn,
em,
i,
strong,
th,
var {
	font-style: normal;
	font-weight: normal;
}

caption,
th {
	text-align: left;
}

a {
	text-decoration: underline;
	transition: all 0.5s ease 0s;
}

a:hover {
	text-decoration: none;
	opacity: 0.8;
}

area {
	border: none;
	outline: none;
}

img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

/*
	表示設定
------------------------------ */
body {
	line-height: 1.8;
}

.container {
	margin: 0 auto;
	padding: 0 50px;
	max-width: 1050px;
	width: 100%;
}

@media screen and (max-width: 768px) {
	.container {
		padding: 0 6vw;
	}
}

/*
	font
------------------------------ */
body {
	color: var(--wht);
	font-family: var(--gothic);
	font-feature-settings: "palt"1;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 1000px) {
	body {
		font-size: 1.6vw;
	}
}

@media screen and (max-width: 768px) {
	body {
		font-size: 4.26667vw;
	}
}

/*
	SP,PC表示切り替え
------------------------------ */
.pc {
	display: block;
}

.sp {
	display: none;
}

@media screen and (max-width: 768px) {
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}
}

/*
	list
------------------------------ */
ul.list li {
	padding-left: 1.25em;
	text-indent: 0;
	position: relative;
}

ul.list li::before {
	margin-right: 0.25em;
	position: absolute;
	left: 0;
}

/* type1 */
ul.type1 li::before {
	content: "●";
}

/* note */
ul.note li {
	font-family: var(--gothic);
	font-size: 12px;
}

ul.note li::before {
	content: "※";
}

@media screen and (max-width: 768px) {
	ul.note li {
		font-size: 2.93333vw;
	}
}

/*
	linkBtn
------------------------------ */
.linkBtn a {
	background: rgb(var(--header));
	margin: 0 auto;
	width: 350px;
	height: 60px;
	color: rgb(var(--wht));
	font-size: 18px;
	text-decoration: none;
	border: solid 2px rgb(var(--header));
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.linkBtn a:hover {
	background: rgb(var(--wht));
	color: rgb(var(--header));
	opacity: 1;
}

.linkBtn a svg {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
	.linkBtn a {
		width: 100%;
		height: 16vw;
		font-size: 4.8vw;
	}
}

/*
	tel
------------------------------ */
.tel {
	pointer-events: none;
}

@media screen and (max-width: 768px) {
	.tel {
		pointer-events: all;
	}
}

/* ----------------------------------------------------
	pagetop
---------------------------------------------------- */
.pageTop a {
	background: rgba(var(--blu), 0.8);
	width: 64px;
	height: 64px;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 1em;
	bottom: 1em;
	z-index: 100;
}

.pageTop a:hover {
	opacity: 1;
}

.pageTop a svg {
	fill: rgb(var(--wht));
	width: 16px;
	height: auto;
}