<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*標準ボタン
---------------------------------------------------------------*/
/*鍵フックボタン
---------------------------------------------------------------*/
/*カーテンボタン
---------------------------------------------------------------*/
/*ラインダッシュボタン
---------------------------------------------------------------*/
/*IE対応のグラデーション
========================================================================*/
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:400,600");

/*変数指定
=======================================================*/
/*メインカラー
--------------------------------------------*/
/*フォント
--------------------------------------------*/
/*body以下
=======================================================*/
body {
  margin: auto;
  padding: 0;
  width: 100%;
  font-family: "Noto Serif JP", serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 3.8vw;
  line-height: 1.8;
  color: #333;
}

.left {
  float: left;
}

.right {
  float: right;
}

.text-c {
  text-align: center;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

/*更新画像
=================================================*/
/*更新イメージの調整
----------------------------------------------- */
.com-img {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: url(../img/common/no-img.jpg) no-repeat center/cover;
}

.com-img img {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  width: 100%;
  object-fit: cover;
  font-family: "object-fit: cover; object-position: bottom";
  object-position: center;
  min-height: 100%;
  min-width: 100%;
  transform: translateX(-50%) translateY(-50%);
}

/*共通テキスト
----------------------------------------------- */
.com-txt p {
  margin-bottom: 25px;
}

.com-txt p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .com-txt p br {
    display: none;
  }
}

/*display flexキッド 
=================================================*/
.flex {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  -js-display: flex;
  display: flex;
  width: 100%;
}

/*折り返し
-----------------------*/
.flx-wrp {
  flex-wrap: wrap;
}

/*逆順
-----------------------*/
.flx-rr {
  flex-direction: row-reverse;
}

/*水平方向の揃え
=================================================*/
/*初期値
-----------------------*/
.flx-strt {
  justify-content: start;
}

/*並列で均等配置（左右隙間なし=space-between）
-----------------------*/
.flx-btw {
  justify-content: space-between;
}

/*並列で均等配置（左右隙間あり=space-around）
-----------------------*/
.flx-ard {
  justify-content: space-around;
}

/*水平揃え　末揃え
-----------------------*/
.flx-end {
  justify-content: flex-end;
}

/*水平揃え　中央揃え
-----------------------*/
.flx-center {
  justify-content: center;
}

/*垂直方向の揃え
=================================================*/
/*水平揃え　上揃え
-----------------------*/
.flx-alitem-strt {
  align-items: flex-start;
}

/*水平揃え　高さ揃え
-----------------------*/
.flx-alitem-strch {
  align-items: stretch;
}

/*水平揃え　縦・横の中央揃え
-----------------------*/
.flx-alitem-c {
  align-items: center;
}

/*水平揃え　下揃え
-----------------------*/
.flx-alitem-end {
  align-items: flex-end;
}

/*水平揃え　ベースライン揃え
-----------------------*/
.flx-alitem-base {
  align-items: baseline;
}

/*複数行にした揃え方
=================================================*/
/*初期値
-----------------------*/
.flx-alcont-strt {
  align-content: flex-start;
}

/*親要素の開始位置から配置。上揃え
-----------------------*/
.flx-alcont-strch {
  align-content: stretch;
}

/*親要素の終点から配置。下揃え
-----------------------*/
.flx-alcont-end {
  align-content: flex-end;
}

/*中央揃え
-----------------------*/
.flx-alcont-c {
  align-content: center;
}

/*最初と最後の子要素を上下の端に配置し、残りの要素は均等に間隔をあけて配置
-----------------------*/
.flx-alcont-s-btw {
  align-content: space-between;
}

/*上下端にある子要素も含め、均等に間隔をあけて配置
-----------------------*/
.flx-alcont-s-ard {
  align-content: space-around;
}

.com-tel {
  font-family: "Noto Serif JP", serif;
}

.com-tel span {
  font-weight: 700;
  font-size: 6vw;
  color: #fff;
  position: relative;
  padding-left: 25px;
}

.com-tel span:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  width: 16px;
  height: 22px;
  background: url("../img/common/tel-icon.png") no-repeat center/contain;
  margin-top: -11px;
}

.com-tel.com-tel-blk {
  font-family: "Noto Serif JP", serif;
}

.com-tel.com-tel-blk span {
  font-weight: 700;
  font-size: 20px;
  color: #333;
  position: relative;
  padding-left: 25px;
}

.com-tel.com-tel-blk span:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  width: 16px;
  height: 22px;
  background: url("../img/common/tel-icon-gray.png") no-repeat center/contain;
  margin-top: -11px;
}

/*=========================================================
	header
=========================================================*/
#header {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 70px;
  padding: 0 5%;
  box-sizing: border-box;
}

#header h1 span {
  display: block;
}

#header .hd-l {
  width: 15%;
}

#header .hd-r {
  display: none;
}

/*Mainvisual
=========================================================*/
#mv {
  height: 30vh;
  background: url(../img/mv/mv-bg.jpg) no-repeat center/cover;
}

/*=========================================================
	トップページ
=========================================================*/
/*下層ボックス
=========================================================*/
#contents-u {
  padding: 15% 0 10%;
}

/*共通ボタン
=========================================================*/
.more-btn01 {
  position: relative;
  text-align: center;
  display: block;
  letter-spacing: 1.2px;
  transition: all 0.3s;
  margin: 0 auto;
  font-size: 14px;
  border: solid #000 1px;
  background: #000;
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
  overflow: hidden;
}

