<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*====== reset.css =====*/
abbr,address,article,aside,audio,b,blockquote,body,canvas,caption,cite,code,dd,del,details,dfn,div,dl,dt,em,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,summary,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video,body{margin:0;padding:0;border:0;outline:0;vertical-align:baseline;background:0 0}article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}a{margin:0;padding:0;border:0;font-size:100%;vertical-align:baseline;background:0 0}ins{background-color:#ff9;color:#000;text-decoration:none}mark{background-color:#ff9;color:#000;font-style:italic;font-weight:700}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted #000;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}
ul,ol{
	list-style: none;
}
input, textarea{
	outline: none;
	border: none;
	background: none;
	-webkit-appearance: none;
	padding: 0;
}
button{
	outline: none;
	cursor: pointer;
	border: none;
	background: none;
	-webkit-appearance: none;
	padding: 0;
}
/*====== clearfix =====*/
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.clearfix {
	min-height: 1px;
}

* html .clearfix {
	height: 1px;
	/*¥*//*/
	height: auto;
	overflow: hidden;
	/**/
}

/*====== box-sizing =====*/
html {
  box-sizing: border-box;
  height: 100%;
}
*, *:before, *:after { box-sizing: border-box; }

/* #wrapper { overflow: hidden; } */

/*====== font =====*/
body {
  color: #333;
	line-height: 1.875;
	font-size: 16px;
	font-weight: 400;
	position: relative;
	font-family: 'Noto Sans JP', sans-serif;
	background-color: #faf8f5;
	/* background-color: rgba(244, 239, 232, 0.4); */
}
.font-en{
  font-weight: 400;
	font-family: 'Aktiv Grotesk', sans-serif;
	line-height: 1.4;
}
.font-enCD{
	font-family: 'Aktiv Grotesk Cd', sans-serif;
}
.lt--04{
	letter-spacing: -0.04em;
}




/*====== link =====*/
a,
a:visited,
a:focus {
	text-decoration: none;
	cursor: pointer;
	color: inherit;
}

/*====== button =====*/
button { outline: none; }

/*====== img =====*/
img {
	width: 100%;
	height: auto;
	vertical-align: top;
}
iframe {
	width: 100%;
	vertical-align: top;
	height: 100%;
}
img.fit-img{
	width: 100%;
  height: 100%;
  object-fit: cover;
}

/*====== common style =====*/
.tleft { text-align: left; }
.tcenter { text-align: center; }
.tright { text-align: right; }

.fleft { float: left; }
.fright { float: right; }

.color-primary{
	color: #a28557 !important;
}
.color-secondary{
	color: #e7ddcf !important;
}
.color-notice{
	color:#FFF4D6 !important;
}
.color-warning{
  color: #e30000 !important;
}
.font-emphasis{
	font-weight: bold !important;
}
.form-label{
	color: #FFF;
	font-size: 12px;
	text-align: center;
	padding: 2px 8px;
	display: inline-block;
	margin: auto 6px;
}
.form-label.form-label--req{
	background: #a28557;
}
.form-label.form-label--op{
	background: #d2be9f;
}

.bg-primary{
	background-color: #f4efe8 !important;
}
.bg-secondary{
	background-color: #d2be9f !important;
}
.bg-notice{
	background-color: #FFF4D6 !important;
}

.mb-sm{
	margin-bottom: 16px;
}
.mb-md{
	margin-bottom: 32px;
}
.mb-lr{
	margin-bottom: 40px;
}
.mb-lg{
	margin-bottom: 64px;
}

.pos-re{
	position: relative;
}

@keyframes kf-bounce{
  0%{
		transform: translate3d(0, 60px, 0);
		opacity: 0;
	}
  100%{
		transform: translate3d(0, 0, 0);
		opacity: 1;
  }
}
.is-up,
.is-up-column li{
  opacity: 0;
}
.is-up.is-active,
.is-up-column .is-active{
	animation: kf-bounce ease 0.6s both;
	opacity: 1;
}



/* menu-open cover */
.slide-cover{
  position: absolute;
  width: 100%;
  height: 120%;
  background: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: none;
  z-index: 10;
}
</pre></body></html>