@charset "UTF-8";

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

	/* color */
	--blk: 62, 59, 57;
	--wht: 255, 255, 255;
	--pin: 243, 104, 102;
	--blu: 0, 141, 255;
	--pur: 66, 11, 80;
}

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

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;
	max-width: 990px;
	width: 100%;
	position: relative;
}

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

.gothic {
	font-family: var(--gothic);
}

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

	body,
	th,
	td {
		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;
}

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

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

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

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

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

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

/*
	linkBtn
------------------------------ */
.linkBtn a {
	margin: 0 auto;
	width: 484px;
	height: 130px;
	line-height: 1.5;
	font-family: "dunbar-low", sans-serif;
	font-size: 37px;
	font-style: normal;
	font-weight: 500;
	text-decoration: none;
	letter-spacing: 0.25em;
	border-style: solid;
	border-width: 4px;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}

.linkBtn a .jp {
	font-size: 18px;
	letter-spacing: normal;
}

@media screen and (max-width: 1200px) {
	.linkBtn a {
		width: 40.33333vw;
		height: 10.83333vw;
		font-size: 3.08333vw;
		border-width: 0.33333vw;
		border-radius: 1.66667vw;
	}

	.linkBtn a .jp {
		font-size: 1.5vw;
	}
}

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

	.linkBtn a .jp {
		font-size: 4vw;
	}
}

/*
	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(var(--pur), 0.8);
	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 {
	fill: rgb(var(--wht));
	width: 16px;
	height: auto;
}

/* ----------------------------------------------------
	fadeIn
---------------------------------------------------- */
/*
	共通初期設定
	透明度が変化
------------------------------ */
.fadeBlock {
	opacity: 0;
	transition: all 1s;
}

.fadeBlock.fadeIn {
	opacity: 1;
}

/*
	下から
------------------------------ */
.fadeBottom {
	transform: translateY(100px);
}

.fadeBottom.fadeIn {
	transform: translateY(0);
}

/*
	右から
------------------------------ */
.fadeRight {
	transform: translateX(100px);
}

.fadeRight.fadeIn {
	transform: translateX(0);
}

/*
	左から
------------------------------ */
.fadeLeft {
	transform: translateX(-100px);
}

.fadeLeft.fadeIn {
	transform: translateX(0);
}