@charset "UTF-8";

@import url("https://use.typekit.net/kju7jql.css");

:root {
	/* font */
	--gothic: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	--mincho: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
	--orpheuspro: "orpheuspro", serif;
	--notosans: "Noto Sans JP", sans-serif;
	--barlowcondensed: "Barlow Condensed", sans-serif;

	/* color */
	--blk: 62, 58, 57;
	--wht: 255, 255, 255;
	--brn: 186, 143, 102;
	--red: 188, 122, 118;
	--darkRed: 50, 0, 10;
	--back: 41, 23, 12;
	--gray: 80, 85, 88;
}

/* ----------------------------------------------------
	基本設定
---------------------------------------------------- */
html {
	scroll-behavior: smooth;
	font-size: 62.5%;
}

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

area {
	border: none;
	outline: none;
}

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

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

.bgBody {
	position: fixed;
	inset:0;
	z-index: -1;
	overflow: hidden;
}

.bgBody iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	/* width: max(120vw, calc(120vh * 9 / 16));
	height: max(120vh, calc(120vw * 16 / 9)); */
	width: 200vw;
	height: 190vh;
	transform: translate(-50%,-50%);
	border:0;
	pointer-events:none;
}

@media screen and (min-width: 2359px) {
	.bgBody iframe {
		height: 160vh;
	}
}

@media screen and (max-width: 988px) {
	.bgBody iframe {
		width: 300vw;
	}
}

@media screen and (max-width: 768px) {
	.bgBody iframe {
		width: max(120vw, calc(120vh * 9 / 8));
	}
}
.container {
	margin: 0 auto;
}

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

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

@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;
	white-space: wrap;
	position: relative;
}

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

ul.list.center li {
	text-align: center;
}

ul.list.center li::before {
	position: relative;
}

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

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

ul.note li.en {
	padding-left: 0.75em;
}

ul.note li.en::before {
	content: "*";
}

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

/* type1 */
ul.type1 li {
	padding-left: 0;
	color: #CA893A;
	font-weight: 500;
}

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

/*
	linkBtn
------------------------------ */
.linkBtn a {
	margin: 0 auto;
	max-width: 516px;
	height: 73px;
	color: rgb(var(--wht));
	background: #80BDAF;
	font-size: min(2.2rem, 1.719vw);
	font-weight: 600;
	text-decoration: none;
	border-style: solid;
	border-width: 2px;
	border-radius: 73px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.linkBtn a:hover {
	opacity: 1;
}

.linkBtn a svg {
	width: 15px;
	fill: none;
	stroke: rgb(var(--wht));
	stroke-miterlimit: 10;
	stroke-width: .87px;
	position: absolute;
	top: 50%;
	right: 1.5em;
	transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
	.linkBtn a {
		height: 16vw;
		font-size: 4.26667vw;
		border-radius: 16vw;
	}

	.linkBtn a svg {
		width: 3.2vw;
	}
}

/* ----------------------------------------------------
	pagetop
---------------------------------------------------- */
.pageTop a {
	background: rgba(var(--blk), 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);
}