@charset "utf-8";
/* CSS Document */

body {
margin: 0;
padding: 0;	
font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
width: 100%;
overflow-x: hidden;
z-index: 1;
background-color: #fefefe;
	color: #333;
}

a{
  text-decoration: none;
	color: #333;
}

li {
list-style: none;
}

/*========= LoadingのためのCSS ===============*/


/* オープニングシャッター*/
.shutter {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color:#fefefe;
  text-align:center;
  color:#fefefe;
  opacity: 1;
  visibility: visible;
  transition: all 1s;	
}

.shutter.is-active {
  opacity: 0;
  visibility: hidden;
}


.shutter-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  visibility: visible;
  transition: all 1s;	
}

.shutter-logo.is-active {
  opacity: 0;
  visibility: hidden;
}

.shutter-logo img {
  width:250px;
}



@media screen and (max-width:599px) {

	.shutter-logo img {
		width: 150px;
	}
}


/*シャッター表示後*/
 
#outer {
	width: 100%;
	height: 100vh;
animation: fadeIn 1s linear;
animation-delay: 0.5s;	
  animation-fill-mode: both;
	opacity: 0;
}

/* ---------------------------- */
/* --- Animation --- */
/* ---------------------------- */
@keyframes fadeIn{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}




/*ヘッダー*/
/*ナビ*/
.pc-nav {
	width: 100%;
	height: 60px;
	z-index: 999;
	background-color: rgba(255,255,255,.9);
}

.pc-nav.sticky{
  position: fixed;
  top: 0;
  right: 0;	
}

.logo {
width: 60px;
padding-top: 17px;
padding-left: 60px;
}


.pc-nav ul {
	float: right;
    display: flex;
    flex-wrap: wrap;/*スマホ表示折り返し用なのでPCのみなら不要*/
    margin: 10px 60px 50px 0;
}

.navi-list a {
    display: block;
    padding: 4px 20px;
    text-decoration: none;
    color: #555968;
	font-size: 18px;
	font-family: 'EB Garamond', serif;
}

/*==================================================
　5-3-10 線が伸びて枠線になる
===================================*/

.navi-list {
    /*線の基点とするためrelativeを指定*/
  position: relative;
    margin:0 10px;
}

/*線の基点位置*/
.navi-list::before,
.navi-list::after{
    content:"";
    /*絶対配置で線の位置を決める*/
    position: absolute;
    background: #555968;
    /*線の形状*/
    width: 0;
    height: 1px;
    /*アニメーションの指定*/
    transition: all 0.2s linear;
}

.navi-list::before{
  right: 0;
  bottom: 0;
}

.navi-list::after{
  left: 0;
  top: 0;
}

/*線の基点位置2 spanタグ*/

.navi-list span{
    display: block;
}

.navi-list span::before,
.navi-list span::after{
  content:"";
    /*絶対配置で線の位置を決める*/
  position: absolute;
  background: #0481A2;
    /*線の形状*/
  width:1px;
  height:0;
/*アニメーションの指定*/
  transition: all 0.1s linear;
}

.navi-list span::before{
  left: 0;
  bottom: 0;
}

.navi-list span::after{
  right: 0;
  top: 0;
}

/*現在地とhoverした際の線の変化*/
.navi-list.current::before,
.navi-list.current::after,
.navi-list:hover::before,
.navi-list:hover::after{
  width: 100%;
}

.navi-list:hover::after{
  transition-delay: 0s;/*すぐ線を出現させる*/
}

.navi-list:hover::before{
  transition-delay: 0.3s;/*線の出現を0.3秒遅らせる*/
}

.navi-list.current span::before,
.navi-list.current span::after,
.navi-list:hover span::before,
.navi-list:hover span::after{
  height: 100%;
}

.navi-list:hover span::before{
  transition-delay: 0.5s;/*線の出現を0.5秒遅らせる*/
}

