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


/*共通部分*/
html{
	font-size: 62.5%;
}

body{
	font-family:"YakuHanJP", "Noto Sans JP", "メイリオ", "Meiryo", sans-serif;
	color: #333;
	letter-spacing: 0.1em;
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
	-webkit-box-sizing: border-box;
    box-sizing: border-box;
	padding-top: 110px;
	background-color: #fcfcfc;
}

a{
	text-decoration: none;
}

img{
	max-width: 100%;
}

.pc{
	display: block;
}

.sp{
	display: none!important;
}

.wrapper{
	width: 1080px;
	margin: 0 auto;
    max-width: 100%;
}

.section_title {
	font-size: 3rem;
	font-family:  "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "Noto Serif JP", serif;
	display: inline-block;
	position: relative;
	font-weight: 500;
	
}
	
.section_title:before {
	content: '';
	position: absolute;
	left: 5px;
	bottom: -18px; /*下線の上下位置調整*/
	display: inline-block;
	width: 80px; /*下線の幅*/
	height: 2px; /*下線の太さ*/
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translate(0%); /*位置調整*/
	background-color: #C39C9C; /*下線の色*/
}



/*
header
*/
.header{
	display: flex;
	height: 110px;	
	margin: 0 auto;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background-color: #fff;
	justify-content: space-between;
	max-width: 100%;
	

}

.logo{
	margin: 20px 0 0 20px;
}

.main_nav{
	display: flex;
	font-size: 1.5rem;
	list-style: none;
	height: 110px;
	align-items: center;
}

.main_nav li{
	margin-left: 40px;
	font-family:  "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "Noto Serif JP", serif;
	font-weight: 600;
}

.main_nav li:last-child{
	margin-top: 0;
}

.main_nav a{
	color: #333;
}

/*header_nav ホバー*/
.item_click a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.item_click a::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #b0717e;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}

.item_click a:hover::after {
  transform: scale(1, 1);
}

/*header_btn*/

.header_btn{
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all .3s;
}

.header_btn a{
	color: #fff;
	background-color: #6C272D;
	padding: 16px 20px;
	display: inline-block;
	margin-right: 10px;
}

.header_btn:hover{
	opacity: 0.8;
}


/*main_top*/

.main_imgBox {
    height: 90vh;
    overflow: hidden;
    position: relative; }

.main_logo {
	z-index:11;
	position: absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	width: 300px;
	height:auto;
}

.main_img {
	z-index:10;
	opacity: 0;
	width: 100%;
	height: 90vh;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-animation: anime 28s 0s infinite;
	animation: anime 28s 0s infinite; 
}

.main_img:nth-of-type(2) {
  -webkit-animation-delay: 7s;
  animation-delay: 7s; }

.main_img:nth-of-type(3) {
  -webkit-animation-delay: 14s;
  animation-delay: 14s; }

.main_img:nth-of-type(4) {
  -webkit-animation-delay: 21s;
  animation-delay: 21s; }


  .main_imgM {
    opacity: 0;
    width:100%;
    height:100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-animation: anime 28s 0s infinite;
    animation: anime 28s 0s infinite; }

    .main_imgM:nth-of-type(2) {
      -webkit-animation-delay: 7s;
      animation-delay: 7s; }

    .main_imgM:nth-of-type(3) {
      -webkit-animation-delay: 14s;
      animation-delay: 14s; }

    .main_imgM:nth-of-type(4) {
      -webkit-animation-delay: 21s;
      animation-delay: 21s; }



@keyframes anime {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    22% {
        opacity: 1;
    }
    33% {
        opacity: 0;
         transform: scale(1.1);
                    z-index:9;
    }
    100% { opacity: 0 }
}

@-webkit-keyframes anime {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    22% {
        opacity: 1;
    }
    33% {
        opacity: 0;
         -webkit-transform: scale(1.2);
            z-index:9;
    }
    100% { opacity: 0 }
}


/*
item_section
*/

.item_section{
	padding: 200px 0 64px;
}