.more-btn01:before,
.more-btn01:after {
  content: "";
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  box-sizing: border-box;
}

.more-btn01 span {
  position: relative;
  transition: all 0.3s;
  transform: scale(1, 1);
  z-index: 10;
}

.more-btn01 span {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .more-btn01 {
    font-size: 3.5vw;
  }
}

.more-btn01:hover {
  background: #fff;
  border: solid #000 1px;
}

.more-btn01:hover span {
  color: #000;
}

.more-btn02 {
  position: relative;
  text-align: center;
  display: block;
  letter-spacing: 1.2px;
  transition: all 0.3s;
  margin: 0 auto;
  font-size: 14px;
  border: solid #000 1px;
  background: #000;
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
  overflow: hidden;
}

.more-btn02:before,
.more-btn02:after {
  content: "";
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  box-sizing: border-box;
}

.more-btn02 span {
  position: relative;
  transition: all 0.3s;
  transform: scale(1, 1);
  z-index: 10;
}

.more-btn02 span {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .more-btn02 {
    font-size: 3.5vw;
  }
}

.more-btn02:before {
  opacity: 0;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1, 0.1);
}

.more-btn02:after {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.more-btn02:hover:before {
  opacity: 1;
  transform: scale(1, 1);
}

.more-btn02:hover:after {
  opacity: 0;
  transform: scale(1, 0.1);
}

.more-btn03 {
  position: relative;
  text-align: center;
  display: block;
  letter-spacing: 1.2px;
  transition: all 0.3s;
  margin: 0 auto;
  font-size: 14px;
  border: solid #000 1px;
  background: #000;
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
  overflow: hidden;
}

.more-btn03:before,
.more-btn03:after {
  content: "";
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  box-sizing: border-box;
}

.more-btn03 span {
  position: relative;
  transition: all 0.3s;
  transform: scale(1, 1);
  z-index: 10;
}

.more-btn03 span {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .more-btn03 {
    font-size: 3.5vw;
  }
}

.more-btn03:before {
  opacity: 0;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0.1, 0.1);
}

.more-btn03:hover:before {
  opacity: 1;
  transform: scale(1, 1);
}

.more-btn03:hover:after {
  transform: scale(0, 0);
  opacity: 0;
}

.more-btn04 {
  position: relative;
  text-align: center;
  display: block;
  letter-spacing: 1.2px;
  transition: all 0.3s;
  margin: 0 auto;
  font-size: 14px;
  border: solid #000 1px;
  background: #000;
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
  overflow: hidden;
}

.more-btn04:before,
.more-btn04:after {
  content: "";
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  box-sizing: border-box;
}

.more-btn04 span {
  position: relative;
  transition: all 0.3s;
  transform: scale(1, 1);
  z-index: 10;
}

.more-btn04 span {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .more-btn04 {
    font-size: 3.5vw;
  }
}

.more-btn05 {
  position: relative;
  text-align: center;
  display: block;
  letter-spacing: 1.2px;
  transition: all 0.3s;
  margin: 0 auto;
  font-size: 14px;
  border: solid #000 1px;
  background: #000;
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
  overflow: hidden;
}

.more-btn05:before,
.more-btn05:after {
  content: "";
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  box-sizing: border-box;
}

.more-btn05 span {
  position: relative;
  transition: all 0.3s;
  transform: scale(1, 1);
  z-index: 10;
}

.more-btn05 span {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .more-btn05 {
    font-size: 3.5vw;
  }
}

.more-btn span {
  font-weight: 700;
  position: relative;
  padding-right: 25px;
  transition: .1s all ease-in;
}

.more-btn span:before {
  transition: .1s all ease-in;
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  width: 18px;
  height: 6px;
  background: url("../img/common/more-btn-arw.png") no-repeat center/contain;
  margin-top: -3px;
}

.more-btn01 {
  background: #fff;
  padding: 15px 0;
  border: solid #fff 1px;
}

.more-btn01 span {
  color: #333;
  position: relative;
  padding-right: 30px;
}

.more-btn01 span:before {
  transition: .1s all ease-in;
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  width: 18px;
  height: 6px;
  background: url("../img/common/more-btn-arw.png") no-repeat center/contain;
  margin-top: -3px;
}

.link-btn {
  width: 200px;
  padding: 15px 0;
  display: block;
  background: #fff;
  text-align: center;
  transition: .1s all ease-in;
}

.link-btn span {
  font-size: 14px;
  position: relative;
  padding-left: 23px;
}

.link-btn span:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  width: 13px;
  height: 13px;
  background: url("../img/common/link-icon.png") no-repeat center/contain;
  margin-top: -6.5px;
}

.link-btn:hover {
  background: #f1eae5;
}

.mail-btn {
  display: block;
  background: transparent;
  border: solid 1px #fff;
  text-align: center;
  width: 180px;
  padding: 10px 0;
  transition: 0.3s all ease;
}

.mail-btn span {
  position: relative;
  padding-left: 35px;
  color: #fff;
}

.mail-btn span:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  width: 20px;
  height: 14px;
  background: url("../img/common/mail-icon.png") no-repeat center/contain;
  margin-top: -7px;
}

.mail-btn:hover {
  background: #47382f;
}

.mail-btn:hover span {
  color: #fff;
}

.com-line-ttl {
  margin-bottom: 15%;
}

.com-line-ttl span {
  display: block;
  font-weight: 700;
}

