@charset "UTF-8";
/* 基本色 */
.fc_cyan {
  color: #1b90b2;
}

.fc_blue {
  color: #1b5cb2;
}

.fc_red {
  color: #d82124;
}

.fc_orange {
  color: #ae721a;
}

.fc_yellow {
  color: #d9d821;
}

.fc_lime {
  color: #7e9e18;
}

.fc_green {
  color: #178e16;
}

.fc_gray {
  color: #768184;
}

/* 基本設定： フォントサイズ */
@media (max-width: 599px) {
  :root {
    font-size: 14px;
    line-height: 1.7;
    /* line-height: 24px; */
  }
}

@media (min-width: 600px) {
  :root {
    font-size: 16px;
    line-height: 1.7;
    /* line-height: 27px; */
  }
}

.fz_xxlarge {
  font-size: 1.8rem;
  line-height: 1.7;
}

.fz_xlarge {
  font-size: 1.4rem;
  line-height: 1.7;
}

.fz_large {
  font-size: 1.25rem;
  line-height: 1.7;
}

.fz_small {
  font-size: .95rem;
  line-height: 1.7;
}

.fz_xsmall {
  font-size: .8rem;
  line-height: 1.7;
}

.fz_xxsmall {
  font-size: .7rem;
  line-height: .5rem;
}

/* 基本設定： ページ全体 */
body {
  margin: 0;
  font-family: 'メイリオ','Hiragino Kaku Gothic Pro', sans-serif;
  color: #373d3f;
  background-image: url(../img/bg_base.jpg);
}

/* buttonsの上下スペース明け */
a.button {
  margin: 2px;
}

/* 右寄せ */
.pull_right {
  text-align: right;
}

/* 中央寄せ */
.pull_center {
  text-align: center;
}

/* ボタン　オレンジ白淵 */
.btn_orange {
  display: inline-block;
  padding: 10px 30px;
  border: solid 3px currentColor;
  border-radius: 6px;
  background-color: #d99021;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  margin: 2px;
}

.btn_orange:hover {
  background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
}

/* ボタン　ブルー白淵 */
.btn_blue {
  display: inline-block;
  padding: 10px 30px;
  border: solid 3px currentColor;
  border-radius: 6px;
  background-color: #1b5cb2;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  margin: 2px;
}

.btn_blue:hover {
  background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
}

/* 見出し：リボンタイプ */
.ttl_rib_lime {
  margin: 0 0 2rem;
  position: relative;
  padding: .7rem 1.5rem;
  font-size: 1.5rem;
  background-color: #b1d14b;
  color: #5e7712;
}

.ttl_rib_lime::before, .ttl_rib_lime::after {
  content: '';
  position: absolute;
  top: 100%;
  border-style: solid;
  border-color: transparent;
}

.ttl_rib_lime::before {
  left: 0;
  border-width: 0 15px 15px 0;
  border-right-color: #7e9e18;
}

.ttl_rib_lime::after {
  right: 0;
  border-style: solid;
  border-width: 15px 15px 0 0;
  border-top-color: #7e9e18;
}

.ttl_rib_orange {
  margin: 0 0 2rem;
  position: relative;
  padding: .7rem 1.5rem;
  font-size: 1.5rem;
  background-color: #e1a54d;
  color: #825614;
}

.ttl_rib_orange::before, .ttl_rib_orange::after {
  content: '';
  position: absolute;
  top: 100%;
  border-style: solid;
  border-color: transparent;
}

.ttl_rib_orange::before {
  left: 0;
  border-width: 0 15px 15px 0;
  border-right-color: #ae721a;
}

.ttl_rib_orange::after {
  right: 0;
  border-style: solid;
  border-width: 15px 15px 0 0;
  border-top-color: #ae721a;
}

/* 見出し：アンダーラインタイプ */
.ttl_bor_lime {
  margin: 0 0 1rem;
  position: relative;
  padding: .3rem 0 .6rem .7rem;
  font-size: 1.2rem;
  border-left: 6px solid #9dc61e;
}

.ttl_bor_lime::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  width: 100%;
  height: 0;
  border-bottom: 1px solid #aaa;
}

.ttl_bor_orange {
  margin: 0 0 1rem;
  position: relative;
  padding: .3rem 0 .6rem 1rem;
  font-size: 1.2rem;
  border-left: 6px solid #d99021;
}

.ttl_bor_orange::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  width: 100%;
  height: 0;
  border-bottom: 1px solid #aaa;
}

