@charset "UTF-8";

/* ----------------------------------------------------
	基本設定
---------------------------------------------------- */
/*
	reset
------------------------------ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

p {
	margin-bottom: 1em;
	word-wrap: break-word;
}

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

fieldset,
img {
	border: 0;
}

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

ol,
ul {
	list-style: none;
}

caption,
th {
	text-align: left;
}

a {
	transition: all 0.5s ease 0s;
}

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

area {
	border: none;
	outline: none;
}

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

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

.container {
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
}

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

/*
	font
------------------------------ */
* {
	font-feature-settings: "pkna";
	letter-spacing: 0.05em;
}

body {
	color: #231815;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
th,
td {
	font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
	font-size: 16px;
	font-weight: normal;
}

.gothic {
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

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

	body,
	h1,
	h2,
	h3,
	h4,
	h5,
	h6,
	th,
	td {
		font-size: 2.26667vw;
	}
}

small {
	font-size: 0.875em;
}

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

.sp {
	display: none;
}

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

	.sp {
		display: block;
	}
}

/*
	list
------------------------------ */
ul.list li {
	margin-left: 1.4em;
	text-indent: -1.4em;
}

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

ul.type1 li::before {
	content: "◆";
}

ol.cnt li {
	margin-left: 1.8em;
	text-indent: -1.8em;
	counter-increment: number;
}

ol.cnt li::before {
	content: "("counter(number) ")";
}

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

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

/*
	linkBtn
------------------------------ */
.linkBtn a {
	background: #e8380d;
	margin: 0 auto;
	max-width: 325px;
	height: 83px;
	color: #fff;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width: 768px) {
	.linkBtn a {
		max-width: 65%;
	}

	.linkBtn a {
		height: 11.06667vw;
		font-size: 3.2vw;
	}
}

/* ----------------------------------------------------
	pagetop
---------------------------------------------------- */
.pageTop a {
	background: rgba(232, 56, 13, 0.8);
	width: 64px;
	height: 64px;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 10;
}

.pageTop a img {
	width: 16px;
	height: auto;
}