.com-line-ttl .eng {
  padding-bottom: 3%;
  margin-bottom: 3%;
  font-size: 5.5vw;
  position: relative;
}

.com-line-ttl .eng:before {
  content: "";
  position: absolute;
  display: block;
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 1px;
  background: #aeaeae;
}

.com-line-ttl .ja {
  font-size: 4.2vw;
}

/*top-news
=========================================================*/
#top-news {
  padding: 15% 0 12%;
}

#top-news .top-news-wrp {
  display: block;
}

#top-news .top-news-ttl-wrp {
  position: relative;
}

#top-news .top-news-ttl-wrp .top-news-ttl {
  margin-bottom: 10%;
  font-weight: 700;
}

#top-news .top-news-ttl-wrp .top-news-ttl span {
  font-size: 4vw;
  display: block;
  line-height: 1;
}

#top-news .top-news-ttl-wrp .top-news-ttl .eng {
  margin-bottom: 5%;
  font-size: 6vw;
}

#top-news .more-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}

#top-news .top-news-post article {
  border-bottom: 1px solid #aeaeae;
}

#top-news .top-news-post article:last-child {
  border-bottom: none;
}

#top-news .top-news-post article a {
  display: block;
  padding: 4%;
  box-sizing: border-box;
}

#top-news .top-news-post article a time {
  display: block;
  text-align: right;
  color: #aeaeae;
  margin-bottom: 2%;
  font-size: 3vw;
}

#top-news .top-news-post article a .top-news-post-bx ul {
  margin-bottom: 5%;
  font-size: 0;
}

#top-news .top-news-post article a .top-news-post-bx ul li {
  margin: 3px 5px 0 0;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  font-size: 12px;
  color: #aeaeae;
}

#top-news .top-news-post article a .top-news-post-ttl {
  font-size: 3.4vw;
}

/*top-concept
=========================================================*/
#top-concept {
  padding: 15% 0 10%;
  background: url(../img/top/top-concept-bg.jpg) no-repeat top center/100%;
  position: relative;
}

#top-concept .top-concept-img {
  text-align: center;
  margin-bottom: 8%;
}

#top-concept .top-concept-bx {
  margin: 0 auto 10%;
  width: 90%;
}

#top-concept .slider {
  position: relative;
}

#top-concept .slider .swiper-button-prev,
#top-concept .slider .swiper-button-next {
  width: 8vw;
  height: 20vw;
  top: 50%;
  margin-top: -10vw;
}

#top-concept .slider .swiper-button-prev {
  background: url(../img/top/delider-prev.png) no-repeat center/contain;
}

#top-concept .slider .swiper-button-next {
  background: url(../img/top/delider-next.png) no-repeat center/contain;
}

/*top-cafe
=========================================================*/
#top-cafe {
  position: relative;
  padding: 18% 0 0;
}

#top-cafe .top-cafe-wrp {
  padding-bottom: 40%;
  background: url(../img/top/top-cafe-woman-icon.png) no-repeat right bottom/28%;
}

#top-cafe .top-cafe-ttl {
  margin-bottom: 10%;
}

#top-cafe .top-cafe-img {
  text-align: center;
  margin-bottom: 10%;
}

.cafe-img-list-bx {
  padding-top: 10%;
  background: url(../img/top/top-cafe-img-list-bg.png) repeat-x bottom left, url(../img/top/top-cafe-bg.jpg) no-repeat top left;
}

.cafe-img-list-bx li {
  width: 49%;
  margin-right: 2%;
}

.cafe-img-list-bx li:last-of-type {
  margin-right: 0;
}

/*top-experience
=========================================================*/
#top-experience {
  position: relative;
  padding: 15% 0 30%;
  background: url(../img/top/top-experience-coffe-icon.png) no-repeat right 10% bottom 5%/20%, url(../img/top/top-experience-bg.png) repeat-x top left;
}

#top-experience .top-experience-bx {
  width: 90%;
  margin: 0 auto;
}

#top-experience .top-experience-bx .top-experience-img {
  margin-bottom: 10%;
}

/*top-others"
=========================================================*/
.top-others {
  padding: 10% 0;
}

.top-others .top-others-wrp {
  display: block;
}

.top-others .top-others-wrp .com-others {
  position: relative;
  margin-bottom: 15%;
  padding-bottom: 15%;
}

.top-others .top-others-wrp .com-others:last-child {
  margin-bottom: 0;
}

.top-others .top-others-wrp .com-others .top-others-ttl {
  margin-bottom: 8%;
}

.top-others .top-others-wrp .com-others .top-others-ttl span {
  line-height: 1.5;
  display: block;
}

.top-others .top-others-wrp .com-others .top-others-ttl .eng {
  line-height: 1.2;
  font-size: 5vw;
  margin-bottom: 5%;
  border-left: 3px solid #c6c6c6;
  padding-left: 4%;
  box-sizing: border-box;
}

.top-others .top-others-wrp .com-others .top-others-ttl .ja {
  font-size: 4.5vw;
}

.top-others .top-others-wrp .top-others-img {
  margin-bottom: 10%;
  text-align: center;
}

.top-others .top-others-wrp .top-others-more {
  position: absolute;
  bottom: 0;
  right: 0;
}

/*top-
=========================================================*/
/*=========================================================
	footer
=========================================================*/
#fixed-banner {
  display: none;
}

