@charset "UTF-8";

/* !HTML5 elements
---------------------------------------------------------- */
header, footer, nav, section, aside, article
{ display: block;}

/* !Reseting
---------------------------------------------------------- */

body, div, pre, p, blockquote, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, th, td
{ margin: 0; padding: 0;}
input, textarea
{ margin: 0; font-size: 100%;}
label
{ cursor: pointer;}
table
{ border-collapse: collapse; border-spacing: 0; font-size: 100%;}
fieldset, img
{ border: 0;}
img
{ vertical-align: top; max-width: 100%;}
address, caption, cite, code, dfn, em, th, var
{ font-style: normal; font-weight: normal;}
ol, ul
{ list-style: none;}
caption, th
{ text-align: left;}
h1, h2, h3, h4, h5, h6
{ font-size: 100%; font-weight: normal;}
q:after, q:before
{ content:'';}
a, input,select,textarea,button
{ outline: none; }
abbr, acronym
{ border: 0;}
*, *:before, *:after {box-sizing: border-box;}


@media screen and (min-width: 768px) {
	.sp{display: none!important;}
}
@media screen and (max-width: 767px) {
	.pc{display: none!important;}
}
/* !Layout
---------------------------------------------------------- */
html { 
	overflow-y: scroll;
	font-size: 62.5%;
}
body {
	font-family: "EB Garamond", serif;
	font-weight: 400;
	font-style: normal;
	-webkit-text-size-adjust: none;
	line-height: 1.5;
	color: #EEEEEE;
	letter-spacing: 0.05em;
}


@media screen and (min-width: 768px) {
  html {
    font-size: calc(100vw / 144);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(100vw / 41.4);
  }
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;/*16px*/
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 3.2rem;/*16px*/
  }
}
/* !Base Fonts -------------------------------------------------------------- */
a {
	color: #EEEEEE;
	text-decoration: none;
	transition: all 0.5s !important;
	-moz-transition: all 0.5s !important; /* Firefox */
	-webkit-transition: all 0.5s !important; /* Chrome&Safari */
}

@media screen and (min-width: 768px) {
	a:hover {
		opacity: .7;
		text-decoration: none;
		transition: all 0.5s !important;
		-moz-transition: all 0.5s !important; /* Firefox */
		-webkit-transition: all 0.5s !important; /* Chrome&Safari */
	}

}
/* !wrapper
---------------------------------------------------------- */
#wrapper {
	overflow: hidden;
	background: #000000;
	width: 100%;
}
.menuOpen{
	overflow: hidden;
	height: 100vh;
}
.menuOpen #wrapper{
	position: fixed;
}
.overlay{
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	background: none;
	z-index: 97;
	text-indent: -999rem;
	pointer-events: auto;
}
.inner,
.inner02 {
	margin: 0 auto;
	width: 100%;
	max-width: 120rem;
	padding: 0 4rem;
	position: relative;
	z-index: 3;
}
.inner02 {
	max-width: 110.4rem;
}
@media screen and (max-width: 767px) {
	.inner,
	.inner02 {
		padding: 0 1.5rem;
	}
}
/* !header
---------------------------------------------------------- */
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 98;
	padding: 0 5rem 0 3.5rem;
}
.home #header{
	display: none;
}

#headerIn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 9rem;
}
#headerLogo img{
	width: 9.7rem;
}

