@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");

.header{
}
.header .logo{
	display:inline-block;
	width:280px;
}
.header .tel{
	display:inline-block;
	font-size:18px;
}
img {
	max-width:100%;
}
.img33{
	aspect-ratio: 3 / 3;
	object-fit:cover;
	padding:2px;
	width:100%;
}

h1,h2,h3,h4,h5,h6{
	margin:2em 0 1em;
}

/*ナビバー*/
.navbar-custom {
  background-color: orange;
}
.navbar-custom .nav li a{
	color:#333333;
}
.navbar-custom .nav li a:hover{
	color:#000000;
}

/*高さをそろえる*/
.row-height {
    display: flex;
    flex-wrap: wrap;
}

/*item*/
.item{
	border:1px solid #efefef;
	border-radius: 5px;
	margin:5px 0 15px;
	padding:5px;
	background-color:#efefef;
}
.item a{
	text-decoration: none;
	color:#333333;
}
.item p{
	font-size:13px;
	font-weight:bold;
}
.item p.name{
	height:2em;
	line-height:1em;
	margin:5px;
}
.item p.price{
	font-size:16px;
}
/*sticky*/
.sticky {
	position: sticky;
	top:0;
}
.sticky-top{
	position: sticky;
	z-index: 999;
	top: 0;
}

.list_navi{
}
.list_navi ul{
	display:block;
	margin:0 0 5px;
	padding:0;
}
.list_navi ul li{
	display:block;
	margin:0 0 5px 12px;
	padding:0;
	list-style: none;
}
.list_navi ul li a{
	display:block;
	margin:0;
	padding:0;
}



/*==================================================
　5-2-4 MENUがCLOSEに
===================================*/


#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:-120%;
    left:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:rgba(0,0,0,0.8);
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
	padding:0;
	margin:0;
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #FFF;
	text-decoration: none;
	padding:10px 0;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}


/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	position: fixed;
	background:#333333;
	cursor: pointer;
    width: 50px;
    height:50px;
	border-radius: 5px;
	right:10px;
	top:10px;
	z-index: 1000;
}

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 5px;
	background: #fff;
  	width: 45%;
  }


.openbtn span:nth-of-type(1) {
	top:13px;	
}

.openbtn span:nth-of-type(2) {
	top:19px;
}

.openbtn span:nth-of-type(3) {
	top:25px;
}

.openbtn span:nth-of-type(3)::after {
	content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
	position: absolute;
	top:5px;
	left:-2px;
	color: #fff;
	font-size: 9px;
	text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

.openbtn.active span:nth-of-type(1) {
    top: 14px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(3)::after {
	content:"Close";/*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
	top:5px;
	left:4px;
}


/*========= ページトップのためのCSS ===============*/
/*リンクの形状*/
#page-top a{
  display: flex;
  justify-content:center;
  align-items:center;
  background:#942D2F;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase; 
  text-decoration: none;
  font-size:0.6rem;
  transition:all 0.3s;
}
#page-top a i{
	font-size:30px;
	display:block;
}
#page-top a:hover{
  background: #777;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  z-index: 2;
    /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 1;
  transform: translateY(100px);
  }
}