#footer {
  padding: 15% 0 5%;
  background: url(../img/common/ft-bg.jpg) no-repeat center/cover;
}

#footer .ft-wrp {
  display: block;
}

#footer .ft-l {
  color: #fff;
}

#footer .ft-l .ft-logo {
  width: 30%;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 10%;
}

#footer .ft-l .ft-works-dl {
  width: 300px;
  margin: 0 auto 10%;
}

#footer .ft-l .ft-works-dl .in-dl {
  font-size: 11px;
  margin-bottom: 8px;
}

#footer .ft-l .ft-works-dl .in-dl:last-child {
  margin-bottom: 0;
}

#footer .ft-l .ft-works-dl .in-dl dt {
  width: 80px;
}

#footer .ft-l .ft-works-dl .in-dl dd {
  box-sizing: border-box;
  padding-left: 10px;
  border-left: 1px solid #fff;
  width: 220px;
}

#footer .ft-l .ft-tel-link-info {
  display: block;
  margin-bottom: 10%;
}

#footer .ft-l .ft-tel-link-info .ft-tel-banner {
  display: block;
  text-align: center;
  margin-bottom: 8%;
}

#footer .ft-l .ft-tel-link-info .ft-tel-banner .com-tel {
  display: block;
  margin-bottom: 5%;
}

#footer .ft-l .ft-tel-link-info .ft-tel-banner .link-btn {
  width: 80%;
  margin: 0 auto;
}

#footer .ft-l .ft-tel-link-info .ft-tel-banner .link-btn span {
  font-size: 3vw;
}

#footer .ft-l .ft-sns-link li {
  margin-right: 5%;
}

#footer .ft-l .ft-sns-link li:last-child {
  margin-right: 0;
}

#footer .ft-nav {
  width: 90%;
  margin: 0 auto;
  box-sizing: border-box;
}

#footer .ft-nav ul {
  width: 50%;
}

#footer .ft-nav ul li {
  margin-bottom: 5%;
}

#footer .ft-nav ul li:last-child {
  margin-bottom: 0;
}

#footer .ft-nav ul li a {
  font-size: 3vw;
  color: #ffff;
}

#footer .ft-nav ul li a:hover {
  color: #f1eae5;
}

#footer #copyright {
  margin-top: 10%;
  text-align: center;
  padding: 5px 0;
}

#footer #copyright small {
  color: #fff;
  font-size: 2.5vw;
}

#footer #copyright small a {
  color: #fff;
}

/*=========================================================
	下層ページ
=========================================================*/
/*下層サブビジュアル
=========================================================*/
#sv {
  height: 50vw;
  background: url(../img/common/ma-bg.jpg) no-repeat center/cover;
}

#sv {
  padding-top: 5vw;
  box-sizing: border-box;
}

#sv .sv-ttl {
  width: 80%;
  text-align: center;
  color: #fff;
  padding: 6% 3%;
  box-sizing: border-box;
  background: rgba(199, 180, 166, 0.8);
}

#sv .sv-ttl span {
  display: block;
  line-height: 1;
}

#sv .sv-ttl .eng {
  font-size: 5vw;
  padding-bottom: 3%;
  margin-bottom: 3%;
  border-bottom: 1px solid #fff;
}

#sv .sv-ttl .ja {
  font-size: 4vw;
}

/*下層共通タイトル
=========================================================*/
.ttl01 {
  font-size: 5vw;
  margin-bottom: 5%;
  font-weight: 700;
  line-height: 1.5;
}

.ttl02 {
  margin-bottom: 5%;
  font-size: 4.5vw;
  line-height: 1.5;
  padding-bottom: 2%;
  border-bottom: 1px solid #333;
}

.com-ttl {
  text-align: center;
  font-weight: 700;
  font-size: 4.5vw;
  margin-bottom: 10%;
  letter-spacing: .2rem;
}

.com-ttl span {
  display: block;
}

.com-ttl .eng {
  font-size: 5.5vw;
}

/*下層共通パーツ
=========================================================*/
/*パンくず
=========================================================*/
#bread-clumb {
  width: 100%;
  position: absolute;
  margin: 0 auto;
  padding: 10px 0 50px;
}

#bread-clumb li {
  position: relative;
  color: #333;
  font-size: 14px;
  float: left;
  margin-right: 20px;
}

#bread-clumb li:after {
  content: "&gt;";
  position: absolute;
  display: block;
  right: -15px;
  top: 0;
}

#bread-clumb li:last-child {
  margin-right: 0;
}

#bread-clumb li:last-child:after {
  display: none;
}

#bread-clumb li a {
  color: #333;
}

/*共通テーブル
=========================================================*/
.com-dl&gt;.in-dl {
  background: #fff;
  border-bottom: 1px solid #f3f3f3;
  margin-bottom: 0;
}

.com-dl&gt;.in-dl:nth-child(1) {
  border-top: 1px solid #f3f3f3;
}

.com-dl&gt;.in-dl dt,
.com-dl&gt;.in-dl dd {
  padding: 2% 3%;
}

.com-dl&gt;.in-dl&gt;dt {
  color: #fff;
  background: #aeaeae;
}

.com-dl&gt;.in-dl&gt;dd {
  vertical-align: top;
  padding-bottom: 5%;
}

.com-dl&gt;.in-dl&gt;dd a {
  color: #333;
}

/*料理/コーヒーのこだわり
=========================================================*/
#contents-u.about-u {
  padding: 0;
}