/* Photoギャラリー Mobile2列PC4列 */
.gallery {
  max-width: 100%;
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.gallery .photo {
  min-height: 150px;
  background-position: center;
  background-size: cover;
}

.gallery a {
  flex: 0 1 41%;
  display: block;
  padding: 6px;
  border: solid 1px #bbb;
  background: #fff;
  margin: 4px;
}

.gallery a:hover {
  opacity: 0.7;
}

@media (min-width: 768px) {
  .gallery a {
    flex: 0 1 20%;
  }
}

/* ヘッダー　全体 */
header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: rgba(115, 152, 0, 0.9);
  color: #fff;
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.3);
  border-bottom: solid 1px #e4e6e6;
}

header .fa {
  color: #e8e700;
}

.nohero header {
  position: static;
}

/* ヘッダーA: ロゴ部 */
.headA {
  padding-left: 20px;
  padding-right: 20px;
}

.headA a {
  border: 0;
}

.headA img {
  margin: 10px 0 5px;
  height: 60px;
}

/* ヘッダーB： ナビゲーションメニュー */
.headB ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.headB a {
  display: block;
  padding: 15px;
  color: inherit;
  font-size: 12px;
  text-decoration: none;
  border-top: 1px rgba(255, 255, 255, 0.4) dashed;
}

.headB a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  header .container {
    -js-display: flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  .headB ul {
    -js-display: flex;
    display: flex;
  }
  .headB a {
    padding: 11px;
    border-top: none;
  }
}

