@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;
	--hiragino: "Hiragino Mincho Pro", "游明朝", "Yu Mincho", YuMincho, serif;
	--notosansjp: "Noto Sans JP", sans-serif;
	--inter: "Inter", sans-serif;

	/* color */
	--blk: 98, 95, 95;
	--wht: 255, 255, 255;
	--brw: 188, 130, 87;
	--lightBlue: 220, 241, 244;
	--mainColor: 193, 174, 137;
	--periodColor: 98, 95, 95;
	--textColor: 112, 112, 112;
	--bgcolor: 247, 242, 233;
}

/* reset add
----------------------------------- */
body,h1, h2, h3, h4, h5, h6 {
	font-size: 16px;
	font-weight: normal;
}

ul {
	list-style: none;
}

a:hover {
	opacity: 0.8;
}

.pc {
	display: block;
}
.sp {
	display: none;
}
br.pc {
	display: inline-block;
}
br.sp {
	display: none;
}
@media screen and (max-width: 768px) {
	body,h1, h2, h3, h4, h5, h6 {
		font-size: 14px;
	}
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}	
	br.pc {
		display: none;
	}
	br.sp {
		display: inline-block;
	}
}

/*
	#reset
------------------------------ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

p:not(:last-of-type) {
	margin-bottom: 1em;
	word-wrap: break-word;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

fieldset, img {
	border: 0;
}

address, caption, cite, code, dfn, em, th, var {
	font-style: normal;
	font-weight: normal;
}

ol, ul {
	list-style: none;
}

caption, th {
	text-align: left;
}

a {
	text-decoration: none;
	transition: all 0.5s ease 0s;
}
a:hover {
	opacity: 0.7;
}

area {
	border: none;
	outline: none;
}

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


/* common
----------------------------------- */
html {
	scroll-behavior: smooth;
	font-size: 62.5%;
}

body {
	background: rgb(var(--bgcolor));
	line-height: 1.5;
	color: #000;
	font-family: var(--notosansjp);
	font-feature-settings: "palt"1;
	letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {}

.w869 {
	max-width: 869px;
	margin: 0 auto;
}

.w890 {
	max-width: 890px;
	margin: 0 auto;
}

.w950 {
	max-width: 950px;
	margin: 0 auto;
}

.w1400 {
	max-width: 1400px;
	margin: 0 auto;
}


/* バーガーメニュー
---------------------------------------- */
header {
	background: #B30637;
	width: 100%;
	position: fixed;
	z-index: 100;
}

header nav {
	max-width: 1366px;
	margin: 0 auto;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	height: 82px;
}

header nav a {
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	line-height: 29px;
	position: relative;
}

header nav a::before {
	content: '';
	background: #fff;
	display: block;
	width: 26.5px;
	height: 2px;
	position: absolute;
	top: 120%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.hamburger-menu {
	display: none;
}

/* ===== SP用追加 ===== */
@media screen and (max-width: 768px) {
	header {
		background: none;
		height: 64px;
	}
	header nav {
		height: auto;
	}
	.hamburger-menu {
		display: block;
		position: fixed;
		top: 4px;
		right: 0;
		z-index: 1003;
		display: inline-flex;
		flex-direction: column;
		align-items: center;
		gap: 1px;
		background: #B30637;
		border: 0;
		padding: 13px 10px 0; 
		cursor: pointer;
		color: #fff;
		width: 50px;
		height: 55px;
	}
	.hamburger-menu__label {
		font-size: 10px;
		letter-spacing: 0.12em;
		line-height: 1;
		transition: opacity .25s ease;
		margin-bottom: 7px;
	}
	.hamburger-menu__bar {
		width: 36px;
		height: 2px;
		background: #fff;
		display: block;
		transition: transform .25s ease, opacity .25s ease;
	}
	.hamburger-menu__bar + .hamburger-menu__bar {
		margin-top: 6px;
	}
	.navigation {
		position: fixed;
		top: 0;
		right: 0;
		height: 100dvh;
		width: 90vw;
		transform: translateX(100%);
		transition: transform .35s ease;
		background: #B30637;
		z-index: 1002;
		display: flex;
		align-items: center;
		flex-direction: column;
		gap: 20px;
		padding: 96px 24px 24px;
	}
	.navigation a {
		font-size: 20px;
		font-weight: 500;
		line-height: 29px;
	}
	.navigation a::before {
		display: none;
	}
	.overlay {
		position: fixed;
		inset: 0;
		background: rgba(0,0,0,.5);
		opacity: 0;
		transition: opacity .35s ease;
		z-index: 90;
		pointer-events: none;
	}
	body.is-open .navigation {
		transform: translateX(0);
	}
	body.is-open .overlay {
		opacity: 1;
		pointer-events: auto;
	}
	body.is-open .hamburger-menu__label {
		opacity: 0;
	}
	body.is-open .hamburger-menu__bar:nth-of-type(2) {
		transform: translateY(4px) rotate(45deg);
	}
	body.is-open .hamburger-menu__bar:last-of-type {
		transform: translateY(-4px) rotate(-45deg);
	}
	header nav {
		max-width: none;
		margin: 0;
		justify-content: flex-start;
		align-items: flex-start;
	}
}

body.scroll-lock {
	overflow: hidden;
	touch-action: none;
}


/* スライド
---------------------------------------- */
.slide {
	width: 90%;
	margin: 0 auto;
	position: relative;
}

.slide img {
	width: 100%;
	height: auto;
	display: block;
}

.slick-slide {
	margin: 0 5px;
}

/* 矢印ボタン */
.slick-prev,
.slick-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	padding: 0;
	width: 20px;
	height: 20px;
	z-index: 2;
	cursor: pointer;
}
.slick-prev::before,
.slick-next::before {
	content: '';
}

.slick-prev {
	left: 20px;
}
.slick-next {
	right: 20px;
}

.slick-prev img,
.slick-next img {
	width: 100%;
	height: auto;
	display: block;
}

.slick-prev:hover img,
.slick-next:hover img {
	opacity: 0.7;
	transition: opacity 0.3s;
}

.slick-dots {
	bottom: -35px;
}

.slick-dots li {
	margin: 0 6px;
}

.slick-dots li button:before {
	content: '◯';
	color: #B30637;
	font-size: 12px;
	opacity: 1;
}
.slick-dots li.slick-active button:before {
	content: '●';
	color: #B30637;
	opacity: 1;
}

@media screen and (max-width: 768px) {
	.slick-prev,
	.slick-next {
		width: 15px;
		height: 15px;
	}
	.slick-prev {
		left: 15px;
	}
	.slick-next {
		right: 15px;
	}
}

/* ----------------------------------------------------
	pagetop
---------------------------------------------------- */
#pageTop a {
	background: rgba(var(--mainColor), 0.8);
	width: 64px;
	height: 64px;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 0.5em;
	bottom: 0.5em;
	z-index: 50;
	transform: rotate(-180deg);
}

#pageTop a svg {
	width: 20px;
	height: auto;
}