#sv.sv-about-bg {
  background: url(../img/about/sv-about-bg.jpg) no-repeat center/cover;
}

#about-food {
  background: url(../img/about/about-food-bg.jpg) no-repeat left top/50%;
  padding: 15% 0 12%;
}

#about-food .com-ttl {
  text-align: left;
}

#about-food .about-food-info article {
  display: block;
  margin-bottom: 10%;
}

#about-food .about-food-info article:last-child {
  margin-bottom: 0;
}

#about-food .about-food-info article .about-food-img {
  text-align: center;
  margin-bottom: 10%;
}

#about-food .about-food-info article .about-food-txtbx .about-food-info-ttl {
  padding-bottom: 3%;
  margin-bottom: 5%;
  position: relative;
}

#about-food .about-food-info article .about-food-txtbx .about-food-info-ttl:before {
  content: "";
  position: absolute;
  display: block;
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 1px;
  background: #aeaeae;
}

#about-food .about-food-info article .about-food-txtbx .about-food-info-ttl small {
  display: block;
}

#about-food .about-food-info article .about-food-txtbx .about-food-info-ttl .main {
  font-size: 4.5vw;
}

#about-coffee {
  padding: 15% 0 12%;
  background: #eeeceb url(../img/about/about-coffee-bg.jpg) no-repeat right bottom/50%;
}

#about-coffee .com-ttl {
  text-align: left;
}

#about-coffee .about-coffee-info-bx .about-coffee-info-bx-ttl {
  text-align: center;
  font-size: 4.5vw;
  font-weight: 700;
  margin-bottom: 15%;
  position: relative;
}

#about-coffee .about-coffee-info-bx .about-coffee-info-bx-ttl:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  width: 6vw;
  height: 1px;
  background: #aeaeae;
}

#about-coffee .about-coffee-info-bx .about-coffee-info-bx-ttl:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  width: 6vw;
  height: 1px;
  background: #aeaeae;
}

#about-coffee .about-coffee-info-bx .about-coffee-info-bx-ttl small {
  display: block;
}

#about-coffee .about-coffee-info-bx .about-coffee-info-bx-ttl em {
  color: #a54828;
}

#about-coffee .about-coffee-info-bx .about-coffee-info-bx-ttl .main {
  font-size: 5vw;
}

#about-coffee .about-coffee-info article {
  display: block;
  margin-bottom: 10%;
}

#about-coffee .about-coffee-info article:last-child {
  margin-bottom: 0;
}

#about-coffee .about-coffee-info article .about-coffee-img {
  text-align: center;
  margin-bottom: 10%;
}

#about-coffee .about-coffee-info article .about-coffee-info-ttl {
  padding-bottom: 3%;
  margin-bottom: 5%;
  position: relative;
}

#about-coffee .about-coffee-info article .about-coffee-info-ttl .main {
  font-size: 4.5vw;
}

#about-coffee .about-coffee-info article .about-coffee-info-ttl:before {
  content: "";
  position: absolute;
  display: block;
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 1px;
  background: #aeaeae;
}

#about-coffee .about-coffee-info article .about-coffee-txt em {
  color: #a54828;
}

#about-coffee .about-coffee-info article .caution-txt {
  font-weight: 700;
  background: #e5dcd9;
  padding: 4%;
  box-sizing: border-box;
  font-size: 4.2vw;
  letter-spacing: 0;
  margin-top: 8%;
}

#about-coffee .about-coffee-info article .caution-txt em {
  color: #a54828;
}

/*メニュー
=========================================================*/
#contents-u.menu-u {
  padding: 0;
}

#sv.sv-menu-bg {
  background: url(../img/menu/sv-menu-bg.jpg) no-repeat center/cover;
}

.menu-link {
  padding: 10% 0;
}

.page-link {
  width: 95%;
  margin-left: auto;
  overflow-x: scroll;
  white-space: nowrap;
  display: block;
}

.page-link li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5%;
}

.page-link li:last-child {
  margin-right: 0;
}

.page-link li a {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  background: #aeaeae;
  padding: 5px 15px;
  box-sizing: border-box;
}

.page-link li a span {
  font-size: 3.2vw;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  position: relative;
  padding-right: 5vw;
}

.page-link li a span:before {
  transition: .1s all ease-in;
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  width: 4vw;
  height: 2vw;
  background: url("../img/common/more-btn-arw-wht.png") no-repeat center/contain;
  margin-top: -1vw;
}

.page-link .current a {
  background: #47382f;
}

.menu-link-txt {
  width: 90%;
  margin: 10% auto 0;
  font-size: 3.5vw;
}

.menu-post {
  padding: 15% 0 12%;
  background: #f1eae5;
}

.menu-post .com-menu-post {
  margin-bottom: 15%;
}

.menu-post .com-menu-post:last-of-type {
  margin-bottom: 0;
}

.menu-post .com-menu-post .com-menu-post-ttl {
  text-align: center;
  background: url(../img/common/com-menu-ttl-line.jpg) repeat-x center;
  margin-bottom: 8%;
}

.menu-post .com-menu-post .com-menu-post-ttl span {
  display: inline-block;
  vertical-align: middle;
  padding: 5px 20px;
  font-size: 4.5vw;
  background: #f1eae5;
  line-height: 1.5;
}

.menu-post .com-menu-post .com-menu-post-bx {
  display: block;
}

