@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;
	--notoJP: "Noto Sans JP", 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;
}

/* 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) {
	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: #fff;
	font-family: var(--notoJP);
	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;
}

.note {
	font-size: min(1.2rem, 0.878vw);
	padding-left: 1em;
	text-indent: -1em;
}
.note::before {
	content: '※';
}

@media screen and (max-width: 768px) {
	.note {
		font-size: min(1.2rem, 3.2vw);
	}
}


/* ----------------------------------------------------
	ハンバーガーメニュー
---------------------------------------------------- */
.hamburger,
.sp-menu {
	display: none;
}

@media screen and (max-width: 768px) {
	.hamburger {
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 8px;
		width: 50px;
		height: 50px;
		position: fixed;
		top: 10px;
		right: 10px;
		z-index: 1001;
		background: rgba(217, 87, 87, 0.50);
		border: 1px solid #DBB164;
		cursor: pointer;
	}
	.hamburger span {
		display: block;
		width: 26px;
		height: 2px;
		margin: 0 auto;
		background: #DBB164;
		transition: transform .3s, opacity .3s;
	}
	.hamburger.is-open span:nth-child(1) {
		transform: translateY(9px) rotate(45deg);
	}
	.hamburger.is-open span:nth-child(2) {
		opacity: 0;
	}
	.hamburger.is-open span:nth-child(3) {
		transform: translateY(-11px) rotate(-45deg);
	}
	.sp-menu {
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 1000;
		width: 100%;
		max-width: 100%;
		height: 100vh;
		height: 100dvh;
		padding: 50px 30px 30px;
		background: rgba(99, 28, 28, 0.90);
		transform: translateX(100%);
		transition: transform .3s ease;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	.sp-menu.is-open {
		transform: translateX(0);
	}
	.sp-menu__list {
		list-style: none;
		padding: 0;
		margin: 0;
	}
	.sp-menu__list li {
		border-bottom: 1px solid #DBB164;
	}
	.sp-menu__list li:last-child {
		border-bottom: none;
	}
	.sp-menu__list a {
		display: block;
		padding: 18px 0;
		text-decoration: none;
		color: #DBB164;
		text-align: center;
		font-family: var(--hiragino);
		font-size: min(2.5rem, 6.667vw);
		font-weight: 300;
	}
	.sp-menu__list a span {
		display: block;
		font-size: min(1.6rem, 4.267vw);
		font-weight: 600;
	}
}

/* ----------------------------------------------------
	tab
---------------------------------------------------- */
.tab-content {
	display: none;
	max-width: 760px;
	margin: 32px auto 0;
}

.tab-content.is-active {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.tab-content figure {
	width: 356px;
	text-align: center;
}

.tab-content figure .txt {
	font-size: min(1.6rem, 1.171vw);
	font-weight: 400;
	line-height: 18px;
	margin-top: 10px;
}

.tab-nav__item {
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #631C1C;
	width: 290px;
	height: 35px;
	color: #631C1C;
	font-size: min(1.6rem, 1.171vw);
	font-weight: 400;
	line-height: 30px;
	margin: 0 15px;
	cursor: pointer;
}

.tab-nav__item.is-active {
	border: 1px solid #631C1C;
	background: #631C1C;
	color: #fff;
}

.tab .tab-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
}

@media screen and (max-width: 768px) {
	.tab-content.is-active {
		display: block;
	}
	.tab-content figure {
		width: 287px;
		margin: 0 auto 32px;
	}
	.tab-content figure .txt {
		font-size: min(1.6rem, 4.267vw);
		line-height: 23px;
	}
	.tab-nav__item {
		width: 287px;
		height: 36px;
		font-size: min(1.6rem, 4.267vw);
		margin: 0 auto 16px;
	}
	.tab .tab-nav {
		display: block;
		justify-content: center;
		align-items: center;
		margin-top: 30px;
	}
}

/* ----------------------------------------------------
	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: 10;
	transform: rotate(-180deg);
}

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

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