@charset "UTF-8";

: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;
	--pauline: "pauline", sans-serif;

	/* color */
	--blk: 26, 26, 26;
	--wht: 255, 255, 255;
	--brw: 104, 85, 77;
	--lightGre: 186, 206, 183;
	--darkGre: 61, 86, 55;
	--mainColor: 118, 158, 111;
}

/* ----------------------------------------------------
	基本設定
---------------------------------------------------- */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}

@media screen and (max-width: 1200px) {
	html {
		scroll-padding-top: 8.33333vw;
	}
}

@media screen and (max-width: 768px) {
	html {
		scroll-padding-top: 0;
	}
}

/*
	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: var(--wht);
	padding-top: 100px;
	line-height: 1.8;
}

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

@media screen and (max-width: 1200px) {
	body {
		padding-top: 8.33333vw;
	}

	.container {
		padding: 0 4.16667vw;
	}
}

@media screen and (max-width: 768px) {
	body {
		padding-top: 0;
	}

	.container {
		padding: 0 5.86667vw;
	}
}

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

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

/* cnt */
ol.cnt li {
	counter-increment: number;
}

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

/*
	.movie
------------------------------ */
.movie {
	width: 100%;
	aspect-ratio: 16 / 9;
}

.movie iframe {
	width: 100%;
	height: 100%;
}

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

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

/*
	linkBtn
------------------------------ */
.linkBtn a {
	background: rgb(var(--mainColor));
	height: 70px;
	color: rgb(var(--wht));
	font-size: 20px;
	font-weight: bold;
	text-decoration: none;
	border: solid 2px rgb(var(--mainColor));
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.linkBtn.brw a {
	background: rgb(var(--brw));
	border: solid 2px rgb(var(--brw));
}

.linkBtn a svg {
	width: 11px;
	height: auto;
	fill: none;
	stroke: #fff;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2px;
	position: absolute;
	top: 50%;
	right: 1.5rem;
	transform: translateY(-50%);
}

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

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

.linkBtn a:hover svg {
	stroke: rgb(var(--mainColor));
}

.linkBtn.brw a:hover svg {
	stroke: rgb(var(--brw));
}

@media screen and (max-width: 1200px) {
	.linkBtn a {
		height: 5.83333vw;
		font-size: 1.66667vw;
	}

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

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

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

/*
	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(--brw), 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);
}