.menu-post .com-menu-post .com-menu-post-bx .com-menu-post-dl .in-dl {
  margin-bottom: 8%;
  padding: 5% 5% 8%;
  background: #fff;
  box-sizing: border-box;
}

.menu-post .com-menu-post .com-menu-post-bx .com-menu-post-dl .in-dl:last-child {
  margin-bottom: 0;
}

.menu-post .com-menu-post .com-menu-post-bx .com-menu-post-dl .in-dl dt {
  display: block;
  margin-bottom: 5%;
  padding-bottom: 3%;
  border-bottom: 1px solid #f1eae5;
}

.menu-post .com-menu-post .com-menu-post-bx .com-menu-post-dl .in-dl dt span {
  display: block;
}

.menu-post .com-menu-post .com-menu-post-bx .com-menu-post-dl .in-dl dt .main {
  font-size: 4.5vw;
}

.menu-post .com-menu-post .com-menu-post-bx .com-menu-post-dl .in-dl dt .price {
  text-align: right;
  font-size: 5vw;
}

.menu-post .com-menu-post .meni-img-list {
  margin-top: 10%;
  overflow-x: scroll;
  flex-wrap: nowrap;
}

.menu-post .com-menu-post .meni-img-list li {
  flex: 0 0 60%;
  padding-top: 60%;
  background: url(../img/common/no-img.jpg) no-repeat center/cover;
  margin-right: 4%;
}

/*ギャラリー
=========================================================*/
#sv.sv-gallery-bg {
  background: url(../img/gallery/sv-gallery-bg.jpg) no-repeat center/cover;
}

#all-gallery .gallery-post article {
  width: 48%;
  margin: 8% 4% 0 0;
  position: relative;
}

#all-gallery .gallery-post article:nth-child(2n) {
  margin-right: 0;
}

#all-gallery .gallery-post article:nth-child(-n + 2) {
  margin-top: 0;
}

#all-gallery .gallery-post article:last-child {
  margin-right: 0;
}

#all-gallery .gallery-post article .com-img {
  padding-bottom: 100%;
  background: #ccc url(../img/common/no-img.jpg) no-repeat center/cover;
}

#all-gallery .gallery-post article .gallery-post-info {
  box-sizing: border-box;
}

#all-gallery .gallery-post article .tag-list {
  margin-bottom: 8px;
}

#all-gallery .gallery-post article .tag-list li {
  display: inline-block;
  vertical-align: middle;
  padding: 3px 5px;
  line-height: 1;
  font-size: 10px;
  background: #fff;
  color: #47382f;
}

#all-gallery .gallery-post article .gallery-post-ttl {
  font-weight: 700;
  font-size: 3.2vw;
  line-height: 1.5;
}

/*施工実績詳細
=========================================================*/
#s-gallery .s-gallery-bx {
  margin: 0 auto 10%;
}

#s-gallery .gallery-main-img {
  width: 100%;
  padding-top: 100%;
  margin: 0 auto 8%;
}

#s-gallery .tag-list {
  margin-bottom: 10%;
}

#s-gallery .tag-list li {
  display: inline-block;
  vertical-align: middle;
  background: #aeaeae;
  padding: 3px 10px;
  margin: 5px 0 0 0;
  color: #fff;
  font-size: 12px;
}

#s-gallery .gallery-post-ttl {
  font-size: 4.2vw;
  margin-bottom: 6%;
}

#s-gallery .gallery-txt {
  font-size: 3.8vw;
}

/*貸し切りのご案内
=========================================================*/
#contents-u.rent-u {
  padding: 0;
}

#sv.sv-rent-bg {
  background: url(../img/rent/sv-rent-bg.jpg) no-repeat center/cover;
}

#about-scene {
  padding: 14% 0 10%;
  background: url(../img/rent/about-scene-bg.jpg) no-repeat right top;
}

#about-scene .rent-caution-txt {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 15%;
}

#about-scene .about-scene-list {
  text-align: center;
}

#about-scene .about-scene-list figure {
  margin: 8% 6% 0 0;
  width: 46%;
}

#about-scene .about-scene-list figure:nth-child(2n) {
  margin-right: 0;
}

#about-scene .about-scene-list figure:nth-child(-n + 2) {
  margin-top: 0;
}

#about-scene .about-scene-list figure:last-child {
  margin-right: 0;
}

#about-scene .about-scene-list figcaption {
  margin-top: 4%;
  font-size: 4vw;
}

#about-scene .about-scene-list figcaption span {
  background: url(../img/rent/ttl-line.jpg) repeat-x bottom left;
}

#shop-gallery {
  background: #f1eae5;
  padding: 15% 0 12%;
}

#shop-gallery .shop-gallery-img {
  width: 48%;
  padding-top: 48%;
  margin: 4% 4% 0 0;
}

#shop-gallery .shop-gallery-img:nth-of-type(2n) {
  margin-right: 0;
}

#shop-gallery .shop-gallery-ttl {
  width: 100%;
  font-size: 5.5vw;
  margin-bottom: 10%;
}

#point {
  padding: 15% 0 10%;
}

#point .point-list-bx {
  position: relative;
  padding-bottom: 50%;
  display: block;
  background: url(../img/rent/point-icon.png) no-repeat right bottom/30%;
}

#point .point-list-bx .point-dl-r {
  margin-top: 10%;
}

#point .point-list-bx .point-list-dl .in-dl {
  margin-bottom: 10%;
}