.navi-list:hover span::after{
  transition-delay: 0.2s;/*線の出現を0.2秒遅らせる*/
}
/*========= レイアウトのためのCSS ===============*/

.lead{
  padding: 50px 20px;
}

.sp-nav {
	display: none;
}

@media screen and (max-width: 1024px) {
	.logo {
		padding-left: 30px;
	}
	
	.pc-nav ul {
    margin-left: auto;
		margin-right: 20px;
		padding-left: 0;
}
	
	.navi-list a {
	font-size: 17px;
}
}


@media screen and (max-width: 800px) {
	
/*スマホナビ*/
.pc-nav {
	display: none;
}

.sp-nav {
	display: block;
	width: 100%;
	height: 80px;
	position: fixed;
	top: 0;
	left: 0;
	position: relative;
}
	
.sp-nav .logo {
	display: block;
	width: 44px;
	padding: 0;
	position: absolute;
	top: 28px;
	right: 16px;
	}
	
.openbtn{
	z-index: 999;
	margin-right: auto;
	position: fixed;
	left: 10px;
	top: 20px;
	width: 42px;
    height:42px;
	cursor: pointer;
	background:#555968;
	border-radius: 50%;
}
	
/*ボタン内側*/

.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
	right: 10px;
    height: 2px;
	background-color: #fefefe;
  }


.openbtn span:nth-of-type(1) {
	top:14px;	
  	width: 50%;
}

.openbtn span:nth-of-type(2) {
	top:24px;
  	width:30%;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn.active span:nth-of-type(1) {
    top: 14px;
    left: 14px;
    transform: translateY(6px) rotate(-45deg);
    width: 35%;
}

.openbtn.active span:nth-of-type(2) {
    top: 26px;
    left: 14px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
}
	
/*スマホナビリスト*/
	.sp-nav-wrap {
		  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
		position:fixed;
		z-index: 999;
		/*ナビのスタート位置と形状*/
		top:-120%;
		left:0;
		width:100%;
		height: 300px;/*ナビの高さ*/
		background-color: rgba(255,255,255,.9);
		/*動き*/
		transition: all 1s;
		padding-top: 40px;
		text-align: center;
	}
	
	/*アクティブクラスがついたら位置を0に*/
	.sp-nav-wrap.panelactive{
    top: 80px;
	}
	
	.sp-nav ul {
		padding: 0;
	}
	
	.sp-nav .navi-list {
		height: 50px;
	}
		.navi-list::before,
	.navi-list::after{
		display: none;
	}
}
/*ヘッダーここまで*/


/*スクリーン*/
.top-screen {
  position   : relative;
  max-width  : 100%; 
  height     : 500px;
  margin     : auto;
  background : #fefefe;
z-index: 1;	
	font-family: "Marcellus", serif;

}

.top-screen::before {
  display    : block;
  content    : "";
  position   : absolute;
  top        : 0;
  right      : 0;
  bottom     : 0;
  left       : 0;
  background-image: url("images/top_img.jpg");
  background-size: cover;
  background-position: center bottom;
  animation  : bgAnime 80s linear infinite;
  z-index: 1;	
}

@keyframes bgAnime {
   0% { background-position: 0 0 }
                /* 使用する画像幅と画像高さのpxに変更ください */
 100% { background-position: 2000px 0 }
}


.top-screen p {
	font-size: 200px;
	line-height: 120px;
	color: #fefefe;
	margin: 0;
	position: absolute;
	left: 50%;
	bottom: 18px;
	transform: translate(-50%);
	z-index: 99;
}

@media screen and (max-width: 1024px) {
	.top-screen {
		height: 300px;
	}
	
	.top-screen p {
		font-size: 150px;
		line-height: 93px;
	}
}

@media screen and (max-width: 780px) {
	.top-screen p {
		font-size: 100px;
		line-height: 70px;
	}
}

