@charset "UTF-8";

@font-face {
  font-family: "Katibeh"; /* Google Fonts の指定と同じ名前でOK */
  src: local("Katibeh"), 
       url("https://fonts.gstatic.com/s/katibeh/v17/LDI2apSQOAYtSuYWp8ZhfH8.woff2") format("woff2");
  font-display: swap;

  /* メトリクスを上書きして OS 差を消す */
  ascent-override: 88%;
  descent-override: 12%;
  line-gap-override: 0%;
}

: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;
	--Katibeh: "Katibeh", serif;
	--NotoSansJP: "Noto Sans JP", sans-serif;
	--NotoSerifJP: "Noto Serif JP", 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;
	}
}

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

.indent {
	padding-left: 1em;
	text-indent: -1em;
}

/* メニュー
---------------------------------------- */
header {
	background: #AE2A0D;
	width: 100%;
}

header nav {
	max-width: 1000px;
	margin: 0 auto;
	height: 70px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header nav a {
	color: #fff;
	font-size: min(3.5rem, 2.562vw);
	font-family: var(--Katibeh);
	display: inline-block;
	transform: translateY(9px);
}

.os-windows header nav a {
	transform: translateY(0);
}

header button {
	display: none;
}

header.fixed {
	position: fixed;
	z-index: 9999;
}

@media screen and (max-width: 768px) {
	header {
		position: relative;
		height: 70px; /* 固定ヘッダー的に高さ保持 */
	}

	/* ハンバーガーボタン（右上） */
	.hamburger {
		position: absolute;
		right: 16px;
		top: 50%;
		transform: translateY(-50%);
		width: 36px;
		height: 28px;
		display: inline-flex;
		flex-direction: column;
		justify-content: space-between;
		background: none;
		border: 0;
		padding: 0;
		cursor: pointer;
		z-index: 1100; /* ドロワーより上 */
	}
	.hamburger span {
		display: block;
		width: 100%;
		height: 3px;
		background: #fff;
		transition: transform .25s ease, opacity .2s ease;
		transform-origin: center;
		border-radius: 2px;
	}

	/* ドロワーナビ（右から出る） */
	#sp-drawer {
		display: block;
		position: fixed;
		right: 0;
		top: 0;
		height: 100vh;
		width: min(80vw, 320px);
		background: #AE2A0D;
		padding: 90px 20px 20px;
		transform: translateX(100%);
		transition: transform .3s ease;
		z-index: 1050;
	}
	#sp-drawer a {
		display: block;
		font-size: min(4rem, 10.667vw);
		padding-top: 14px;
	}

	/* 背景オーバーレイ */
	.drawer-backdrop {
		position: fixed;
		inset: 0;
		background: rgba(0,0,0,.4);
		opacity: 0;
		visibility: hidden;
		transition: opacity .3s ease, visibility .3s ease;
		z-index: 1040;
	}

	/* PC時の横並びナビは非表示（SPではドロワーのみ使う） */
	header nav {
		max-width: none;
		margin: 0;
		height: auto;
	}
	/* 開いた状態のスタイル（.is-open をヘッダーに付与） */
	header.is-open #sp-drawer {
		transform: translateX(0%);
	}
	header.is-open .drawer-backdrop {
		opacity: 1;
		visibility: visible;
	}
	header.is-open .hamburger span:nth-child(1) {
		transform: translateY(12.5px) rotate(45deg);
	}
	header.is-open .hamburger span:nth-child(2) {
		opacity: 0;
	}
	header.is-open .hamburger span:nth-child(3) {
		transform: translateY(-12.5px) rotate(-45deg);
	}

	/* スクロール固定用 */
	body.noscroll {
		overflow: hidden;
		touch-action: none;
	}
}

/* スライド
---------------------------------------- */
.sliderArea {
	max-width: 1100px;
	width: 100%;
	margin: 0 auto;
	padding: 0 25px;
}
.sliderArea.w300 {
	max-width: 300px;
}
.slick-slide {
	margin: 0 5px;
}
.slick-slide img {
	width: 100%;
	height: auto;
}
.slick-prev, .slick-next {
	z-index: 1;
}
.slick-prev:before, .slick-next:before {
	color: #000;
}
.slick-slide {
	transition: all ease-in-out .3s;
	opacity: .2;
}
.slick-active {
	opacity: 1;
}
.slick-current {
	opacity: 1;
}
.thumb {
	margin: 20px 0 0;
}
.thumb .slick-slide {
	cursor: pointer;
}
.thumb .slick-slide:hover {
	opacity: .7;
}