/* ヘッダーC： トグルボタン */
@media (max-width: 767px) {
  /* 小さい画面用の設定 */
  header .container-small {
    -js-display: flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .headC {
    margin-right: 10px;
    padding: 0;
    border: none;
    outline: none;
    background: none;
    font-size: 28px;
    cursor: pointer;
  }
  .headC:hover {
    opacity: 0.7;
  }
  .headB {
    display: none;
    color: #fff;
  }
}

@media (min-width: 768px) {
  /* 大きい画面用の設定 */
  .headC {
    display: none;
  }
  .headB {
    display: block !important;
  }
}

/* トップA： ヒーローイメージ */
.conA {
  height: 100vh;
  min-height: 450px;
  max-height: 850px;
  background-image: url(../img/img_top_mainimg2.jpg);
  background-position: center;
  background-size: cover;
}

.conA h1 {
  display: none;
}

.conA p {
  display: none;
}

/* トップB： メインメニュー */
.conB .container {
  padding-top: 60px;
  padding-bottom: 20px;
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.conB .text {
  padding-bottom: 40px;
  text-align: center;
  flex: 0 1 42%;
}

.conB h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
}

.conB p {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.6;
}

.conB a {
  color: #7e9e18;
  text-decoration: none;
}

.conB a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.conB .icon {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 40px;
  width: 2em;
  line-height: 2em;
  border-radius: 50%;
  text-align: center;
  background-color: #b1d14b;
  color: #fff;
  border: solid #fff 2px;
  box-shadow: 0px 8px 5px 2px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .conB .container {
    -js-display: flex;
    display: flex;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  .conB .text {
    flex: 0 1 21%;
  }
}

/* トップC： こだわり */
.conC {
  background-color: #7e9e18;
  color: #fff;
}

.conC .text {
  padding: 20px;
}

.conC h2 {
  margin: 0 0 1rem;
  border-bottom: solid #fff 1px;
}

.conC h2 img {
  width: 220px;
}

.conC p {
  margin: 0 0 1rem;
  opacity: 0.9;
}

.conC .photo {
  min-height: 300px;
  background-image: url(../img/pic_top_kodawari.jpg);
  background-position: center;
  background-size: cover;
}

@media (min-width: 768px) {
  .conC .container {
    -js-display: flex;
    display: flex;
    align-items: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .conC .photo {
    max-height: 350px;
    flex: 0 0 40%;
  }
  .conC .text {
    flex: 1;
    padding-right: 40px;
  }
}

/* フッター */
footer {
  color: #fff;
  background: linear-gradient(#181a1a, #2f3435);
}

footer .container {
  padding: 40px 20px;
  text-align: center;
}

@media (min-width: 768px) {
  footer .container {
    -js-display: flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  .footL {
    flex: 0 0 20%;
  }
  .footA {
    flex: 0 0 35%;
  }
  .footB {
    flex: 0 0 35%;
  }
  .footC {
    flex: 0 0 100%;
  }
}

/* フッターL： ロゴ */
.footL {
  margin-bottom: 10px;
}

.footL img {
  width: 200px;
}

/* フッターA： 店名＆住所 */
.footA {
  margin-bottom: 30px;
}

.footA h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
}

.footA p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
}

/* フッターB： フッターメニュー */
.footB div {
  margin-bottom: 20px;
}

.footB ul {
  margin: 0;
  padding: 0;
  list-style: none;
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footB a {
  display: block;
  padding: 4px 10px;
  color: inherit;
  font-size: 12px;
  text-decoration: none;
}

.footB a:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

/* フッターC： コピーライト */
.footC {
  font-size: 12px;
  text-align: center;
  border-top: solid 1px rgba(255, 255, 255, 0.3);
  padding-top: 10px;
  opacity: 0.5;
}

/* パンくずリスト */
.bread {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 20px 20px;
}

.bread ol {
  -js-display: flex;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bread a {
  display: block;
  padding: 5px;
  color: inherit;
  font-size: 0.875rem;
  text-decoration: none;
}

.bread a::after {
  margin-left: 10px;
  content: '\f054';
  font-family: 'FontAwesome';
  opacity: 0.3;
}

.bread a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

/* コンテンツページ: レイアウト＆基本文字写真 */
.contents {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px 30px;
}

.contents h1 {
  margin-top: 0;
  padding-left: 0.5rem;
  border-left: solid 0.75rem #9dc61e;
  font-size: 1.8rem;
}

.contents img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .contents {
    -js-display: flex;
    display: flex;
    justify-content: space-between;
  }
  .contents .main {
    flex: 1;
    padding-right: 40px;
  }
  .contents .sub {
    flex: 0 0 30%;
  }
}

/* サイドバー */
.sub h2 {
  font-size: 18px;
  color: #7e9e18;
  border-bottom: 1px dashed #5e7712;
}

.sub ul {
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: rgba(177, 209, 75, 0.7);
}

.sub ul a {
  display: block;
  padding: 15px;
  color: #5e7712;
  font-size: 12px;
  text-decoration: none;
  border-top: 1px rgba(0, 0, 0, 0.2) solid;
}

.sub ul a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

/* サイドバナー */
.bnr {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top:dashed 1px #999;
}
.bnr a {
  display: inline-block;
  margin-bottom: .5rem;
}
.bnr a:hover {
  opacity: 0.7;
}





/* 店舗紹介ページ */
.outline table {
  margin: 0 auto 1.5rem;
  font-size: .95rem;
  border-collapse: collapse;
}

.outline table th, .outline table td {
  border-top: 1px solid #aaa;
  padding: .5rem .25rem;
}

.outline table th {
  text-align: right;
  vertical-align: top;
  white-space: nowrap;
}

.outline table a {
  font-size: .8rem;
  text-decoration: none;
}

.outline table a:hover {
  text-decoration: underline;
}

/* メニューページ：ランチ */
.lunch .photo_wrap {
  text-align: center;
  margin-bottom: 2rem;
}

.lunch .photo {
  min-height: 250px;
  background-position: center;
  background-size: cover;
}

.lunch a {
  display: block;
  padding: 6px;
  border: solid 1px #bbb;
  background: #fff;
}

.lunch a:hover {
  opacity: 0.7;
}

.lunch .text {
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .lunch {
    -js-display: flex;
    display: flex;
  }
  .lunch .photo_wrap {
    flex: 0 0 50%;
  }
  .lunch .text {
    flex: 1;
  }
}

.lunch table {
  margin: 0 auto 0;
  font-size: .95rem;
  border-collapse: collapse;
}

.lunch table th, .lunch table td {
  border-top: 1px solid #aaa;
  padding: .5rem .25rem;
}

.lunch table th {
  text-align: right;
  vertical-align: top;
  white-space: nowrap;
}

/* メニューページ：ディナー */
.dinner .category .text {
  margin-bottom: .5rem;
}

.dinner .category .photo_wrap {
  text-align: center;
  margin-bottom: .5rem;
}

.dinner .category .photo {
  min-height: 200px;
  background-position: center;
  background-size: cover;
  background-color: red;
}

.dinner .category a {
  display: block;
  padding: 6px;
  border: solid 1px #bbb;
  background: #fff;
}

.dinner .category a:hover {
  opacity: 0.7;
}

@media (min-width: 768px) {
  .dinner {
    -js-display: flex;
    display: flex;
    flex-wrap: wrap;
  }
  .dinner .category {
    flex: 0 0 45%;
    margin: 0 .5rem;
  }
}

/* メニューページ：おせち */
.osechi .text {
  margin-bottom: 1rem;
}

.osechi .photo_wrap {
  text-align: center;
  margin-bottom: .5rem;
}

.osechi .photo {
  min-height: 200px;
  background-position: center;
  background-size: cover;
}

.osechi a {
  display: block;
  padding: 6px;
  border: solid 1px #bbb;
  background: #fff;
}

.osechi a:hover {
  opacity: 0.7;
}

@media (min-width: 768px) {
  .osechi {
    -js-display: flex;
    display: flex;
  }
  .osechi .photo_wrap {
    flex: 0 0 30%;
    margin-left: .5rem;
  }
  .osechi .text {
    flex: 1;
  }
}

/* オンラインショップ */
.misomayo {
  margin-bottom: 2rem;
}

.misomayo .photo_wrap {
  display: block;
  padding: 6px;
  border: solid 1px #bbb;
  background: #fff;
  margin-bottom: 2rem;
}

.misomayo .photo_wrap:hover {
  opacity: 0.7;
}

.misomayo .photo {
  min-height: 250px;
  background-image: url(../shop/img/pic_shop_03.jpg);
  background-position: center;
  background-size: cover;
}

@media (min-width: 768px) {
  .misomayo {
    -js-display: flex;
    display: flex;
  }
  .misomayo .photo_wrap {
    flex: 0 0 45%;
  }
  .misomayo .text {
    flex: 1;
    padding-left: 20px;
  }
}

.point {
  border: solid 4px #d99021;
  padding: 15px;
  margin-bottom: 2rem;
}

/* youtubeレスポンシブ対応 */
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}


/* 送信フォーム：共通 */
.form table {
  margin: 0 auto 0;
  font-size: .95rem;
  border-collapse: collapse;
}

.form table th, .form table td {
  border-top: 1px solid #aaa;
  padding: .5rem .25rem;
  vertical-align: top;
}

.form table th {
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}

.form em {
  color: #d82124;
}

.form input[type="text"] {
  width: 10rem;
  padding: 4px;
}

.form select {
  font-size: 1rem;
}

.form textarea {
  width: 100%;
}

.form .hissu {
  font-size: .5rem;
  background-color: red;
  color: white;
  padding: 4px;
}

.form .input_chara {
  font-size: .8rem;
}

.form .form_btn {
  text-align: center;
  border-top: solid 3px #999;
  padding-top: 1rem;
  margin-bottom: 3rem;
}

.form .form_btn .inline {
  display: inline;
}

@media (min-width: 768px) {
  .form .container {
    -js-display: flex;
    display: flex;
  }
  .form .container .item {
    flex: 1;
  }
}

/* ご利用ガイド */
table.daibiki {
  margin-bottom: 2rem;
  font-size: .9rem;
  border-collapse: collapse;
}

table.daibiki th, table.daibiki td {
  border: 1px solid #7e9e18;
  padding: .25rem;
}

table.daibiki th {
  background-color: #ebf4d2;
  vertical-align: top;
  white-space: nowrap;
}

table.daibiki td {
  background-color: white;
  text-align: right;
}

table.soryo1 {
  font-size: .9rem;
  border-collapse: collapse;
}

table.soryo1 th, table.soryo1 td {
  border: 1px solid #7e9e18;
  padding: .25rem;
}

table.soryo1 th {
  background-color: #ebf4d2;
  vertical-align: top;
  white-space: nowrap;
}

table.soryo1 td {
  background-color: white;
  text-align: right;
}

.table_scroll {
  overflow: auto;
}

table.soryo2 {
  margin-bottom: 2rem;
  font-size: .9rem;
  border-collapse: collapse;
}

table.soryo2 th, table.soryo2 td {
  border: 1px solid #7e9e18;
  padding: .25rem;
}

table.soryo2 th {
  background-color: #ebf4d2;
  vertical-align: top;
  white-space: nowrap;
}

table.soryo2 td {
  background-color: white;
  text-align: left;
}

table.tax {
  margin-bottom: 2rem;
  font-size: .9rem;
  border-collapse: collapse;
}

table.tax th, table.tax td {
  border: 1px solid #7e9e18;
  padding: .25rem;
}

table.tax th {
  background-color: #ebf4d2;
  vertical-align: top;
  white-space: nowrap;
}

table.tax td {
  background-color: white;
  text-align: left;
}

table.tokutei {
  margin-bottom: 2rem;
  font-size: .9rem;
  border-collapse: collapse;
}

table.tokutei th, table.tokutei td {
  border: 1px solid #7e9e18;
  padding: .25rem;
}

table.tokutei th {
  background-color: #ebf4d2;
  vertical-align: top;
  white-space: nowrap;
}

table.tokutei td {
  background-color: white;
  text-align: left;
}

.guide dt {
  font-weight: bold;
}

.guide dd {
  font-size: .8rem;
  padding-left: -1rem;
}

/* アクセスページ */
.location {
  margin-bottom: 2rem;
  border: 5px solid #ccc;
}

.location iframe {
  width: 100%;
  height: 400px;
  vertical-align: bottom;
}

.access dl {
  margin-bottom: 2rem;
}

.access dt {
  font-weight: bold;
  color: #d99021;
  font-size: 1.2rem;
}
