@charset "UTF-8";
/* CSS Document */


html, body {
	background: #8c845a;
	color: #FFF;;
	font-size: 12px;
	line-height: 1.6;
	letter-spacing: .2em;
	font-feature-settings: "palt";
	overflow-x: hidden;
	font-family: "a-otf-ryumin-pr6n", serif;
	font-weight: 300;
	font-style: normal;
}

body{
	min-height: 100dvh;
	padding-bottom: 3.3em;
	background: url(img/common/bg.svg) repeat-x bottom;
	background-position: left calc(100% - 0.5em);
	background-size: 2em  auto;
}


@media (max-width: 1500px) {

	html, body{
		font-size: .86vw;
	}
	
	.stext{
		font-size: 12px;
	}
}

.sp{display: none!important;}


header {
	position: fixed;
	top: 0;
	right: 0;	
	padding-top: 5em;
	padding-right: 5vw;
	z-index: 10;
}

header .gnav{
	display: flex;
	justify-content: flex-end;
	gap:3.3vw;
}

header .gnav:hover li{
	opacity: .4;
}

header .gnav li{
	font-size: 1.3em;
	padding-bottom: 1em;
	white-space: nowrap;
	position: relative;
	transition: opacity .4s ease;
}

header .gnav li:hover{
	opacity: 1;
}

header .gnav li.nohover{
	opacity: .4;
}

header .gnav li::after {
    content: "";
    display: block;
    position: absolute;
    width: 0%;
    bottom: -1px;
    left: 0;
    height: 1px;
    background: rgba(255,255,255,0.5);
    transition: width .4s cubic-bezier(.25, .1, .25, 1) 0ms;
}

header .gnav li:hover::after {
	width: 100%;
}

header .logo{
	position: fixed;
	top: 5em;
	left: 5vw;
	z-index: 10;
	width: 13vw;
	min-width: 120px;
	transition: .4s ease-out;
}

.fixed header .logo{
	transform: scale(0.8) translateY(-7em);
}

.opening-wrap{
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100dvh;
	background: #8c845a;
	z-index: 999;
	transition: 1s ease 1s;
}

.enter .opening-wrap,
.skip .opening-wrap{
	opacity: 0;
	pointer-events: none;
}

.opening-bg{
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
	background: #8c845a;
  -webkit-mask-image: url(img/common/mask.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 100%;
  -webkit-mask-size: 200% 400%;
  mask-repeat: no-repeat;
  mask-position: 50% 100%;
  mask-size: 200% 400%;
  pointer-events: none;
  z-index: 998;
  transition: mask-position 2s ease 1.3s, opacity 2s ease 1.3s;
}

.enter .opening-bg,
.skip .opening-bg{
  -webkit-mask-position: 50% 0%;
  mask-position: 50% 0%;
}

.skip .opening-wrap,
.skip .opening-bg{
	transition-delay: 0s;
}

.opening-wrap .opening-slider{
	width: 17em;
	aspect-ratio: 1 / 1.33;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
}

.opening-wrap .opening-slider::after{
	content: "";
	display: block;
	width: 110%;
	height: 110%;
	background: #8c845a;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%) scaleY(0);
	transform-origin: bottom;
	transition: transform 1s ease;	
}

.enter .opening-wrap .opening-slider::after{
	transform: translate(-50% , -50%) scaleY(1);
}

.opening-wrap .opening-slider .slide{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.opening-wrap .opening-slider .slide img{
	width: 100%;
	height: 100%;
	object-fit:cover;
	font-family: 'object-fit: cover;'
}

.opening-wrap .skip{
	font-size: 1.25em;
	letter-spacing: .1em;
	position: absolute;
	bottom: 3em;
	padding-right: 1.6em;
	right: 3vw;	
	cursor: pointer;
}

.opening-wrap .skip::after{
	content: "→";
	display: block;
	position: absolute;
	top: 55%;
	right: 0;
	transform: translateY(-50%);
}

#loading{
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	color: #ccc2be;
	pointer-events: none;
}

.counter-wrap{
	position: fixed;
	width: 94%;
	z-index: 999;
	left: 3%;
	bottom: 3em;
}

.loading-end .counter-wrap{
	opacity: 0;
	transition: .6s ease-out 1s;
}

#counter-container{
	width: 0%;
	position: relative;
	padding-right: 7em;
	opacity: 0;
	transition: opacity .5s ease 1s;
}

.load-on #counter-container{
	opacity: 1;
}

#counter-container::before{
	position: absolute;
	bottom: 0;
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-image: radial-gradient(circle, #ccc2be 1px, transparent 1px);
	background-size: 5px 2px; /* 点の間隔を調整 */
	transform: translateY(-1.2em);
	transform-origin: right;
}