@media screen and (max-width: 500px) {
	.top-screen {
		height: 200px;
		margin-top: 440px;
	}
	
	.top-screen p {
		font-size: 42px!important;
		margin-bottom: 0;
		top: -115px;
		left: 20px;
		transform: none;
		color: rgba(85,89,104,.1);
	}

}


.container {
	max-width: 100%;
	margin: 0;
	padding: 0;
	position: relative;
}


/*企業理念*/
.concept {
position: relative;
width: 70%;
height: 600px;
padding-top: 0;
margin-top: 60px;
margin-left: auto;
margin-right: auto;
margin-bottom: 100px;
font-family: "Shippori Mincho", serif;
animation-name:fadeUpAnime;
animation-duration: 6s;
animation-fill-mode:forwards;
animation-timing-function: ease-out;
opacity:0;	
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}


.concept-title {
	position: absolute;
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	top: 20px;
    right: 180px;
    margin: 0;
}

.concept-title p {
font-size: 46px;
font-family: "Shippori Mincho", serif;
font-weight: lighter;
opacity:0;
color: #555968;	
}

/*一文字づつ表示*/
.concept-title p span {
 opacity: 0;		
 -webkit-transition: .6s ease-in-out;
 transition: .6s ease-in-out;	
}

.concept-p {
 width: 80%;	
  position: absolute;
  top: 100px;
  left: 10%;	
}

.concept-p p {
	font-size: 16px;
	line-height: 26px;
}


@media screen and (max-width: 1700px) {
  .concept {
    width: 75%;
  }

  .concept-title {
    right: 80px;
  }


  .concept-p {
    left: 2%;
  }
}


@media screen and (max-width: 1380px) {
	.concept {
    width: 90%;
  }
	  .concept-title {
    right: 30px;
  }
	
	.concept-title p {
		font-size: 34px;
	}
}

@media screen and (max-width: 1024px) {
	.concept-p p {
	font-size: 15px;
	}
}

@media screen and (max-width: 780px) {
	.concept {
		margin-bottom: 40px;
		height: 600px;
	}
	
	  .concept-title {
		  right: 0;
		  font-size: 24px;
  }
	
	.concept-p {
		top: 30px;
	}
	
	.concept-p p {
		font-size: 14px;
	}
	
}

@media screen and (max-width: 500px) {
	.concept {
		opacity: 1;
		margin-top: 40px;
		width: 100%;
		height: 800px;
	}
	

	
	.concept-title {
		top: -660px;
		right: 40px;
	}
	
	.concept-title p {
		font-size: 36px;
		opacity: 1;
	}
	
	.concept-p {
		width: 85%;
    left: 50%;
		transform: translate(-50%);
  }
	
	.concept-p p {
		font-size: 13px;
	}
	

}

/*サービス*/
.service {
	width: 100%;
	height: 1000px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 200px;
    position: relative;
}

/*背景*/
.service span {
	background-color: rgba(181,188,213,0.2);
	position: absolute;
	width: 95%;
	height: 100%;
	left: 0;
	top: 0;
}

h2 {
width: 35%;
margin: 0;	
padding: 30px 0;	
font-size: 32px;
font-family: 'EB Garamond', serif;
font-weight: lighter;
background-color: #555968;
color: #fefefe;	
text-align: center;
position: absolute;
	top: 80px;
	left: 0;
}



.service-inner {
	position: absolute;
	width: 80%;
	top: 160px;
	left: 50%;
	transform: translate(-50%);
}



h3 {
	font-size: 20px;
	padding: 10px 10px 10px 30px;
	display: flex;
	margin-top: 60px;
	font-family: 'EB Garamond', serif;
}

.shop-list {
	width: 80%;
	height: 400px;
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
	margin-top: 150px;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
	background-image: url("images/kaboompics_LEUCADENDRON SAFARI SUNSET - dried flower - candle - marble vase - glasses.jpg");
	background-repeat: no-repeat;
	background-position: center right;
	background-size: cover;
	position: relative;
}

