@charset "UTF-8";

:root {
	/* font */
	--gothic: "Noto Sans JP", sans-serif;
	--futura: "futura-pt", sans-serif;
	--acumin: "acumin-pro-extra-condensed", sans-serif;
	/* --mincho: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif; */


	/* color */
	--blk: 62, 58, 57;
	--wht: 255, 255, 255;
	--gra: 134, 135, 136;

	--red: 255, 0, 0;
	--darkRed: 163, 0, 18;

	--blu: 0, 140, 197;
	--lightBlu: 90, 200, 240;
	--navBlu: 50, 80, 170;

	--pin: 236, 0, 124;
	--lightPin: 250, 224, 234;
	--navRed: 230, 100, 150;
}

/* ----------------------------------------------------
	基本設定
---------------------------------------------------- */
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,
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;
}

area {
	border: none;
	outline: none;
}

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

/*
	表示設定
------------------------------ */
body {
	background: var(--wht);
	line-height: 1.8;
}

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

.color01 {
	color: rgb(var(--red));
}

.color02 {
	color: rgb(var(--pin));
}

/*
	font
------------------------------ */
body {
	font-family: var(--gothic);
	font-feature-settings: "palt" 1;
	letter-spacing: 0.05em;
	font-weight: 500;
}

body,
th,
td {
	color: var(--blk);
	font-size: 16px;
	font-weight: normal;
}

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

	body,
	th,
	td {
		font-size: 1.33333vw;
	}
}

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

	body,
	th,
	td {
		font-size: 3.73333vw;
	}
}

/*
	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;
}

/* note */
ul.note li {
	font-size: 15px;
}

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

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

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

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

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

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

/*
	linkBtn
------------------------------ */
.linkBtn a,
.linkBtn .noLink {
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

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

/*
	linkBtn（cover）
------------------------------ */
.linkBtn a.cover {
	pointer-events: none;
	z-index: 1;
}

.linkBtn a.cover::before {
	/* background: rgba(var(--blk), 0.5); */
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

/* comingsoon */
.linkBtn a.comingsoon::before {
	content: "Coming Soon";
}

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

.pageTop a svg {
	width: 40%;
	height: auto;
	fill: none;
	stroke: rgb(var(--wht));
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 5px;
}