@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');

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

	/* color */
	--blk: 89, 87, 87;
	--wht: 255, 255, 255;
	--gra: 197, 196, 196;
	--banner: 240, 240, 240;
	--season1: 150, 174, 208;
	--season2: 172, 199, 153;
	--season3: 198, 153, 156;
}

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

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

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

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

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

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

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

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

.sp {
	display: none;
}

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

	.sp {
		display: block;
	}
}

/*
	list
------------------------------ */
ul.list li {
	display: flex;
}

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

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

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

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

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

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

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

/*
	video
------------------------------ */
.video {
	margin: 0 auto;
	max-width: 640px;
	width: 100%;
	aspect-ratio: 16 / 9;
}

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

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

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

/*
	linkBtn
------------------------------ */
.linkBtn a {
	background: linear-gradient(-90deg, rgba(209, 173, 176, 1) 0%, rgba(217, 207, 191, 1) 25%, rgba(188, 210, 173, 1) 50%, rgba(180, 209, 210, 1) 72%, rgba(171, 191, 218, 1) 100%);
	margin: 0 auto;
	width: 320px;
	height: 66px;
	color: rgb(var(--wht));
	font-weight: bold;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.linkBtn a svg {
	width: auto;
	height: 23px;
	fill: none;
	stroke: rgb(var(--wht));
	stroke-miterlimit: 10;
	stroke-width: .85px;
	position: absolute;
	top: 50%;
	right: 1em;
	transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
	.linkBtn a {
		width: 100%;
		height: 17.6vw;
		font-size: 4.26667vw;
	}
}

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

.pageTop a svg {
	fill: rgb(var(--wht));
	width: 16px;
	height: auto;
}

@media screen and (max-width: 768px) {
	.pageTop a {
		bottom: 24vw;
	}
}