.shop-list::before {
width: 100%;
height: 400px;
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(0,0,0,0.3);
}


.shop-list li {
	position: relative;
    width: calc(50% - 1px);
	border: 1px solid #ccc;
	height: 200px;
}

.shop-list li:nth-child(odd) {
	border-left: none;
}

.shop-list li:nth-child(even) {
	border-right: none;
}

.shop-list li:nth-child(1), .shop-list li:nth-child(2) {
	border-top: none;
}

.shop-list li:nth-child(3), .shop-list li:nth-child(4) {
	border-bottom: none;
}

.shop-list li:hover  {
background-color: rgba(255,255,255,0.3);
}

.shop-list li:first-child:hover {
	background-color: inherit;
}

.shop-list a {
	display: block;
	width: 100%;
	height: 100%;
}


.shop-list p {
	margin: 0;
	position: absolute;
	top: 50%;
    left: 50%;
	transform: translate(-50%,-50%);
	font-size: 19px;
	text-align: center;
	color: #fefefe;
	text-shadow: 0 2px 2px #555;
	white-space: nowrap;
	}


.shop-title {
	position: absolute;
	font-size: 24px!important;
	top: 50%;
    left: 50%;
	transform: translate(-50%,-50%);
	font-weight: lighter;
}

.shop-list-sp {
		display: none;
	}

@media screen and (max-width: 1024px) {
	h2 {
		top: 40px;
		font-size: 28px;
		padding: 20px 0;
	}
	
	.service {
		height: 800px;
		margin-bottom: 100px;
	}
	
	.service-inner {
		top: 50px;
	}
	
	.shop-list {
		width: 90%;
		height: 320px;
	}
	
	.shop-list::before {
		height: 320px;
	}
	
	.shop-list li {
		height: 160px;
	}
	
	.shop-list li p {
		font-size: 16px;
	}
	
	.shop-title {
		font-size: 20px!important;
	}
}

@media screen and (max-width: 780px) {
	h2 {
		width: 50%;
	}
	
	h3 {
		padding-left: 0;
		margin-bottom: 0;
	}
}

@media screen and (max-width: 500px) {
	.service {
		height: 940px;
	}
	h2 {
		width: 80%;
		font-size: 24px;
		padding: 10px 0;
		top: 60px;
	}
	
	h3 {
		margin-top: 20px;
		font-size: 18px;
		padding-bottom: 0;
		color: #555;
	}
	
	.service-inner {
		top: 200px;
	}
	
	.shop-list {
		display: none;
	}
	
	.shop-list-sp {
		display: block;
		margin-bottom: 80px;
	}
	
	.shop-list-sp ul {
		display: block;
		padding: 0;
		background-image: url("images/kaboompics_LEUCADENDRON SAFARI SUNSET - dried flower - candle - marble vase - glasses.jpg");
	background-repeat: no-repeat;
	background-position: center right;
	background-size: cover;
	position: relative;
		margin-bottom: 40px;
		border-collapse: collapse;
	}
	
	.shop-list-sp ul::before {
width: 100%;
height: 240px;
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(0,0,0,0.3);
}
	
	
	.shop-list-sp ul li {
		border: 1px solid #ccc;
		border-collapse: collapse;
		height: 80px;
		text-align: center;
		position: relative;
	}
	
	.shop-list-sp li p {
			position: absolute;
	top: 50%;
    left: 50%;
	transform: translate(-50%,-50%);
		font-size: 14px;
		color: #fefefe;
		margin: 0;
	}

}


/*法人*/
.bisiness {
padding: 0;
margin-left: 12%;	
}

.bisiness li {
list-style: inherit;	
font-size: 17px;
text-align: left;
}

@media screen and (max-width: 1024px) {
	.bisiness {
		margin-left: 6%;
	}
	.bisiness li, .bisiness p {
		font-size: 15px;
	}
}

