@charset "utf-8";
/*----------------------------------------------------
　PC common
----------------------------------------------------*/
/*---　フォーマットからの調整　----*/
.topicPath, .loading {
  display: none
}
html {
  scroll-behavior: smooth;
}
#main {
  margin-top: -18px;
  padding-top: 0px;
}
#footer {
  margin-top: 0;
}
a.anchor {
  display: block;
  padding-top: 10em;
  margin-top: -10em;
}
.clear {
  clear: both;
}
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
@media screen and (min-width: 768px), print {
    body {
        padding-top: 1.1rem;
    }
}
/*----------------------------------------------------
　TOP
----------------------------------------------------*/
/*---　main img　----*/
#mv {
  width: 100%;
  height: 600px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*---　title　----*/
#title {
  width: 100%;
  text-align: center;
  padding-top: 1.5em;
  padding-bottom: 2.5em;
}
/*---　copy　----*/

#copy {
	text-align: center;
	font-size: 200%;
	font-weight: bold;
	margin-bottom: 1.8em;
	letter-spacing: 0.1em;
}

/*---　category　----*/
#category {
  width: 100%;
  text-align: center;
  padding-top: 1.5em;
  padding-bottom: 3em;
  margin-top: -3em;
}
/*----------------------------------------------------
　キッチン
----------------------------------------------------*/
/*---　main img　----*/
.kitchen #mv {
	background-image: url(../kitchen/img/mv.jpg);
}
/*---　title　----*/
.kitchen #title{
	background-color: #e39a36;
}
/*---　banner　----*/
.kitchen #banner div {
	border-color: #6a0f14;
	background-image: url(../kitchen/img/banner.jpg);
}
/*----------------------------------------------------
　インテリア
----------------------------------------------------*/
/*---　main img　----*/
.interior #mv {
	background-image: url(../interior/img/mv.jpg);
}
/*---　title　----*/
.interior #title{
	background-color: #6a0f14;
}
/*---　banner　----*/
.interior #banner div {
	border-color: #e39a36;
	background-image: url(../interior/img/banner.jpg);
}


/*==================================================
ギャラリーのためのcss
===================================*/
.gallery{
	columns: 4;/*段組みの数*/
	padding: 0 15px;/*ギャラリー左右に余白をつける*/
	margin-bottom: 4em;
}

.gallery button {
    margin-bottom: 20px;/*各画像下に余白をつける*/
list-style:none;
    width: 100%;
}

.gallery button img{
	transition: 0.3s;
	border-radius: 1em;
}
.gallery button img:hover{
  opacity: 0.6;

}

/*ギャラリー内のイメージは横幅100%にする*/
.gallery img{
	width:100%;
	height:auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/}

/*　横幅900px以下の段組み設定　*/
@media only screen and (max-width: 900px) {
	.gallery{
	columns:3;
	}	
}
/*画像を出現させるアニメーションCSS*/

.flipLeft{
animation-name: flipLeft;
animation-duration:1.5s;
animation-fill-mode:forwards;
perspective-origin: left center;
opacity: 0;
}

@keyframes flipLeft{
  from {
   transform: perspective(600px) translate3d(0, 0, 0) rotateY(60deg);
 	opacity: 0;
  }

  to {
  transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
  opacity: 1;
  }
}


/*---　banner　----*/
#banner div {
	width: 60%;
	border-style: solid;
	border-width: 13px;
	min-width: 11rem;
	margin-right: auto;
	margin-left: auto;
	display: block;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	margin-bottom: 5em;
}
#banner div a {
  border: 3px solid #FFFFFF;
  text-align: center;
  color: #FFFFFF;
  text-decoration: none;
  padding-top: 1em;
  padding-bottom: 1em;
  font-size: 120%;
  font-weight: 600;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.2em;
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
transition: 0.3s;
}
#banner div a:hover {
  background-color: rgba(0, 0, 0, 0);
}
#banner div a span {
  position: relative;
  display: inline-block;
}
#banner div a span::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 3px #FFF;
  border-right: solid 3px #FFF;
  position: absolute;
  top: 50%;
  right: -1em;
  margin-top: -6px;
  transform: rotate(45deg);
transition: 0.3s;
}
#banner div a:hover span::after {
  right: -1.5em;
}



/*---　ポップアップ　----*/
.pu_modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 1s ease-in-out;
}
.pu_modal-content {
	background: #FFF;
	padding: 20px 25px;
	width: 90%;
	max-width: 1000px;
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: show 0.6s linear 0s;
	filter: drop-shadow(0px 2px 6px #777);
    max-height: 90%;
}
.info_box{
	width: 100%;
	position: relative;
    max-height: 84vh;
    overflow-y: auto;
}


.pu_modal-top {
	display: inline-block;
	position: absolute;
	right: -30px;
	top: -10px;
	z-index: 2000;
}
.pu_modal-close {
	color: #FFFFFF;
	text-decoration: none;
	font-size: 40px;
	line-height: 1;
	padding: 0 8px;
	background-color: #788CB9;
	border-radius: 30px;
}
.pu_modal-close:hover, .pu_modal-close:focus {
	text-decoration: none;
	cursor: pointer;
	background-color: #A8B5D1;
}
@keyframes show{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}



/* モーダルボックス */
.modalbox_img{
	margin-bottom: 0.5em;
	text-align: center;
}

.modalbox_img img{
    max-height: 500px;
}

.modalbox_copy{
	margin-bottom: 0.5em;
    font-size: 100%;
    line-height: 1.7em;
}

.modalbox_item{
	font-weight: bold;
	font-size: 120%;
    margin-bottom: -5px;
}
.col_2{
    display: flex;
	justify-content: space-between;
}
.col_2>div{
    width: 48%;
}


.modalbox_spec{
	font-size: 80%;
}

.modalbox_sr a{
	display: block;
	text-align: center;
	color: #FFFFFF;
	text-decoration: none;
	padding-top: 0.2em;
	padding-right: 0.5em;
	padding-bottom: 0.5em;
	padding-left: 0.8em;
	position: relative;
	padding-left: 5%;
	margin-right: auto;
	margin-left: auto;
	transition: 0.3s;
	background-color: #4b4f54;
	border: 1px solid #4b4f54;
	width: 50%;
	transition: 0.3s;
	font-size: 130%;
	font-weight: 600;
	margin-top: 1.5em;
}
.modalbox_sr a:hover{
	color: #000000;
	background-color: #FFFFFF;
}
.modalbox_sr a span{
	display: block;
	font-size: 65%;
	font-weight: normal;
    margin-bottom: -10px;
}
.modalbox_sr a:after {
	content: '';
	width: 12px;
	height: 12px;
	border-left: 0;
	border-bottom: 0;
	border-top: 3px solid #FFFFFF;
	border-right: 3px solid #FFFFFF;
	position: absolute;
	top: 50%;
	right: 3%;
	margin-top: -6px;
	transform: rotate(45deg);
	transition: 0.3s;
}
.modalbox_sr a:hover:after {
	right: 5%;
	border-top: 3px solid #000000;
	border-right: 3px solid #000000;
}
.modalbox_sr a .shop_open{
    font-size: 74%;
    margin-top: -0.5em;
    margin-bottom: -0.5em;
}