@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 Kaku Gothic ProN","Hiragino Mincho Pro", "游明朝", "Yu Mincho", YuMincho, 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
----------------------------------- */
body {
	background: rgb(var(--wht));
	line-height: 1.5;
	color: #303030;
	font-family: var(--hiragino);
	font-feature-settings: "palt"1;
	letter-spacing: 0.05em;
}

body.en {
	font-family: "Open Sans", sans-serif;
}

body.ko {
	font-family: "Noto Sans KR", sans-serif;
}

body.no-scroll {
	overflow: hidden;
}

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

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

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

main {
	position: relative;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(255, 255, 255, 0.8);
	z-index: 5;
	opacity: 0;
	transition: opacity 1s ease;
	pointer-events: none;
}

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

/* header
---------------------------------------- */
.header {
	display: flex;
	justify-content: flex-end;
	position: fixed;
	width: 100%;
	height: 56px;
	margin-left: auto;
	z-index: 200;
}

.header .btn {
	position: relative;
}
.header .btn.close::before {
	content: '';
	position: absolute;
	background: #303030;
	opacity: 0.5;
	width: 160px;
	height: 56px;
}

.header .btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #8A7F45;
	color: #fff;
	width: 160px;
	height: 56px;
	font-size: 17px;
}

.language-selector {
	position: relative;
	display: inline-block;
	margin-left: 5px;
}

.language-toggle {
	background: #8A7F45;
	color: #fff;
	width: 134px;
	height: 56px;
	border: none;
	padding: 8px 12px;
	cursor: pointer;
	font-family: "Lato", sans-serif;
	font-size: 17px;
	font-weight: 400;
	font-style: normal;
}

.language-toggle img {
	display: inline-block;
	margin-right: 8px;
	width: 18px;
	height: 18px;
}

.language-list {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	border: 1px solid #ccc;
	list-style: none;
	margin: 0;
	padding: 0;
	display: none;
	z-index: 100;
}

.language-list li {
	border-top: 1px solid #eee;
}

.language-list li a {
	background: #8A7F45;
	color: #fff;
	display: block;
	width: 134px;
	padding: 8px 12px;
	text-decoration: none;
	text-align: center;
}

.language-list li a:hover {
	background: #f0f0f0;
	color: #8A7F45;
}

@media screen and (max-width: 768px) {
	.header {
		height: 43px;
	}
	.header .btn.close::before {
		width: 117px;
		height: 42px;
	}
	.header .btn a {
		width: 117px;
		height: 42px;
		font-size: 14px;
	}
	.language-toggle {
		width: 107px;
		height: 42px;
		font-size: 14px;
	}
	.language-toggle img {
		width: 14px;
		height: 14px;
	}
	.language-list li a {
		width: 107px;
		font-size: 14px;
	}
}

/* footer
---------------------------------------- */
footer {
	background: #fff;
	position: relative;
	z-index: 100;
}

footer .bg {
	background: rgba(205, 205, 205, 0.35);
	padding: 50px 0 20px;
}

footer .note {
	font-size: 13px;
	text-align: center;
}

footer .note li {
	margin-bottom: 10px;
}
footer .note li::before {
	content: '※';
}

.en footer .note li::before {
	content: '*';
}

.ko footer .note li::before {
	content: '※';
}


footer a.link {
	display: block;
	color: #303030;
	font-size: 16px;
	text-align: center;
	margin-top: 76px;
}

footer a.link::before,
footer a.link::after {
	content: '｜';
	padding: 0 10px;
}

@media screen and (max-width: 768px) {
	footer .note {
		font-size: 11px;
	}
}

/* スライド
---------------------------------------- */
.sliderArea {
	max-width: 1100px;
	width: 100%;
	margin: 0 auto;
	padding: 0 25px;
}
.sliderArea.w300 {
	max-width: 300px;
}
.slick-slide {
	margin: 0;
}
.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: 1024px;
	margin: 0 auto;
}
.accordion_one .accordion_header {
	background-color: #8A7F45;
	color: #fff;
	font-size: 19px;
	font-weight: 400;
	padding: 20px 11%;
	text-align: center;
	position: relative;
	z-index: +1;
	cursor: pointer;
	transition-duration: 0.2s;
}
.accordion_one .accordion_header:hover {
	opacity: .8;
}
.accordion_one .accordion_header .i_box {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	right: 3%;
	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: #fff;
	border-radius: 10px;
	width: 30px;
	height: 1px;
	position: absolute;
	top: 8px;
	left: -6px;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	transform-origin: center center;
}
.accordion_one .accordion_header .i_box .one_i:before {
	width: 1px;
	height: 30px;
	top: -6px;
	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;
	background: rgb(225, 224, 183, 0.3);
	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 {
		width: 100%;
	}
	.accordion_one .accordion_header {
		font-size: 19px;
		text-align: center;
		padding: 15px;
	}
	.accordion_one .accordion_inner {
		padding: 30px 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: 1000;
	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);
}
}