#point .point-list-bx .point-list-dl .in-dl:last-child {
  margin-bottom: 0;
}

#point .point-list-bx .point-list-dl .in-dl dt {
  font-size: 4.5vw;
  margin-bottom: 5%;
}

#point .point-list-bx .point-list-dl .in-dl dt span {
  position: relative;
  padding-left: 7vw;
  display: inline-block;
  vertical-align: middle;
  background: url(../img/rent/ttl-line.jpg) repeat-x bottom left;
}

#point .point-list-bx .point-list-dl .in-dl dt span:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  width: 5vw;
  height: 5vw;
  background: url("../img/common/com-check-icon.png") no-repeat center/contain;
  margin-top: -2.5vw;
}

#point .point-list-bx .point-txt {
  margin-top: 5%;
  border: solid 1px #c7b4a6;
  padding: 4%;
  box-sizing: border-box;
}

/*店舗紹介
=========================================================*/
#contents-u.shop-u {
  padding: 0;
}

#sv.sv-shop-bg {
  background: url(../img/shop/sv-shop-bg.jpg) no-repeat center/cover;
}

#shop-access {
  padding: 14% 0 10%;
  background: url(../img/shop/access-bg.jpg) no-repeat left top/50%;
}

#shop-access .access-movie {
  width: 90%;
  margin: 0 auto;
}

#shop-access .access-movie li {
  margin-bottom: 8%;
}

#shop-access .access-movie li:last-child {
  margin-bottom: 0;
}

#shop-access .access-movie li video {
  width: 100%;
}

#shop-info {
  padding: 15% 0 0;
  background: #f1eae5 url(../img/shop/shop-info-icon.png) no-repeat right 5% top 2%/20%;
}

#shop-info .shop-dl {
  display: block;
  margin: 0 auto 10%;
}

.map-iframe {
  height: 300px;
  background: #ccc;
}

.map-iframe iframe {
  width: 100%;
  height: 100%;
}

.contact-banner {
  background: #eeeceb url(../img/common/com-banner-bg.jpg) no-repeat left bottom/80%;
  padding: 10% 0;
  text-align: center;
}

.contact-banner .contact-banner-ttl {
  position: relative;
  padding-bottom: 5%;
  margin-bottom: 5%;
}

.contact-banner .contact-banner-ttl:before {
  content: "";
  position: absolute;
  display: block;
  top: auto;
  right: auto;
  bottom: 0;
  left: 50%;
  width: 10vw;
  height: 1px;
  background: #aeaeae;
  margin-left: -5vw;
}

.contact-banner .contact-banner-ttl .eng {
  margin-bottom: 2%;
}

.contact-banner .contact-banner-list {
  display: block;
}

.contact-banner .contact-banner-list li {
  margin: 0 auto 3%;
}

.contact-banner .contact-banner-list li span {
  font-size: 4vw;
}

.contact-banner .contact-banner-list li:last-child {
  margin-bottom: 0;
}

.contact-banner .contact-banner-list .com-tel span {
  font-size: 6vw;
}

.contact-banner .contact-banner-list .line-btn {
  width: 80%;
}

.contact-banner .contact-banner-list .online-btn {
  width: 80%;
}

/*お知らせ一覧
=========================================================*/
/*タグ一覧
----------------------------------------------------*/
.tag-select-box {
  position: relative;
  width: 40%;
  margin: 0 0 20px auto;
  max-width: 230px;
}

.tag-select-box:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #333;
  pointer-events: none;
}

.tag-select-box #tag-select {
  width: 100%;
  padding: 5% 20% 5% 5%;
  box-sizing: border-box;
  font-size: 1.2rem;
  margin-left: auto;
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  border: none;
  border-bottom: 2px solid #333;
  cursor: pointer;
  border-radius: 0;
  background: none;
  color: #333;
  font-weight: 700;
  appearance: none;
}

.tag-select-box #tag-select option {
  padding: 10px;
  box-sizing: border-box;
  cursor: pointer;
  box-sizing: border-box;
}

.post-wrp .tag-change li a {
  border: solid 1px #47382f;
  color: #47382f;
  background: #fff;
}

.post-wrp .tag-change .current a {
  background: #47382f;
}

.post-wrp .tag-change .current a span {
  color: #fff;
}

.post-wrp .all-post-list article {
  border-bottom: 1px solid #47382f;
}

.post-wrp .all-post-list article a {
  color: #333;
}

.post-wrp .all-post-list article a .tag-name {
  margin: 3px 5px 0 0;
  border: solid 1px #47382f;
}

.post-wrp .all-post-list article a .tag-name span {
  color: #47382f;
}

.post-wrp .all-post-list article a time span {
  color: #47382f;
}

/*お知らせ個別
=========================================================*/
#contents-u.s-post .sb_style h1 {
  border-bottom: 1px solid #47382f;
}

#contents-u.s-post .sb_style h2 {
  border-left: 5px solid #47382f;
}

#contents-u.s-post .sb_style h3 {
  background: #47382f;
  color: #fff;
}

#contents-u.s-post .sb_style h4:before {
  background: #47382f;
}

#contents-u.s-post .sb_style h5 {
  background: #f2f2f2;
}

#contents-u.s-post .sb_style h6 {
  color: #47382f;
}

#contents-u.s-post .sb_style ul li:before {
  background: #47382f;
}

#contents-u.s-post .sb_style ol li:before {
  color: #fff;
  background: #47382f;
}