.loading-end #counter-container::before{
	transition: .6s ease-out;
	transform: translateY(-1.2em) scaleX(0);
}

#counter-container::after{
	position: absolute;
	bottom: 0;
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: #ccc2be;
	transform: translateY(-1.2em) scaleX(0);
	transform-origin: left;
}

.load-on #counter-container::after{
	width: 100%;
	transform: translateY(-1.2em) scaleX(1);
	transition: transform .6s ease-out 3.5s;
}

.loading-end #counter-container::after{
	transform-origin: right;
	transition: transform .6s ease-out;
	transform: translateY(-1.2em) scaleX(0);
}

#counter-text{
	font-size: 2.2em;
	line-height: 1;
	transition: .3s ease-out .6s;
}

#counter-container .text-wrap{
	display: block;
	overflow: hidden;
	position:absolute;
	right: 0;
	bottom: .6em; 
	padding-left: 2em;
	background: #8c845a;
	z-index: 2;
}

.loading-end #counter-text{
	transform: translateY(100%);
}

.bcirc{
	position: fixed;
	bottom: 4em;
	left: 3%;
	overflow: hidden;
	z-index: 2;
	transition: .5s ease 1.5s;
}

.load-on .bcirc{
	opacity: 0;
}

.bcirc::after{
	content: "";
	display: block;
	width: .6em;
	height: .6em;
	border: 2px solid #ccc2be;
	border-radius: 100%;
	transform: translateY(100%);
	transition: 1s ease .5s;
}

.load-on .bcirc::after{
	transform: translateY(0);
}


/*
TOP
--------------------
*/

.top-contents-wrap{
	padding: 25em 5vw 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.top-contents-wrap .top-text-wrap{
	width: 30%;
	padding-top: 10em;
	padding-bottom: 3vw;
}

@media (max-width: 1300px) {

.top-contents-wrap .top-text-wrap{
	width: 33vw;
}

}

.top-contents-wrap .top-text-wrap .read{
	font-size: 2.9em;
	letter-spacing: .1em;
	margin-bottom: 2.2em;
}

.top-contents-wrap .top-text-wrap .text{
	line-height: 2.3;
}

.top-contents-wrap .top-icatch-wrap{
	width: 50%;
}

.top-contents-wrap .top-icatch-wrap .slide{
	height: 0;
	padding-top: 100%;
	position: relative;
}

.top-contents-wrap .top-icatch-wrap img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit:cover;
	font-family: 'object-fit: cover;'
}


/*
PAGE
--------------------
*/

.page-contents-wrap{
	padding-top: 40em;
	width: 90vw;
	margin: 0 auto;
}


/*
HISTORY
--------------------
*/

.history-contents{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 15em;
}

.history-contents .thumb-wrap{
	width: 60%;
}

.history-contents .text-wrap{
	width: 30%;
}

.history-contents .text-wrap .read{
	font-size: 2.9em;
	letter-spacing: .1.5em;
	margin-bottom: 2.2em;
}

.history-contents .text-wrap .text{
	line-height: 2.3;
}

@media (max-width: 1300px) {

.history-contents{
	align-items: center;
}

.history-contents .text-wrap {
    width: 33%;
}

}


/*
ABOUT
--------------------
*/

.about-icatch-wrap{
	width: 100vw;
	position: relative;
	left: calc(50% - 50vw);
	margin-bottom: 12em;
}

.about-icatch-wrap img{
	width: 100%;
	height: 100%;
	object-fit:cover;
	font-family: 'object-fit: cover;'
}

.about-contents-wrap{
	display: flex;
	justify-content: space-between;
	margin-bottom: 15em;
}

.about-contents-wrap .logo-wrap{
	width: 30%;
	text-align: center;
}

.about-contents-wrap .logo-wrap .logo{
	width: 80%;
	margin: 0 auto;
}

.about-contents-wrap .logo-wrap .read{
	font-size: 2.5em;
	letter-spacing: .2em;
	margin-bottom: 1em;
}

.about-contents-wrap .text-wrap{
	width: 60%;
	max-width: 860px;
	padding-right: 10vw;
}

.about-contents-wrap .text-wrap .text{
	line-height: 2.3;
	margin-bottom: 5em;
}

.about-contents-wrap .text-wrap .info{
	line-height: 2.3;
	font-size: 1.5em;
	margin-bottom: 5em;
}

.in-wrap .title{
	font-size: 1.16em;
	letter-spacing: .18em;
	margin-bottom: 2em;
}

.in-wrap .title2{
	font-size: 1.16em;
	letter-spacing: .18em;
	margin-bottom: 2em;
}

.in-wrap .btn{
	font-size: 1.08em;
	letter-spacing: .14em;
	display: table;
	padding: 1em 5em;
	border: 1px solid #FFF;
	border-radius: 3px;
	transition: .6s ease;
}