.container{
	position: relative;
	z-index: 1;
}

.container::before{
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 93%;
    height: 96%;
	background-color: #F5F5F5;
    z-index: 2;
}

.item_inner{
	position: relative;
	width: 1080px;
	margin: 0 auto;
    padding-top: 96px;
    z-index: 3;
	max-width: 100%;
}

.item_section_text{
	margin-top: 56px;
	font-size: 1.4rem;
}

.item_list{
	margin: 40px auto 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	text-align: center;
	
}

.item_list li{
	margin-left: 20px;
	width: calc((100% - 40px) / 3 );
	height: auto;
	display: block;
	overflow: hidden;
}

.item_list li:nth-child(1) { 
 	margin-left: 0px;
}

.item_list li:nth-child(4) { 
 	margin-left: 0px;
}

.item_wrap{
	overflow: hidden;
}

.item_wrap img{
	display: block;
	transition-duration: 0.3s;
}

.item_wrap img:hover{
	transform: scale(1.1);
	transition-duration: 0.8s;
	
}

.item_list p{
	font-family:  "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "Noto Serif JP", serif;
	color: #000;
	text-align: left;
	font-size: 1.6rem;
	font-weight: 600;
	margin: 3px 0 30px;
	transition-duration: 0.3s;
	overflow: hidden;
}


/*btn*/
.gallery_btn{
	text-align: center;
	margin-top: 50px;
}

.button {
	position: relative;
	display: inline-block;
	padding: 1.5em 4em;
	background-color: #505050;
	border: 1px solid #505050;
	color: #fff;
	text-align: center;
	text-decoration: none;
	transition: all .8s;
	font-size: 1.4rem;
	letter-spacing: 2px;
}

.button::after {
  position: absolute;
  top: 50%;
  right: .6em;
  content: '';
  margin-top: -5px;
  border: 7px solid transparent;
  border-top-width: 6px;
  border-bottom-width: 6px;
  border-left-color: #fff;
  transition: all .8s;
}
.button:hover {
  background-color: #fff;
  color: #333;
}
.button:hover::after {
  border-left-color: #505050;
}


/* 
about
*/

.about{
	padding: 160px 0 110px;
}

.about_img_part{
	margin-top: 56px;
}


/*about_text*/

.about_text_part{
	position: relative;
    margin-top: -80px;
    padding: 50px 50px;
    width: 40vw;
    background: #fff;
    z-index: 3;
    margin-left: auto;
	background-color: #FDFDFD;;
}

.about_text_part_title{
	font-size: 2em;
	font-family:  "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "Noto Serif JP", serif;
}

.about_text_part_text{
	font-size: 1.4rem;
	line-height: 2;
	margin-top: 40px;
	
}


/*about_btn*/
.about_btn_wrap{
	margin-top: 40px;
}

.about_btn {
	position: relative;
	display: inline-block;
	padding:  1em 4em;
	background-color: #505050;
	border: 1px solid #505050;
	color: #fff;
	text-align: center;
	text-decoration: none;
	transition: all .8s;
	font-size: 1.4rem;
}

.about_btn::after {
	position: absolute;
	top: 50%;
	right: .3em;
	content: '';
	margin-top: -5px;
	border: 7px solid transparent;
	border-top-width: 6px;
	border-bottom-width: 6px;
	border-left-color: #fff;
	transition: all .8s;
}
.about_btn:hover {
	background-color: #fff;
	color: #333;
}
.about_btn:hover::after {
	border-left-color: #505050;
}


/*
shop_info
*/

.shop_info{
	background-color: #F8F8F8;
	padding: 110px 0 80px;
}

.shop_info_container{
	margin-top: 60px;
	height: 350px;
	display: flex;
	justify-content: space-between;
}

.shop_info_map{
  position: relative;
  width: 50%;
}

.shop_info_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.shop_info_detail{
	width: 50%;
	margin-left: 60px;
	font-size: 1.6rem;
}

.shop_info_detail_box{
	display: flex;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    align-items: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    border-bottom: 1px solid #d1d2d6;
    letter-spacing: 0.1em;
}