@media screen and (max-width: 767px) {
	#header {
		padding: 0 0 0 1.5rem;
	}
	#headerIn {
		height: 6rem;
		font-size: 0;
	}
	#headerLogo img{
		width: 7rem;
	}

	.btnMenu a {
	  display: block;
	  width: 7rem;
	  height: 6rem;
	  box-sizing: border-box;
	  position: relative;
	  z-index: 999;
	}

	.btnMenu a span {
	  display: block;
	  background: #EEEEEE;
	  width: 4rem;
	  height: .2rem;
	  position: absolute;
	  left: 1.5rem;
	  transition: all 0.4s;
	  -webkit-transition: all 0.4s;
	  -moz-transition: all 0.4s;
	}

	.btnMenu a span:first-child {
		top: 2.5rem;
	}

	.btnMenu a span:nth-child(2) {
		margin-top: -.1rem;
		top: 50%;
		opacity: 0;
	}

	.btnMenu a span:last-child {
	  bottom: 2.6rem;
	}

		
	.btnMenu.active a span:first-child {
	  -webkit-transform: translateY(.4rem) rotate(40deg);
	  -moz-transform: translateY(.4rem) rotate(40deg);
	  -ms-transform: translateY(.4rem) rotate(40deg);
	  transform: translateY(.4rem) rotate(40deg);
	}

	.btnMenu.active a span:nth-child(2) {
	  opacity: 0;
	}

	.btnMenu.active a span:last-child {
	  -webkit-transform: translateY(-.4rem) rotate(-40deg);
	  -moz-transform: translateY(-.4rem) rotate(-40deg);
	  -ms-transform: translateY(-.4rem) rotate(-40deg);
	  transform: translateY(-.4rem) rotate(-40deg);
	}
}

/* !gNavi
---------------------------------------------------------- */
@media screen and (min-width: 768px) {
	#gNavi ul{
		display: flex;
		grid-gap: 2.4rem;
	}
	#gNavi li a {
		font-size: 2rem;
		letter-spacing: 0.05em;
		display: block;
		line-height: 2;
		color: #EEEEEE;
		text-shadow: 0 .2rem .4rem rgba(0,0,0,.6);
	}	
}
@media screen and (max-width: 767px) {
	#gNavi {
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 100vh;
		z-index: 98;
		box-sizing: border-box;
		padding: 12rem 1.5rem 8rem;
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		opacity: 0;
		pointer-events: none;
		transition: opacity .3s,right .3s;

		background: rgba(34,34,34,.88);
	}
	#gNavi.active{
	    opacity: 1;
	    pointer-events: auto;
	}	

	#gNavi ul{
	}
	#gNavi li+li{
		margin-top: 3.4rem;
	}
	#gNavi a{
		display: block;
		text-align: center;
		font-size: 3rem;
		letter-spacing: 0.05em;
	}
}

	
/* !mainVisual
---------------------------------------------------------- */
#mainVisual {
	position: relative;
}
#mainVisual:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 9;
	width: 100%;
	height: 10.9rem;
	background-image: linear-gradient(to top, #000 0%, transparent 100%);
}
.mvSlist img{
	width: 100%;
	height: 80rem;
	object-fit: cover;
}
.mvLogo{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	z-index: 9;
	width: 40rem;
}
.mvLogo img{
	width: 100%;
}

.mvCont{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	z-index: 9;
	display: flex;
	align-items: center;
	flex-direction: column;
}
.mvTxt{
	font-size: 4rem;
	letter-spacing: 0.05em;
	line-height: 2;
	text-align: center;
	text-shadow: 0 .3rem .6rem rgba(0,0,0,.3);
}
.mvTxt span{
	font-size: 8rem;
	line-height: 1.3;
	letter-spacing: 0.05em;
}
.mvCont .areaDl{
	position: static;
	transform: none;
	margin-top: 6rem;
}
@media screen and (max-width: 767px) {
	#mainVisual:before {
		height: 8rem;
	}
	.mvSlist img{
		height: 60rem;
	}
	.home .mvSlist img{
		height: 50rem;
	}
	.mvLogo{
		width: 18rem;
	}
	.mvCont{
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
		z-index: 9;
		display: flex;
		align-items: center;
		flex-direction: column;
	}
	.mvTxt{
		font-size: 2.4rem;
		letter-spacing: 0.05em;
		line-height: 2;
		text-align: center;
		text-shadow: 0 .3rem .6rem rgba(0,0,0,.3);
	}
	.mvTxt span{
		font-size: 5rem;
		line-height: 1.3;
		letter-spacing: 0.05em;
	}
	.mvCont .areaDl{
		position: static;
		transform: none;
		margin-top: 5.5rem;
	}
}

/* !footer
---------------------------------------------------------- */
#footer {
	padding: 20rem 0 0;
	text-align: center;
}