.in-wrap .btn:hover{
	background: #FFF;
	color: #8c845a;
}

.in-wrap .btn span{
	position: relative;
	padding-left: 2em;
}

.in-wrap .btn span::before{
	content: "";
	display: block;
	width: 1.14em;
	height: 1.14em;
	background: url(img/common/icon_in.svg) no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	transition: .6s ease;
}

.in-wrap .btn:hover span::before{
	background: url(img/common/icon_in_c.svg) no-repeat;
	background-size: contain;
}

.about-slider{
	margin-bottom: 10em;
}

.about-slider .slick-slide img {
	height: 50em;
	width: 100%;
	object-fit: cover;	
}



/*
COMPANY
--------------------
*/

.company-icatch-wrap{
	position: relative;
	margin-bottom: 16em;
}

.company-icatch-wrap img{
	width: 100%;
}

.com-title{
	font-size: 2.9em;
	letter-spacing: .1em;
}

.company-icatch-wrap .com-title{
	margin-bottom: 1em;
}

.company-contents-wrap{
	max-width: 1620px;
	margin: 0 auto 12em;
	padding-bottom: 12em;
	position: relative;
}

.company-contents-wrap::after{
	content: "";
	display: block;
	width: 100vw;
	height: 1px;
	background: rgba(255,255,255,0.5);
	position: absolute;
	left: calc(50% - 50vw);
	bottom: 0;
}

.company-contents-wrap .inner{
	display: flex;
	justify-content: space-between;
}

.company-contents-wrap .inner .contents-wrap{
	width: 58%;
}

.company-contents-wrap .inner .contents-wrap .company-data-contents{
	display: flex;
	flex-wrap: wrap;
}

.company-contents-wrap .inner .contents-wrap .company-data-contents dt{
	font-size: 1.15em;
	letter-spacing: .1em;
	width: 11rem;
	padding: 3rem 0;
	border-bottom: 1px solid rgba(255,255,255,0.5);
}

.company-contents-wrap .inner .contents-wrap .company-data-contents dd{
	width: calc(100% - 12rem);
	padding: 3rem 0;
	border-bottom: .5px solid #FFF;
}

.company-contents-wrap .inner .contents-wrap .company-data-contents dt:first-of-type,
.company-contents-wrap .inner .contents-wrap .company-data-contents dd:first-of-type{
	padding-top: 0;
}

.company-contents-wrap .company-detail-contents{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	padding-bottom: 1.08em;
	margin-bottom: 1.08em;
	position: relative;
	border-bottom: 1px solid rgba(255,255,255,0.5);
}

.company-contents-wrap .company-detail-contents .title{
	font-size: 1.25em;
	letter-spacing: .3em;
	margin-bottom: 2em;
}

.company-contents-wrap .company-detail-contents .text{
	line-height: 1.9;
	margin-bottom: 1.3em;
}

.company-contents-wrap .company-detail-contents a.btn{
	display: table;
	padding: .3em 1.6em .4em;
	border-radius: 3em;
	background: rgba(255,255,255,0.7);
	border: 1px solid rgba(255,255,255,0.7);
	color: #8c845a;
	letter-spacing: .14em;
	transition: .3s ease;
}

.company-contents-wrap .company-detail-contents a.btn:hover{
	background: none;
	color: #FFF;
}

.company-contents-wrap .company-detail-contents .text-wrap{
	width: 55%;
}

.company-contents-wrap .company-detail-contents .thumb-wrap{
	width: 40%;
	padding-top: 26%;
	position: relative;
}

.company-contents-wrap .company-detail-contents .thumb-wrap img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
	width: 100%;
	height: 100%;
	object-fit:cover;
	font-family: 'object-fit: cover;'
}

.company-contents-wrap.history{
	padding-bottom: 0;
	margin-bottom: 14em;
}

.company-contents-wrap.history::after{
	display: none;
}

.company-contents-wrap.history .com-title{
	margin-bottom: 8rem;
}

.company-contents-wrap.history .company-detail-contents .date{
	font-size: 1.6em;
	letter-spacing: .1em;
	padding-bottom: 1em;
	margin-bottom: 2em;
	position: relative;
}

.company-contents-wrap.history .company-detail-contents .date::after{
	content: "";
	display: block;
	width: 1em;
	height: 1px;
	background: rgba(255,255,255,0.5);
	position: absolute;
	bottom: 0;
	left: 0;
}

.company-contents-wrap.history .company-detail-contents{
	padding-bottom: 2.5em;
	margin-bottom: 3.3em;
}

.company-contents-wrap .company-detail-contents .text-wrap{
	padding-top: 1em;
}

.company-contents-wrap.history .company-detail-contents .title{
	font-size: 1.3em;
	margin-bottom: 1.4em;
}