.shop_info_detail_box dt{
	padding: 16px 10px 16px 20px;
    width: 150px;
}


.shop_info_detail_box dd{
	-webkit-box-flex: 1;
    flex: 1;
    padding: 16px 0 16px 0;
}

.shop_info_detail_box a{
	color: #000;
	font-weight: 500;
}

.shop_info_detail_box a:hover{
	color: #C39C9C;
}

.pt0{
	padding-top: 0!important;
}


/*contact*/
.contact{
	padding-top:140px;
}

.contact_container{
	position: relative;
	z-index: 1;
	max-width: 100%;
}

.contact_container::before{
	content: "";
    position: absolute;
    top: 40%;
    display: block;
    width: 100%;
    height: auto;
	background: url("image/contact_bg.jpg");
    z-index: 2;
}

.contact_wrap{
	display: flex;
	justify-content: space-between;
	margin-top: 80px;
}


.contact_img{
	width: 40%;
	z-index: 3;
}

.contact_box{
	display: flex;
    padding: 45px 0;
    margin: 110px 0 120px;
	background-color: #FFFFFF;
	font-size: 1.6rem;
	width: 50%;
	z-index: 3;
}

.contact_box dd{
	font-size: 2rem;
	color: #000;
}

.contact_tel{
	width: 50%;
	padding-left: 60px;
	padding-right: 30px;
}

.contact_tel a{
	color: #000;
	font-weight: 500;
}

.contact_tel a:hover{
	color: #C39C9C;
}



.contact_fax{
	width: 50%;
    padding-left: 60px;
	border-left: 1px solid #d4d7d3;
	text-transform: uppercase;
}
.contact_fax dd{
	color: #000;
	font-weight: 500;
}



/*
footer
*/
#footer{
    padding: 32px 0;
	background-color: #74766A;
}

.footer_wrap{
	text-align: center;
	font-size: 14px;
	color: #D3D3D3;
}



/*
item_page
*/

.item_name{
	width: 250px;
	margin: 96px auto;
	font-weight: 600;
	text-align: center;
	padding-bottom: 4px;
	border-bottom: 1px solid #b0717e;
	font-size: 3rem;
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "Noto Serif JP", serif;
}

.item_main{
	margin: 0 auto;
	text-align: center;
	width: 100%;
}

.item_catch{
	margin: 96px auto;
	text-align: center;
	font-weight: 300;
	font-size: 2.2rem;
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "Noto Serif JP", serif;
}

.item_text{
	margin: 0 auto 112px;
	text-align: center;
	font-size: 1.6rem;
	line-height: 2;
}

.photo_other{
	position: relative;
	display: flex;
	text-align: center;
	margin-bottom: 120px;
}

.photo_other li{
	list-style: none;
}


.item_2{
	margin-left: 10px;
}


/*about_page*/
.about_img{
	width: 100%;
}

.about_section{
	margin: 110px auto;
}


.about_section h3{
	font-size: 2.4rem;
	font-weight: normal;
	font-family:  "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "Noto Serif JP", serif;
	border: solid 1px #b2b2b2;
	text-align: center;
	width: 30%;
	letter-spacing: .2em;
	margin: 0 auto;		
}

.about_main{
	margin: 50px auto;
}



.about_copy{
	font-size:  1.8rem;
	font-weight: 600;
	font-family:  "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "Noto Serif JP", serif;
	text-align: center;
	
}

.about_text{
	display: flex;
	margin-top: 60px;
}

.about_text_line{
	padding-top: 20px;
	font-size: 1.4rem;
	width: 50%;
	margin: 0 auto;
}

.about_text_img{
	width: 40%;
}

.about_mid_img{
	text-align: right;
	margin: 120px 110px 0 0;
}