@media screen and (max-width: 780px) {
	.bisiness {
		margin-left: 3%;
	}
}

@media screen and (max-width: 500px) {
	.bisiness {
		margin-left: 0;
	}
	
	.bisiness li, .bisiness p {
		font-size: 14px;
	}
}


/*news*/
.news {
width: 100%;
	height: 600px;
margin-left: auto;
margin-right: auto;
margin-bottom: 100px;	
position: relative;
}

.news h2 {
	top: 0;
}

.news iframe {
	width: 80%;
	height: 400px;
	position: absolute;
	top: 180px;
	left: 50%;
	transform: translate(-50%);
}

@media screen and (max-width: 1024px) {
	.news {
		margin-bottom: 0;
	}
	
	.news iframe {
		top: 120px;
	}
}

@media screen and (max-width: 500px) {
	.news {
		margin-bottom: 60px;
	}
	.news iframe {
		width: 90%;
		top: 140px;
	}
}



/*スライダー*/
.slider {
	    width: 100%;
	margin: 150px 0 50px;

}

.slider iframe {
	height: 400px;
}


@media screen and (max-width: 1024px) {		
	.slider {
padding: 0;
text-align: center;
	margin-top: 0;	
		margin-bottom: 0;
}
	
	.slider iframe {
		height: 250px;
	}	
}


@media screen and (max-width: 500px) {
	.slider iframe {
	width: 100%;	
	margin-left: 0;
		height: 240px;
	}

}


/*ブランドページ*/
.brand-wrap {
width: 80%;
margin-left: auto;
margin-right: auto;
margin-bottom: 100px;	
}

.brand-wrap iframe {
	height: 550px; 
}

@media screen and (max-width: 780px) {
	.brand-wrap iframe {
	height: 400px; 
} 
}


@media screen and (max-width: 500px) {
	.brand-wrap {
width: 90%;
}
}


footer {
background-color:  rgba(85, 89, 104);
width: 100%;
height: 300px;
color: #fefefe;
position: relative;
}

.footer-shop {
width: 50%;
position: relative;	
	top: 40px;
	left: 10%;

}

.shop-txt {
white-space: nowrap;
}

.shop-txt h4 {
font-size: 18px;
font-weight: bolder;
margin: 0;
}

.shop-txt p,.time-txt p {
font-size: 13px;
margin: 0;
}

.time {
position: relative;
}

.time-txt {
position: absolute;
top: 0;
left: 210px;
}


/*インスタ,note*/

.footer-link {
	margin-top: 50px;
	width: 50%;
	margin-left: 0;
}


.sakai-img {
	display: block;
	width: 160px;
	}


.icon-wrap {
	position: relative;
	width: 280px;
	margin-left: 240px;
	margin-top: -30px;
}

.insta-icon {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
	font-size: 40px;
	color: #fefefe;
}

.rc-img {
	display: block;
	width: 50px;
	position: absolute;
	top: 50%;
	left:  32%;
	transform: translate(0,-50%);
}

.rc-img img {
	width: 100%;
}

.note-img {
	display: block;
	width: 100px;
	position: absolute;
	top: 50%;
	right:  0;
	transform: translate(0,-50%);
}

.note-img img {
	width: 100%;
}

.insta-icon:hover, .note-img:hover, .rc-img:hover {
	opacity: 0.7;
}

	.br_sp {
		display: none;
	}


/*メニューリスト*/
.footer-navi {
position: absolute;
width: 25%;
left: 63%;
top: 40px;
}

.footer-navi ul {
padding: 0;
width: 100%;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
}

.footer-navi-list {
width: 50%;
margin-bottom: 10px;
list-style: none;
}

.footer-navi-list a {
text-decoration: none;
  color: #fefefe;
	white-space: nowrap;
	font-family: 'EB Garamond', serif;
}