/* アコーディオン
---------------------------------------- */
.accordion_one {
	max-width: 980px;
	margin: 0 auto;
}
.accordion_one .accordion_header {
	color: #242424;
	font-size: min(1.7rem, 1.328vw);
	font-weight: bold;
	padding: 20px 30px;
	text-align: left;
	position: relative;
	z-index: +1;
	cursor: pointer;
	transition-duration: 0.2s;
}
.accordion_one .accordion_header:hover {
	opacity: .8;
}

.accordion_one .accordion_header span {
	font-size: min(1.4rem, 1.094vw);
	font-weight: 400;
}

.accordion_one .accordion_header .i_box {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	right: 5%;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	box-sizing: border-box;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transform-origin: center center;
	transition-duration: 0.2s;
}
.accordion_one .accordion_header .i_box .one_i {
	display: block;
	width: 18px;
	height: 18px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transform-origin: center center;
	transition-duration: 0.2s;
	position: relative;
}
.accordion_one .accordion_header.open .i_box {
	-webkit-transform: rotate(-360deg);
	transform: rotate(-360deg);
}
.accordion_one .accordion_header .i_box .one_i:before, .accordion_one .accordion_header .i_box .one_i:after {
	display: flex;
	content: '';
	background-color: #B48A47;
	border-radius: 10px;
	width: 18px;
	height: 2px;
	position: absolute;
	top: 8px;
	left: 0;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	transform-origin: center center;
}
.accordion_one .accordion_header .i_box .one_i:before {
	width: 2px;
	height: 18px;
	top: 0;
	left: 8px;
}
.accordion_one .accordion_header.open .i_box .one_i:before {
	content: none;
}
.accordion_one .accordion_header.open .i_box .one_i:after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.accordion_one .accordion_inner {
	display: none;
	padding: 30px 30px;
	box-sizing: border-box;
}
.accordion_one .accordion_inner .box_one {
	height: 300px;
}
.accordion_one .accordion_inner p.txt_a_ac {
	margin: 0;
}
@media screen and (max-width: 1024px) {
	.accordion_one .accordion_header {
		font-size: 18px;
	}
	.accordion_one .accordion_header .i_box {
		width: 30px;
		height: 30px;
		margin-top: -15px;
	}
}
@media screen and (max-width: 767px) {
	.accordion_one .accordion_header {
		font-size: 16px;
		text-align: left;
		padding: 15px 60px 15px 15px;
	}
}

/* opening-animation
---------------------------------------- */
#opening-animation {
	background: rgb(var(--blk));
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 1;
	position: relative;
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
	z-index: 2000;
}

#main-content {
	opacity: 0;
	display: none;
	transition: opacity 2s ease-out;
}

#count-up {
	color: rgb(var(--wht));
	font-family: "futura-pt", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 80px;
	font-variant-numeric: tabular-nums;
	letter-spacing: normal;
}

#count-up span {
	width: 48px;
	text-align: center;
	display: inline-block;
}

#skip-button {
	background: #4D4D4D;
	padding: 10px;
	color: #fff;
	font-family: var(--mr-eaves);
	font-size: 1.15rem;
	border: none;
	position: absolute;
	top: 20px;
	right: 20px;
	cursor: pointer;
}

@media screen and (max-width: 768px) {
	#opening-animation {
		height: 100vh;
		height: 100dvh;
	}
}

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

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

.decoration01,
.decoration02 {
	opacity: 0;
}

.decoration01 {
	animation: fadeIn 1s ease-in-out forwards;
	animation-delay: 0.5s;
}

.decoration02 {
	animation: fadeIn 1s ease-in-out forwards;
	animation-delay: 1s;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInContents {
	0% {
		opacity: 0;
		transform: translateX(-50%) translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}
}

@keyframes fadeInWrap {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}