@media screen and (max-width:800px){
	.wrapper{
		width: 750px;
	}
	
	.main_nav{
		font-size: 1.4rem;
}

	.main_nav li{
		margin-left: 20px;
}
	
	.item_inner{
		width: 750px;
	}
	
	.about_img_part img{
		width: 680px;
		height: 280px;
	}
	
	.about_text_part {
		padding: 50px 50px;
		width: 65vw;
	}

	/*about_text*/
	
	
	.shop_info_detail {
		width: 50%;
		margin-left: 20px;
		}
	
	.shop_info_detail_box dt {
		padding: 16px 5px 16px 5px;
		width: 110px;
	}
	
	
	/*	item_page*/
	.item_name{
		width: 240px;
		margin: 88px auto;
		font-size: 2.4rem;
}

	.item_main{
		margin: 0 auto;
		width: 100%;
	}

	.item_catch{
		margin: 56px auto;
		font-size: 2rem;
	}

	.item_text{
		margin: 0 auto 72px;
		text-align: left;
		width: 300px;
		font-size: 1.4rem;
	}

}

@media screen and (max-width:450px){
	body{
		padding-top: 60px;
		box-sizing:　border-box;
	}
	
	
	.pc{
		display: none!important;
	}

	.sp{
		display: block!important;
	}


	
	.wrapper{
		width: 350px;
		margin: 0 auto;
	}

	.section_title {
		font-size: 2.4rem;
	}

	.section_title:before {
		width: 65px; /*下線の幅*/
		bottom: -10px;
	}

	
	/*
	header	
	*/
	
	.header{
		height: 60px;	
	}

	.logo{
		width: 40px;
		margin: 8px 0 0 20px;
	}
	


	/*header_nav ホバー*/
	.item_click a {
	  position: relative;
	  display: inline-block;
	  text-decoration: none;
	}

	.item_click a::after {
	  position: absolute;
	  bottom: -8px;
	  left: 0;
	  content: '';
	  width: 100%;
	  height: 1px;
	  background: #b0717e;
	  transform: scale(0, 1);
	  transform-origin: left top;
	  transition: transform .3s;
	}

	.item_click a:hover::after {
	  transform: scale(1, 1);
	}

	.global-nav {
	  font-size: 1.4rem;
	  position: fixed;
	  right: -320px; /* これで隠れる */
	  top: 0;
	  width: 300px; /* スマホに収まるくらい */
	  height: 100vh;
	  padding-top: 40px;
	  background-color: #fff;
	  transition: all .6s;
	  z-index: 200;
	  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
	}
	
	/*	
	ハンバーガーメニュー
	*/
	
	.hamburger {
	  position: absolute;
	  right: 0;
	  top: 15px;
	  width: 50px; /* クリックしやすいようにちゃんと幅を指定する */
	  height: 50px; /* クリックしやすいようにちゃんと高さを指定する */
	  cursor: pointer;
	  z-index: 300;
	}
	
	.global-nav__list {
	  margin-top: 80px;
	  padding: 0;
	  list-style: none;
	  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "Noto Serif JP", serif;
	}
	
	.global-nav__item {
	  text-align: center;
	  padding: 14px;
	}
	
	.global-nav__item a {
	  display: block;
	  text-decoration: none;
	  color: #111;
	}
	
	.global-nav__item a:hover {
	  background-color: #eee;
	}
	
	
	
	.hamburger__line {
	  position: absolute;
	  left: 11px;
	  width: 20px;
	  height: 1px;
	  background-color: #333;
	  transition: all .6s;
	}
	.hamburger__line--1 {
	  top: 14px;
	}
	.hamburger__line--2 {
	  top: 20px;
	}
	.hamburger__line--3 {
	  top: 26px;
	}
	.black-bg {
	  position: fixed;
	  left: 0;
	  top: 0;
	  width: 100vw;
	  height: 100vh;
	  z-index: 100;
	  background-color: #000;
	  opacity: 0;
	  visibility: hidden;
	  transition: all .6s;
	  cursor: pointer;
	}
	
	/* 表示された時用のCSS */
	.nav-open .global-nav {
	  right: 0;
	}
	
	.nav-open .black-bg {
	  opacity: .8;
	  visibility: visible;
	}
	
	.nav-open .hamburger__line--1 {
	  transform: rotate(45deg);
	  top: 20px;
	}
	
	.nav-open .hamburger__line--2 {
	  width: 0;
	  left: 50%;
	}
	
	.nav-open .hamburger__line--3 {
	  transform: rotate(-45deg);
	  top: 20px;
	}
	
	
	/*	
	おすすめ商品
	*/
	
	.item_section{
		padding: 80px 0 32px;
}


	.container{
		position: relative;
		z-index: 1;
	}

	.container::before{
		width: 93%;
		height: 99%;
	}

	.item_inner{
		width: 360px;
		margin: 0 auto;
		padding-top: 40px;
	}

	.item_section_text{
		margin-top: 40px;
		width: 89%;
	}

	.item_list{
		margin: 40px auto 0;
		display: block;
	}	

	.item_list li{
		margin-left: 0px;
		width: 90%;
	}


	/*btn*/
	.gallery_btn{
		margin-top: 0px;
	}

	.button {
		padding: 1.2em 3em;
	}

	

	/* 
	about
	*/

	.about{
		padding: 110px 0 80px;
	}

	.about_img_part{
		margin-top: 40px;
	}
	
	.about_img_part img{
		width: 400px;
		height: 180px;
	}

/*about_text*/

.about_text_part{
    margin-top: -38px;
    padding: 20px;
    width: 100%;
	background-color: #FDFDFD;
}

	.about_text_part_title{
		font-size: 1.6em;
	}

	.about_text_part_text{
		margin-top: 20px;
	}


	/*about_btn*/
	.about_btn_wrap{
		margin-top: 32px;
	}

	/*
	shop_info
	*/

	.shop_info{
		padding: 80px 0 80px;
	}

	.shop_info_container{
		margin-top: 60px;
		height: auto;
		justify-content: start;
		display: block;
	}

	.gmap_sp {
		height: 0;
		overflow: hidden;
		padding-bottom: 56.25%;
		position: relative;
	}
	
	.gmap_sp iframe {
		position: absolute;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
	}


	.shop_info_detail{
		width: 100%;
		margin-left: auto;
		font-size: 1.5rem;
		margin-top: 40px;
	}

	.shop_info_detail_box{
		margin-top: 15px;
	}

	.shop_info_detail_box dt{
		padding: 0px 0px 15px 5px;
		width: 100px;
	}


	.shop_info_detail_box dd{
		padding: 0px 0;
	}



	/*contact*/
	.contact{
		padding-top: 80px;
	}

	.contact_container{
		position: relative;
		z-index: 1;
		max-width: 100%;
	}



.contact_wrap{
	display: block;
	justify-content: flex-start;
	margin-top: 40px;
}


.contact_img{
	width: 100%;
	z-index: 3;
	margin-bottom: 120px;
}

.contact_box{
	display: block;
    padding: 45px 0;
    margin: 110px 0 56px;
	background-color: #FFFFFF;
	font-size: 1.6rem;
	width: 100%;
	z-index: 3;
}

.contact_box dd{
	font-size: 2rem;
	color: #000;
	padding-bottom: 20px;
}

.contact_tel{
	width: 100%;
	padding-left: 60px;
	padding-right: 30px;
}




.contact_fax{
	width: 100%;
    padding-left: 60px;
	padding-top: 20px;
	border-left: none;
	text-transform: uppercase;
	border-top: 1px solid #d4d7d3;

}
	
	
/*	about*/
	
	.about_section{
	margin: 80px auto;
}


.about_section h3{
	font-size: 2.2rem;
	width: 50%;	
}

.about_main{
	margin: 40px auto;
}



.about_copy{
	font-size:  1.6rem;	
}

.about_text{
	display: block;
	margin-top: 60px;
}

.about_text_line{
	padding-top: 20px;
	font-size: 1.4rem;
	width: 100%;
	margin: 0 auto;
}

.about_text_img{
	width: 100%;
}

.about_mid_img{
	text-align: right;
	margin: 80px 20px 0 0;
}


	
}