.footerLogo img{
	width: 23.4rem;
}
.footerLogo{
	display: none;
}
.home .footerLogo{
	display: block;
}
.footerContact{
	padding: 11rem 0 0;
	margin: 0 auto;
	max-width: 70rem; 
	border-top: 1px solid #8A7967;
}
.home .footerContact{
	border-top: 0;
}
.footerContact a{
	display: flex;
	align-items: center;
	height: 10rem;
	padding-left: 5.2rem;
	font-size: 4.5rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	color: #EEEEEE;
	background: url(../img/top/arrow01.svg)no-repeat right 5.7rem center #8A7967;
	background-size: 13rem auto;
}
	
#copyright {
display: flex;
justify-content: center;
margin-bottom: 4em;
	font-size: 1.2rem;
}
.home .mapArea{
	display: none;
}
.mapArea {
    position: relative;
    width: 100%;
    padding-top: 45rem;
}
.mapArea iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
	  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}
@media screen and (max-width: 767px) {
	#footer {
		padding: 8rem 0 0;
	}
	.footerLogo img{
		width: 18rem;
	}
	.footerContact{
		padding: 0 0 0;
		border-top: 0;
	}
	.home .footerContact{
		padding-top: 7.8rem;
	}
	.footerContact a{
		height: 7rem;
		padding-left: 3.6rem;
		font-size: 2.8rem;
		letter-spacing: 0.05em;
		background: url(../img/top/arrow01_sp.svg)no-repeat right 3rem center #8A7967;
		background-size: 6.6rem auto;
	}
	#copyright {
		font-size: 1rem;
	}
}

/* !h(n)eading
---------------------------------------------------------- */
.commonTxt{
	font-size: 2.4rem;
	line-height: 1.3;
	letter-spacing: 0.05em;
}
.commonTxt p+p{
	margin-top: 3.1rem;
}
@media screen and (max-width: 767px) {
	.commonTxt{
		font-size: 1.8rem;
		line-height: 1.28;
		letter-spacing: 0.05em;
	}
	.commonTxt p+p{
		margin-top: 2.3rem;
	}
}

/*top*/
.topSec01{
	padding: 14.4rem 0 25.5rem;
	position: relative;
	text-align: center;
}
.topSec01Bg{
	position: absolute;
	left: 50%;
	bottom: 0;
	z-index: 1;
	transform: translate(-50%);
	width: 150rem;
}
.topSec01Bg img{
	width: 100%;
}
.iconHd{
	width: 9.45rem;
}
.topSec01 .hd{
	margin-bottom: 8.9rem;
}
.topSec01 .title{
	color: #8A7967;
	font-size: 7rem;
	line-height: 1.3;
	letter-spacing: 0.05em;
	margin-bottom: 5.4rem;
}
.topSec01 .commonTxt{
	max-width: 88.3rem;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	.topSec01{
		padding: 9.2rem 0 14.8rem;
	}
	.topSec01Bg{
		width: 42.681rem;
	}
	.iconHd{
		width: 5rem;
	}
	.topSec01 .hd{
		margin-bottom: 3.3rem;
	}
	.topSec01 .title{
		color: #8A7967;
		font-size: 3.5rem;
		line-height: 1.285;
		letter-spacing: 0.1em;
		margin-bottom: 4rem;
	}
}


.topSec02{
	padding: 9rem 0 0;
}
.topSec02Hd{
	font-size: 5rem;
	line-height: 1.3;
	text-align: center;
	color: #8A7967;
	letter-spacing: 0.05em;
	margin-bottom: 5.8rem;
}
.anchorList ul{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	grid-gap: 8.5rem;
}
.anchorList li{
	width: 18rem;
}
.anchorList a{
	height: 6.1rem;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.8rem;
	letter-spacing: 0.05em;
	border: 1px solid #444444;
	position: relative;
}
.anchorList a:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: -1.9rem;
	z-index: 1;
	width: .7rem;
	height: 3.3rem;
	background: url(../img/top/arrow_scroll.svg)no-repeat bottom center;
	background-size: 100% auto;
}