#contents-u.s-post .sb_style a {
  color: #47382f;
}

#contents-u.s-post .s-time-tag {
  text-align: right;
  margin-top: 100px;
  padding-top: 10px;
  border-top: 1px solid #47382f;
}

#contents-u.s-post .s-time-tag time {
  color: #47382f;
  font-weight: bold;
}

#contents-u.s-post .tag-name {
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  padding: 8px 20px;
  box-sizing: border-box;
  border: solid 1px #47382f;
  line-height: 1;
  color: #47382f;
}

#contents-u.s-post .tag-name span {
  color: #47382f;
}

/*お問い合わせ
=========================================================*/
.cont-dl .in-dl dt .hissu {
  background: #a54828;
}

.cont-dl .in-dl dd input[type="text"],
.cont-dl .in-dl dd input[type="num"] {
  border: solid #ccc 1px;
  background: #fff;
}

.cont-dl .in-dl dd textarea {
  border: solid #ccc 1px;
  background: #fff;
}

.contact-btn ul li #form-btn {
  border: solid 1px #47382f;
  background-color: #47382f;
}

.contact-btn ul li:hover #form-btn {
  color: #47382f;
  background: #fff;
}

/*pagenation
--------------------------------------------*/
ul.pagenation li a {
  color: #38322d;
}

ul.pagenation li.current {
  color: #fff;
  background: #47382f;
}

/*page-btn
--------------------------------------------*/
.page-btn .left a:before {
  border-right: solid #47382f 5px;
}

.page-btn .right a:before {
  border-left: solid #47382f 5px;
}

/*サイトマップ
=========================================================*/
#site-map ul li {
  border-bottom: 1px solid #47382f;
}

#site-map ul li a {
  color: #333;
}

#site-map ul li a:before {
  border-left: 8px solid #47382f;
}

#site-map ul li a:hover {
  color: #47382f;
}

#site-map ul li a:hover:before {
  left: 10px;
}

/*404
=========================================================*/
.not-found-txt p a {
  color: #47382f;
}

/*リキャプチャ---------------*/
.recap-inwrap {
  width: 300px;
  margin: 0 auto 50px;
}

/*送信完了---------------*/
.send-comp {
  text-align: center;
}

.send-comp p {
  line-height: 1.5em;
}

.send-comp-ttl {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 30px;
}

/*ドロワーメニュー
------------------------------------------------------*/
.drawer-nav {
  text-align: left;
  padding: 15% 6% 10% !important;
  box-sizing: border-box;
  background: #fff;
}

.drawer-nav .drawer-logo {
  width: 20%;
  margin: 0 auto 8%;
}

.drawer-nav .drawer-menu&gt;li {
  border-bottom: 1px solid #c6beaf;
}

.drawer-nav .drawer-menu&gt;li:last-child {
  margin-bottom: 0;
}

.drawer-nav .drawer-menu&gt;li a {
  font-size: 3.8vw;
  display: block;
  padding: 3% 5%;
  box-sizing: border-box;
  font-weight: bold;
  color: #333;
}

.drawer-dropdown-menu {
  padding: 10% 0 5% !important;
  background: none !important;
}

.drawer-dropdown-menu li {
  font-size: 0.9rem;
  margin-bottom: 10px;
  padding-left: 30px;
  box-sizing: border-box;
}

.drawer-dropdown-menu li:last-child {
  margin-bottom: 0;
}

.drawer-dropdown-menu li a {
  position: relative;
}

.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-nav,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  z-index: 100000 !important;
}

.drawer--right.drawer-open .drawer-hamburger {
  top: 1%;
  right: 2.5% !important;
  z-index: 1000000 !important;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
  background-color: #fff !important;
}

.drawer-open .drawer-hamburger-icon {
  background-color: transparent !important;
}

.drawer-toggle.drawer-hamburger {
  background: #000 !important;
  right: 2.5% !important;
  top: 1%;
}

.drawer-hamburger {
  width: 45px;
  box-sizing: border-box;
  padding: 18px .75rem 24px;
}

.drawer-hamburger-icon {
  margin-top: 5px;
}

.drawer-hamburger-icon:before {
  top: -8px;
}

.drawer-hamburger-icon:after {
  top: 8px;
}

.drawer--top.drawer-open .drawer-nav {
  top: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer--left.drawer-open .drawer-nav,
.drawer--left .drawer-hamburger,
.drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
  left: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer-info .drawer-sns-link {
  margin: 8% 0;
}

.drawer-info .drawer-sns-link li {
  margin-right: 5%;
}

.drawer-info .drawer-sns-link li:last-child {
  margin-right: 0;
}

.drawer-info .drawer-works {
  width: 90%;
  margin: 0 auto;
  font-size: 3vw;
}

.drawer-info .drawer-works .in-dl {
  margin-bottom: 2%;
}

.drawer-info .drawer-works .in-dl:last-child {
  margin-bottom: 0;
}

.drawer-info .drawer-works dt {
  width: 20%;
}

.drawer-info .drawer-works dd {
  border-left: 1px solid #333;
  padding-left: 5%;
  box-sizing: border-box;
  width: 80%;
}

.drawer-info .drawer-tel-link-info {
  margin-top: 10%;
  text-align: center;
}

.drawer-info .link-btn {
  width: 90%;
  margin: 5% auto 0;
  border: solid 1px #333;
}

.drawer-info .link-btn span {
  font-size: 3.2vw;
}</pre></body></html>