.footer-navi-list a:hover {
color: rgba(255,255,255,0.6);
}

.footer-navi ul::after {
display: block;
	content: "";
	width: 50%;
}


/*コピーライト*/
.copyright p {
position: absolute;
left: 50%;
transform: translate(-50%);
bottom: 0;
font-size: 8px; 
white-space: nowrap;
color: #fefefe;
}


@media(max-width: 1200px) {
	.shop-txt {
		width: 50%;
	}
	.time-txt {
		left: 180px;
	}
.icon-wrap {
	position: relative;
	}

}

@media(max-width: 1024px) {	
	footer {
		height: 360px;
	}
	.footer-shop {
		left: 8%;
	}
	
.shop-txt {
		width: 60%;
	}
	
.shop-txt h4 {
font-size: 16px;
}
	
	.time-txt {
		left: 0;
		top: 25px;
	}
	
	.footer-link {
		margin-top: 80px;
	}

	.footer-navi {
		width: 30%;

}
}

@media(max-width: 780px) {
	footer {
		height: 600px;
	}
	
	footer p {
		font-size: 14px!important;
	}
	
	.footer-shop {
		width: 90%;
		left: 50%;
		transform: translate(-50%);
		margin-bottom: 40px;
	}

.shop-txt {
		width: 80%;
	margin-left: auto;
	margin-right: auto;
	}
	
	.time-txt {
		left: 50px;
		top: 20px;
	}

	.footer-link {
		width: 90%;
		margin-left: auto;
		margin-right: auto;
	}
	
	.sakai-img {
		width: 28%;
		margin-left: 0;
		margin-right: auto;
	}
	
	.icon-wrap {
		width: 60%;
		margin-left: auto;
		margin-right: 0;
	}
	
	.insta-icon {
		font-size: 38px;
	}
	
	.rc-img {
		width: 50px;
	}
	
	.note-img {
		width: 110px;
	}
	
	.shop-txt h4 {
		font-size: 18px;
	}
	
	.footer-navi {
		width: 90%;
		top: 340px;
		left: 50%;
		transform: translate(-50%);
		border-top: 1px #fefefe dashed;
		border-bottom: 1px #fefefe dashed;
	}
	
	
	.footer-navi-list {
		text-align: center;
		margin-bottom: 0;
		margin: 10px 0;
	}
	
	.footer-navi-list a {
		font-size: 16px;
	}
	
	.copyright p {
		font-size: 10px!important;
	}

}

@media(max-width: 600px) {
	.shop-txt {
		width: 90%;
	}
	


}


@media(max-width: 500px) {
		footer {
		height: 760px;
	}
	

	.shop-txt {
		width: 95%;
	}
	
.footer-link {
		position: absolute;
	top: 180px;
	left: 50%;
	transform: translate(-50%);
	margin: 0;
	}
	
		.sakai-img {
		width: 50%;
			margin-left: auto;
			margin-right: auto;
			margin-top: 40px;
	}
	
	.icon-wrap {
		width:90%;
		margin-top: 80px;
		margin-left: auto;
		margin-right: auto;
			
	}
	
	.note-img {
		right: -10px;
	}
	

	.br_sp {
		display: block;
	}
	
		.footer-navi {
		top: 500px;
	}
}




/* page-top */
#page-top {
    position: fixed;
    right: 5px;
    bottom: 20px;
    height: 50px;
    text-decoration: none;
    font-weight: bold;
    transform: rotate(90deg);
    font-size: 90%;
    line-height: 1.5rem;
    color: #ccc;
    padding: 0 0 0 35px;
    border-top: solid 1px;
	z-index: 999;
}

#page-top::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0px;
    width: 15px;
    border-top: solid 1px;
    transform: rotate(35deg);
    transform-origin: left top;
}

@media screen and (max-width: 599px){
	#page-top {
		padding-bottom: 30px;
		padding-right: 10px;
	}
	
}

