@charset "utf-8";
/*===確認用アウトライン
* {
  outline: 1px solid red;
}*/
/* CSS Document */
html {
  scroll-behavior: smooth;
  /*font-size: 62.5%;*/ /*1rem=10px*/
}
body {
  font-family: 'Shippori Mincho', serif;
  color: #333333;
  line-height: 1.5;
}
img {
  width: 100%;
  height: auto;
}
.SEC_container {
　max-width: 1920px;
  margin: 0 auto;
  word-break: break-all;
}
.SEC_container80{
　max-width: 1920px;
  width: 80vw;
  margin: 0 auto;
  word-break: break-all;
}

.img-pc {
  display: inline-block;
}
.img-sp {
  display: none;
}
.only_sp {
  display: none;
}
.only_ssp {
    display: none;
  }
/*改行残りを防ぐ*/
.tw_p {
  text-wrap: pretty;
}
/*=========フッター===========

=============================*/

/*ロゴ*/

.footer_logo img {
  width: 245px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(0%) sepia(47%) saturate(3%) hue-rotate(177deg) brightness(104%) contrast(60%);
}

footer{
	 background-image:linear-gradient(0deg,rgba(201, 193, 175, 0) 0%, rgba(201, 193, 175, 1) 100%);
	position: relative;
}
footer::after{
	content: "";
	width: 100%;
	aspect-ratio:24/5;
	background-image:url("../images/yokoku/yokoku_02@2x.webp");
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	bottom:98%;
	left: 50%;
	transform: translateX(-50%);
	z-index: -10;
}
.footer_container {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin: 0 auto 4.0em;
}

footer ul {
font-family: 'Shippori Mincho', serif;
	font-size: clamp(10px, 0.6vw, 12px);
  line-height: 1.8em;
}
.footer_right {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  grid-row-gap: 10px;
}
.footer_right img {
  width: 180px;
  margin-bottom: 5px;
}
.shop_tel {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(16px,1vw,20px);
  letter-spacing: 0.25em;
  display: flex;
  justify-content: center;
	white-space: nowrap;
}
.shop_tel .iruma{
	letter-spacing: 1.0em;
}
.shop_add {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(10px,0.7vw,15px);
    letter-spacing: 0.25em;
	white-space: nowrap;
}

.footer_button {
  width: 14.0em;
  text-align: center;
  background-color: #796536;
  border: solid 1px #796536;
  color: #ffffff;
  padding: 0.4em 2.0em;
  margin:0 auto 10vh;
	opacity: 0.8;
  transition: transform 0.2s ease-in;
}
.footer_button:hover{
  transform: scale(1.05);
  opacity: 0.8;
}
/*===========トップへ戻る========*/
#page-top {
  position: fixed;
  bottom: 110px;
  right: 1vw;
  width: 55px;
  height: 55px;
  background-color: #796536;
  border-radius: 50%;
  opacity: 0.5;
  z-index: 100;
  cursor: pointer;
  /* アニメーションの速度設定 */
  transition: transform 0.3s ease;
}
#page-top a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
#page-top::before {
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: translate(-50%, -50%) rotate(-45deg);
  content: "";
  top: 50%;
  left: 50%;
}
#page-top:hover {
  opacity: 1;
  transform: translateY(-3px)
}

/*=========レスポンシブ=====================

=======SP対応・ブレイクポイント768px=========*/
@media (max-width: 768px) {
/*=====その他=====================*/
  .img-pc {
    display: none;
  }
  .img-sp {
    display: inline-block;
  }
  .only_sp {
    display: inline;
  }
  .only_ssp {
    display: none;
  }
.footer_container {
  display: block;
	}
	.footer_container ul{
		margin-bottom: 2.2em;
		padding-top: 1.5em;
	}
}
