@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;
	--coda: "Coda", system-ui;

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

/* 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) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}	
	br.pc {
		display: none;
	}
	br.sp {
		display: inline-block;
	}
}

a[href^="tel"] {
	color: #000;
	text-decoration: none;
}

/*
	#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(--wht));
	line-height: 1.5;
	color: #343131;
	font-family: var(--notosansJP);
	font-feature-settings: "palt"1;
	letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {}

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

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


/* バーガーメニュー
---------------------------------------- */
.header {
	position: relative;
	z-index: 1000;
}

/* ハンバーガー画像ボタン */
.menu-button {
	position: fixed;
	top: 12px;
	right: 12px;
	width: 100px;
	height: 100px;
	cursor: pointer;
	z-index: 1200;
}

.menu-button img {
	width: 100%;
	height: auto;
	display: block;
}

.menu-button.hide {
	display: none;
}

@media (max-width: 768px) {
	.menu-button {
		top: 0;
		right: 0;
		width: 60px;
		height: 60px;
	}
}


/* ------------------------------
   背景の暗幕（オーバーレイ）
------------------------------ */
.menu-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
	z-index: 100;
}

.menu-overlay.active {
	opacity: 1;
	pointer-events: auto;
}


/* ------------------------------
メニュー本体（右→左スライド）
------------------------------ */
.nav-menu {
	position: fixed;
	top: 0;
	right: -370px;
	width: 370px;
	height: 100vh;
	background: rgba(35, 24, 21, 0.9);
	transition: right 0.4s ease;
	padding: 118px 20px 20px;
	z-index: 1100;
}

/* 開くときのクラス */
.nav-menu.active {
	right: 0;
}

@media (max-width: 768px) {
	.nav-menu {
		right: -100%;
		width: 100%;
	}
}

/* ------------------------------
閉じるボタン（CSSで×）
------------------------------ */
.menu-close {
	position: absolute;
	top: 45px;
	left: 15px;
	width: 28px;
	height: 28px;
	background: none;
	border: none;
	cursor: pointer;
}

.menu-close::before,
.menu-close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 4px;
	background: #E4D549;
}

.menu-close::before {
	transform: translateY(-50%) rotate(45deg);
}

.menu-close::after {
	transform: translateY(-50%) rotate(-45deg);
}

@media (max-width: 768px) {
	.menu-close {
		top: 25px;
		left: 15px;
		width: 18px;
		height: 18px;
	}
}

/* ------------------------------
メニュー内リンク
------------------------------ */
.nav-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.nav-menu a {
	display: block;
	text-align: center;
	color: #E4D549;
	text-decoration: none;
	font-family: var(--coda);
	font-size: min(1.6rem, 1.171vw);
	font-weight: 800;
	line-height: 42px;
	padding: 12px 0;
	position: relative;
}
.nav-menu a::before {
	content: '';
	background: url(../img/frame_menu.svg) no-repeat;
	background-size: 100%;
	display: block;
	width: 243px;
	height: 5px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
	.nav-menu a {
		font-size: min(1.6rem, 4.267vw);
	}
}

/* スライド
---------------------------------------- */
.slick-slide {
	transition: all ease-in-out .3s;
	opacity: 1;
}
.slick-active {
	opacity: 1;
}
.slick-current {
	opacity: 1;
}
.thumb {
	margin: 20px 0 0;
}
.thumb .slick-slide {
	cursor: pointer;
}
.thumb .slick-slide:hover {
	opacity: .7;
}

.slideA {
	max-width: 920px;
	margin: 0 auto;
	position: relative;
}

.slideA .slick-dots {
	position: absolute;
	right: 10px;
	bottom: -30px;
	text-align: right;
}

.slideA .slick-dots li button:before {
	font-size: 10px;
	color: #D0CBE8;
	opacity: 1;
}

.slideA .slick-dots li.slick-active button:before {
	color: #41CF75;
	opacity: 1;
}

.slideA .slick-dots li {
	margin: 0;
}

.slideA.typeB .slick-dots li.slick-active button:before {
	color: #3E2D63;
	opacity: 1;
}

.slideB {
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	padding: 20px 0;
}

/* 固定幅のカード */
.slideB .slide__item {
	width: 357px;     /* PC 固定幅 */
	margin-right: 16px;
}

.slideB img {
	width: 100%;
	height: auto;
}

/* SP */
@media (max-width: 768px) {
	.slideA .slick-dots {
		right: 0;
		text-align: center;
	}
	.slideB .slide__item {
		width: 266px; /* SP 固定幅 */
		margin-right: 12px;
	}
}


/* 共通
---------------------------------------- */
.wrap-fx{
display: flex;
justify-content: center;
}

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

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

@media (max-width: 768px) {
	#pageTop a {
		width: 35px;
		height: 35px;
	}
	#pageTop a svg {
		width: 13px;
	}
}

/* ----------------------------------------------------
fadeIn
---------------------------------------------------- */
/*
透明度が変化
------------------------------ */
.fadeBlock {
opacity: 0;
transition: all 1.5s;
}

.fadeBlock.fadeIn {
opacity: 1;
}

.title_fadeIn {
animation-name: fadeInAnime;
animation-duration: 3s;
animation-fill-mode: forwards;
opacity: 0;
}
@keyframes fadeInAnime{
from {
	opacity: 0;
}

to {
	opacity: 1;
}
}


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

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

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

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


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

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

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

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

/* ----------------------------------------------------
object
---------------------------------------------------- */
.object {
animation: korokoro 2.5s linear 0s infinite;
}

@keyframes korokoro {
10% {
	-webkit-transform: rotate(-10deg);
}

20% {
	-webkit-transform: rotate(8deg);
}

30% {
	-webkit-transform: rotate(-5deg);
}

40% {
	-webkit-transform: rotate(4deg);
}

50% {
	-webkit-transform: rotate(-3deg);
}

60% {
	-webkit-transform: rotate(2deg);
}

70% {
	-webkit-transform: rotate(-1deg);
}

80% {
	-webkit-transform: rotate(1deg);
}

90% {
	-webkit-transform: rotate(-1deg);
}

100% {
	-webkit-transform: rotate(0deg);
}
}