.groupArea{
	margin-top: 16rem;
}
#group_area02{
	margin-top: 28rem;
}
#group_area03{
	margin-top: 20rem;
}
.groupHd{
	flex-wrap: wrap;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	grid-gap: 0 5.3rem;
}
#group_area02 .groupHd{
	grid-gap: 0 4.3rem;
	justify-content: flex-start;
}
#group_area03 .groupHd{
	justify-content: center;
}
#group_area01 .groupHd img{
	margin-top: 3.6rem;
}
.groupHdTxt{
	font-size: 24rem;
	line-height: 1.2;
	letter-spacing: 0.05em;
	color: #111111;
	white-space: nowrap;
}
#group_area03 .groupHdTxt{
	width: 100%;
	text-align: right;
}

.groupItem{
	position: relative;
	margin-left: -15.15rem;
}
.groupItem+.groupItem{
	margin-top: 10rem;
}
.groupItem .img{
	width: 100%;
	position: relative;
}
.groupItem .img:before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: url(../img/top/before_img.png)no-repeat center center;
	background-size: 100% 100%;
}
.groupItem .img img{
	height: 60rem;
	object-fit: cover;
}
.areaDl{
	position: absolute;
	left: 0;
	top: 50%;
	z-index: 2;
	transform: translateY(-50%);
	background: #000000;
	color: #8A7967;
	font-size: 2rem;
	letter-spacing: 0.05em;
	display: flex;
}
.areaDl dt{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #8A7967;
	color: #EEEEEE;
	width: 7.4rem;
	height: 6.9rem;
}
.areaDl dd{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 2.6rem;
}
.groupItem .cont{
	position: absolute;
	right: 7rem;
	top: 50%;
	z-index: 2;
	transform: translateY(-50%);
	width: 56rem;
}
.groupItem .ttl{
	font-size: 4.4rem;
	line-height: 1.3;
	margin-bottom: 2.5rem;
	letter-spacing: 0.05em;
}
.groupItem .commonTxt{
	/*
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
	*/
}
.groupItem .btn{
	display: flex;
	justify-content: flex-end;
	margin-top: 6.5rem;
}
.btnLink01{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 28rem;
	height: 8rem;
	background: rgba(238,238,238,.71);
	color: #111111;
	font-size: 2.4rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	position: relative;
	padding-left: .6rem;
}
.btnLink01:before{
	content: '';
	position: absolute;
	left: -8.6rem;
	bottom: 50%;
	transform: translateY(30%);
	z-index: 2;
	width: 13rem;
	height: 1.5rem;
	background: url(../img/top/arrow01.svg)no-repeat right center;
	background-size: 100% auto;
}
@media screen and (min-width: 768px) {
	.groupItem:nth-of-type(even){
		margin-left: 0;
		margin-right: -15.15rem;
	}
	.groupItem:nth-of-type(even) .cont{
		right: auto;
		left: 7rem;
	}
	.groupItem:nth-of-type(even) .areaDl{
		left: auto;
		right: 0;
	}
}
@media screen and (max-width: 767px) {
	.topSec02{
		padding: 5.8rem 0 0;
	}
	.topSec02Hd{
		font-size: 3.5rem;
		line-height: 1.285;
		letter-spacing: 0.05em;
		margin-bottom: 2.5rem;
	}
	.anchorList ul{
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		grid-gap: 3rem 3.4rem;
	}
	.anchorList li{
		width: 15.2rem;
	}
	.anchorList a{
		height: 3.6rem;
		font-size: 1.6rem;
		letter-spacing: 0.05em;
	}
	.anchorList a:before{
		left: 1.1rem;
		bottom: .9rem;
		width: .7rem;
		height: 1.8rem;
		background: url(../img/top/arrow_scroll.svg)no-repeat bottom center;
		background-size: 100% auto;
	}

	.groupArea{
		margin-top: 8rem;
	}
	#group_area02{
		margin-top: 10rem;
	}
	#group_area03{
		margin-top: 10rem;
	}
	.groupHd{
		flex-wrap: wrap;
		display: flex;
		align-items: center;
		justify-content: center;
		grid-gap: 1.6rem 0;
		margin-bottom: 2rem;
	}
	#group_area02 .groupHd{
		grid-gap: 1.6rem 0;
		flex-direction: column-reverse;
		justify-content: center;
	}
	#group_area03 .groupHd{
		justify-content: center;
	}
	#group_area01 .groupHd img{
		margin-top: 0;
	}
	.groupHdTxt{
		font-size: 6.4rem;
		line-height: 1.3;
		letter-spacing: 0.05em;
		width: 100%;
		text-align: center;
	}
	#group_area03 .groupHdTxt{
		text-align: center;
	}

	.groupItem{
		margin-left: 0rem;
	}
	.groupItem+.groupItem{
		margin-top: 8rem;
	}
	.groupItem .img{
		width: auto;
		margin: 0 -1.5rem 2.3rem;
	}
	.groupItem .img:before{
		content: none;
	}
	.groupItem .img img{
		height: 17.25rem;
	}
	.areaDl{
		position: static;
		transform: none;
		background: #000000;
		color: #8A7967;
		font-size: 1.6rem;
		letter-spacing: 0.05em;
		margin-bottom: 1.85rem;
	}
	.areaDl dt{
		width: 5rem;
		height: 2.8rem;
	}
	.areaDl dd{
		padding: 0 2rem;
	}
	.groupItem .cont{
		position: static;
		transform: none;
		width: auto;
	}
	.groupItem .ttl{
		font-size: 3rem;
		line-height: 1.3;
		margin-bottom: 2.5rem;
		letter-spacing: 0.05em;
	}
	.groupItem .commonTxt{
		/*
	    overflow: hidden;
	    text-overflow: ellipsis;
	    display: -webkit-box;
	    -webkit-line-clamp: 4;
	    -webkit-box-orient: vertical;
		*/
	}
	.groupItem .btn{
		display: flex;
		justify-content: flex-end;
		margin-top: 3.8rem;
	}
	.btnLink01{
		width: 20rem;
		height: 5.88rem;
		font-size: 1.8rem;
		font-weight: 500;
		letter-spacing: 0.05em;
		padding-left: 0;
	}
	.btnLink01:before{
		left: -3.5rem;
		bottom: 50%;
		transform: translateY(30%);
		z-index: 2;
		width: 6.641rem;
		height: 1.062rem;
		background: url(../img/top/arrow01_sp.svg)no-repeat right center;
		background-size: 100% auto;
	}
}
.bottomFooter__topBtn {
position: fixed;
bottom: 0;
right: 0;
display: block;
background-color: #8A7967;
color: #fff;
width: 56px;
height: 56px;
z-index: 999;
}
.bottomFooter__topBtn:before {
content: "";
position: absolute;
top: 50%;
right: 50%;
transform: rotate(-45deg);
margin-top: -3px;
margin-right: -6px;
width: 12px;
height: 12px;
border-top: 3px solid;
border-right: 3px solid;
transition: .3s;
}

	.nav_transition {
	margin-top: 2em;
	}
	.nav_transition:nth-of-type(2) {
	margin-top: 0.7em;
	margin-bottom: 4em;
	}
	.nav_transition li {
	}
	.nav_transition li a {
	display: block;
	width: 100%;
	margin: 1em 0 0;
	padding: 1em;
	text-align: center;
	line-height: 1.5;
	border:1px solid #8A7967;
	font-size: 2rem;
	color: #8A7967;
	}
	.nav_transition li:nth-of-type(1) a {
	margin-top: 0;
	}
	@media(min-width:768px){
	.nav_transition {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap:1em;
	margin-top: 8em;
	}
	.nav_transition:nth-of-type(2) {
	 margin-top: calc(1em + 0.25em);
	 margin-bottom: 8em;
	}
	.nav_transition li {
	width: calc(50% - 1em);
	}
	.nav_transition li:nth-of-type(1) a {
	margin-top: 1em;
	}
	}