.company-contents-wrap.history .company-detail-contents .text{
	line-height: 2;
}

.company-contents-wrap.history .company-detail-contents .thumb-wrap{
	width: 18%;
	padding-top: 11.3%;
}


/*
CONTACT
--------------------
*/

.contact-contents-wrap{
	width: 90%;
	max-width: 1060px;
	margin: 0 auto 14em;
	padding-top: 30em;
	position: relative;
}

.form-wrap .read{
	text-align: center;
	line-height: 2;
	margin-bottom: 6em;
}

.form-wrap .red{
	color: #ce2e2e;
}

.form-wrap table{
	width: 90%;
	margin: 0 auto;
}

.form-wrap table th{
	padding-bottom: 1.5em;
	padding-right: 1.5em;
	vertical-align: top;
	white-space: nowrap;
}

.form-wrap table td{
	padding-bottom: 1.5em;
}

.form-wrap .step-wrap{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	border-top: 1px solid rgba(255,255,255,0.5);
	border-bottom: 1px solid rgba(255,255,255,0.5);
	margin-bottom: 5em;
}

.form-wrap .step-wrap div{
	text-align: center;
	width: 33.333%;
	padding: 2em 0;
	opacity: .5;
}

.form-wrap .step-wrap div.current{
	opacity: 1;
}

.form-wrap .btn-wrap{
	display: flex;
	justify-content: center;
	margin: 4em auto 0;
	position: relative;
}

input[type="reset"],
input[type="button"].back_button{
    color: #FFF;
    background: none;
    position: absolute;
    display: block;
    -webkit-appearance: none;
    border: none;
    outline: none;
	cursor: pointer;
    bottom: -4em;
    left: 50%;
    transform: translateX(-50%);
}

input[type="submit"],
input[type="button"].confirm_button{
    font-size: 1.4em;
    font-weight: 700;
    letter-spacing: .2em;
	padding: 1.5em 3.5em;
	border: none;
    width: 100%;
    max-width: 354px;
    background: #484222;
    color: #FFF;
    border-radius: .5em;
    font-family: inherit;
    -webkit-appearance: none;
    outline: none;
	cursor: pointer;
	text-align: center;
	display: block;
    transition: .4s ease-out;
}

input[type="submit"]:hover,
input[type="button"].confirm_button:hover{
	opacity: .7;
}

input[type="reset"]{
	color: inherit;
}

input[type="text"],
input[type="email"],
textarea{
	width: 100%;
    padding: 1em;
    line-height: 1.85714;
    letter-spacing: .1em;
    border: 1px solid #CCC;
    margin-top: 0;
    transition: background-color 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    outline: none;
    -webkit-appearance: none;
}

input[type="text"].size-m{
	width: 90%;
	max-width: 400px;
}

input[type="text"].size-zip{
	display: inline-block;
	width: 100%;
	max-width: 300px;
	vertical-align: middle;
}

.form-wrap .policy-link a{
	text-decoration: underline;
}

.form-wrap.conf table{
	max-width: 500px;
}

.thanks-wrap{
	width: 90%;
	height: 90vh;
	display: flex;
	flex-flow: column;
	text-align: center;
	align-items: center;
	justify-content: center;
	padding-top: 10em;
	margin: 0 auto;
}

.thanks-wrap .title{
	font-size: 1.73em;
	margin-bottom: 1em;
}

.thanks-wrap p{
	font-size: 1.1em;
	margin-bottom: 3em;
}

.thanks-wrap a{
	font-size: 1.15em;
	text-decoration: underline;
}


/*
PRIVACY POLICY
--------------------
*/

.policy-contents-wrap{
	width: 90%;
	max-width: 1060px;
	padding-top: 30em;
	margin: 0 auto 14em;
}

.policy-read-wrap{
	line-height: 2;
	margin: 6em 0;
}

.policy-contents{
	margin-bottom: 6em;
}

.policy-contents .title{
	font-size: 1.3em;
	margin-bottom: 2em;
}

.policy-contents .ls-title::before{
	top: 1.3em;
}

.policy-contents .text{
	line-height: 2;
}

.policy-contents .text a{
	text-decoration: underline;
}

.policy-contents ul{
	margin-top: 2em;
}

.policy-contents .text ul{
	margin: 2em 0;
	list-style-type: decimal;
	padding-left: 1.3em;
}


.policy-contents .text ul li{
	line-height: 1.6;
	padding-left: .5em;
    margin-bottom: 1.2em;
}

.policy-contents .text ul li li{
	line-height: 1.8;
}

/* about slider 3:2 */
.about-slider .slide{
  position: relative;
  width: 100%;
  padding-top: 66.666%;
  overflow: hidden;
  line-height: 0;
}

.about-slider .slide img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.history-contents .line{
  display: inline-block;
  padding-bottom: 4px;
}
