@charset "utf-8";
/* ===============================================================

  共通

=============================================================== */
body {
  margin: 0;
  padding: 0;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", serif;
  font-size: 14px;
  color: #2580bc;
  text-align: center; /*ページ全体を中央揃えにする*/
  line-height: 1.6;
}
@media (min-width: 768px) {
  body {
    font-size: 16px;
  }
}
h2, h3 {
  font-family: "Hannari", serif;
  margin-bottom: 3rem;
  font-size: 2rem;
  color: #4876c2 !important;
}
ruby rt {
  margin-left: -.3125em;
  font-size: .5rem;
}
@media (min-width: 768px) {
  ruby rt {
    font-size: .625rem;
  }
}
.imgFluid {
  max-width: 100%;
  height: auto;
}
.hannariMincho {
  font-family: "Hannari", serif;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .hannariMincho {
    font-size: 1.5rem;
  }
}
/*
  ボタン
================================================ */
a.btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 90%;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
}
a.link {
  color: inherit;
  text-decoration: underline;
  transition: .3s;
}
a.link:hover {
  background: -webkit-linear-gradient(left, #555b6a, #c5c2b4 40%, #c5c2b4 60%, #555b6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/*
  改行
================================================ */
/* スマホのみ改行させる */
@media (max-width: 767px) {
  .brSp::before {
    content: "\A";
    white-space: pre;
  }
}
/* パソコンのみ改行させる */
@media (min-width: 768px) {
  .brPc::before {
    content: "\A";
    white-space: pre;
  }
}
/*
  非表示
================================================ */
/* スマホのみ非表示 */
@media (max-width: 767px) {
  .noneSp {
    display: none;
  }
}
/* パソコンのみ非表示 */
@media (min-width: 768px) {
  .nonePc {
    display: none;
  }
}
/*
  横並びコンテンツの上下中央寄せ
================================================ */
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}
.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}
/*
  注意書き
================================================ */
.caution {
  font-size: .85rem;
}
/*
  ローディング画面
================================================ */
/* Loading背景画面設定　*/
#loading {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background: #284080;
  text-align: center;
  color: #fff;
}
/* Loading画像中央配置　*/
#loading_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/* Loading ロゴの大きさ設定　*/
#loading_logo img {
  width: 252px;
}
@media (max-width: 768px) {
#loading_logo img {
    width: 90%;
  }
}
@media (max-width: 575px) {
#loading_logo img {
    width: 80%;
  }
}
/* フェードインするロゴの動き */
.fadeIn {
  animation-name: fadeUpAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*
  アニメーション
================================================ */
/* ぼかしアニメーション */
.blur-fadein {
  text-align: center;
  color: transparent;
}
.blur-fadein.active {
  animation: blurFadeIn 2s ease-in forwards;
}
@keyframes blurFadeIn {
  0% {
    opacity: 0;
    text-shadow: #000 1px 0px 20px;
  }
  50% {
    opacity: 0.5;
    text-shadow: #000 1px 0px 10px;
  }
  100% {
    opacity: 1;
    text-shadow: #000 0px 0px 0px;
  }
}
/* フェードインアニメーション */
.fadeinR {
  -webkit-transition: all .8s linear;
  transition: all .8s linear;
  -webkit-transform: translateX(500px);
  transform: translateX(500px);
  opacity: 0;
}
.fadeinL {
  -webkit-transition: all .8s linear;
  transition: all .8s linear;
  -webkit-transform: translateX(-500px);
  transform: translateX(-500px);
  opacity: 0;
}
.fadeinR.active, .fadeinL.active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
/* ===============================================================

  メインイメージ 

=============================================================== */
.mainImg {
  position: relative;
  width: 100%;
  min-height: 70vh;
  background: url("../img/mainImg.jpg") center / cover;
}
@media (min-width: 768px) {
  .mainImg {
    position: relative;
    width: 100%;
    min-height: 100vh;
  }
}
.logo {
  position: absolute;
  top: 20%;
  left: 16%;
  -webkit-transform: translate(-20%, -16%);
  transform: translate(-20%, -16%);
  width: 100%;
  margin: 0;
  text-align: center;
  line-height: 1;
  font-size: 4vw;
  font-family: "Montserrat", sans-serif;
  text-shadow: 5px 5px 0 #ffffff;
  color: #ff5c5c;
}
.logo img {
  position: absolute;
  top: 20%;
  left: 15%;
  -webkit-transform: translate(-15%, -20%);
  transform: translate(-15%, -20%);
  margin: 0;
  text-align: center;
  line-height: 1;
  font-size: 4vw;
  font-family: "Montserrat", sans-serif;
  text-shadow: 5px 5px 0 #ffffff;
  color: #ff5c5c;
}
@media (max-width: 991px) {
  .logo img {
    width: 40%;
  }
}
.shizuku {
  position: relative;
  bottom: 0;
  left: 0;
}
.shizuku img {
  position: absolute;
  top: 50%;
  left: 15%;
  -webkit-transform: translate(-15%, -50%);
  transform: translate(-15%, -50%);
}
@media (max-width: 767px) {
  .shizuku img {
    width: 20%;
  }
}
/* ===============================================================

  おいしい“米”どころは“酒”どころ

=============================================================== */
#prologue {
  padding-top: 10rem;
  padding-bottom: 10rem;
  font-size: 1.125rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  #prologue {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media (min-width: 768px) {
  #prologue {
    font-size: 1.4375rem;
  }
}
.prologueTxt {
  display: inline-block;
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 767px) {
  .prologueTxt {
    margin-top: 3rem;
  }
}
.prologueTxt p {
  margin-bottom: 2rem;
}
/* ===============================================================

  淵龍とまちづくり 

=============================================================== */
#history {
  padding-top: 10rem;
  padding-bottom: 10rem;
  font-size: 1.125rem;
  line-height: 1.6;
  background: -webkit-linear-gradient(160deg, #ebe8d4 0%, #ffffff 47%, #ebe8d4 100%);
  background: linear-gradient(-70deg, #ebe8d4 0%, #ffffff 47%, #ebe8d4 100%);
}
@media (max-width: 575px) {
  #history {
    font-size: 1rem;
  }
}
@media (min-width: 576px) {
  #history {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media (min-width: 768px) {
  #history {
    font-size: 1.4375rem;
  }
}
.thought {
  margin-bottom: 5rem;
  color: #555b6a;
}
.thought img {
  margin-top: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .thought img {
    margin-top: 2rem;
    margin-bottom: 3rem;
  }
}
@media (min-width: 768px) {
  .thoughtDecoL, .thoughtDecoR {
    display: flex;
    align-items: center;
  }
  .thoughtDecoL::before, .thoughtDecoR::after {
    border-top: 1px solid #b4a990;
    content: "";
    flex-grow: 1; /* 横幅一杯にラインを表示 */
  }
  .thoughtDecoL::after, .thoughtDecoR::before {
    border-top: 1px solid transparent;
    content: "";
    flex-grow: 1; /* 横幅一杯にラインを表示 */
  }
  .thoughtDecoL::before {
    margin-right: 1rem;
  }
  .thoughtDecoR::after {
    margin-left: 1rem;
  }
}
.thought .videoBox {
  width: 100%;
  margin: 0 auto;
}
ul.historyYear {
  list-style: none;
  padding-left: 0;
}
ul.historyYear li {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 768px) {
  ul.historyYear li {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
ul.historyYear li:last-of-type {
  margin-bottom: 5rem;
}
ul.historyYear li:nth-of-type(odd) .historyTxt {
  text-align: left;
}
ul.historyYear li:nth-of-type(even) .historyTxt {
  text-align: right;
}
ul.historyYear li h3 {
  font-family: "Georgia", "Times New Roman", "Times", serif;
  font-size: 3rem;
  color: #b4a990 !important;
  display: flex;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  ul.historyYear li h3 {
    font-size: 3.75rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
}
ul.historyYear li:nth-of-type(odd) h3::after {
  text-align: left;
  border-top: 1px solid;
  content: "";
  flex-grow: 1; /* 横幅一杯にラインを表示 */
  margin-left: 2rem;
}
ul.historyYear li:nth-of-type(even) h3::before {
  text-align: right;
  border-top: 1px solid;
  content: "";
  flex-grow: 1; /* 横幅一杯にラインを表示 */
  margin-right: 2rem;
}
.historyTxt {
  position: relative;
}
.historyTxt p {
  padding: .5rem;
}
@media (min-width: 992px) {
  ul.historyYear li:nth-of-type(odd) .historyImg {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
  }
  ul.historyYear li:nth-of-type(even) .historyImg {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
  }
}
@media (min-width: 1200px) {
  .historyImg {
    width: 100% !important;
    max-width: 600px;
  }
}
.historyImg img {
  width: 100%;
}
.historyImg2nd {
  margin-top: 2rem;
}
.yoroshiku {
  color: #555b6a;
}
/*
  Instagram
================================================ */
#instagram {
  max-width: 830px;
  margin: 0 auto;
  padding-top: 5rem;
}
@media (max-width: 767px) {
  #instagram {
    padding-top: 5rem;
  }
}
.instaBox {
  margin: 0;
  position: relative;
  padding: 2rem 1.5rem 0;
  border-top: solid 1px #b1a68d;
  border-bottom: solid 1px #b1a68d;
}
.instaBox:before, .instaBox:after {
  content: "";
  position: absolute;
  top: -10px;
  width: 1px;
  height: -webkit-calc(100% + 20px);
  height: calc(100% + 20px);
  background-color: #b1a68d;
}
.instaBox:before {
  left: 10px;
}
.instaBox:after {
  right: 10px;
}
.instaBox iframe {
  padding: 0 !important;
}
/* ===============================================================

  選べるふたつの贅沢  

=============================================================== */
#products {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media (max-width: 767px) {
  #products {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media (min-width: 768px) {
  .labelType {
    width: 100%;
    padding-top: 4rem;
    padding-bottom: 3rem;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 3rem;
    background: -webkit-linear-gradient(to right, #effff3 0%, #ffffff 50%, #ebe8d4 100%);
    background: linear-gradient(to right, #effff3 0%, #ffffff 50%, #ebe8d4 100%);
  }
  .labelTypeRow {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .labelTypeCol-12 {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
  }
  .labelTypeCol-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .labelType > .labelTypeRow > .labelTypeCol-12 > .container {
    width: 100%;
    max-width: 767px;
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
  }
  .labelType > .labelTypeRow > .labelTypeCol-12 > .container > .row {
    margin-right: 0;
    margin-left: 0;
  }
}
.labelType img {
  margin-bottom: 1rem;
}
.aoLabel {
  color: #3f5aa4;
}
.oriLabel {
  color: #555b6a;
}
@media (max-width: 767px) {
  .aoLabel {
    margin-bottom: 3rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    background: -webkit-linear-gradient(to right, #effff3 0%, #ffffff 100%);
    background: linear-gradient(to right, #effff3 0%, #ffffff 100%);
  }
  .oriLabel {
    margin-bottom: 3rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    background: -webkit-linear-gradient(to right, #ffffff 0%, #ebe8d4 100%);
    background: linear-gradient(to right, #ffffff 0%, #ebe8d4 100%);
  }
}
.labelType table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  box-sizing: border-box;
  margin-top: 2rem;
}
.labelType table th, .labelType table td {
  padding: 15px;
  border: none;
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .labelType table th, .labelType table td {
    font-size: 1.125rem;
  }
}
@media (min-width: 1200px) {
  .labelType table th, .labelType table td {
    font-size: 1.4375rem;
  }
}
.labelType table td span {
  font-size: .875rem;
}
@media (max-width: 991px) {
  .labelType table td span {
    display: block;
  }
}
.oriLabel table td {
  width: 50%;
}
/*
@media (max-width: 767px) {
  table th, table td {
    width: 100%;
    display: block;
  }
  table th, table td {
    border: none;
    border-width: 0 0 1px;
  }
  table tr:last-of-type td {
    border: none;
  }
}
table tr td dl dt {
  margin-bottom: .5em;
  padding: .5em;
  background: #d8eae6;
}
*/
/* ===============================================================

  販売店

=============================================================== */
#shop {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background: #eef0f3;
}
@media (max-width: 767px) {
  #shop {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #shop .shopList:not(:nth-last-of-type(-n+2)) {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  #shop .shopList:not(:nth-last-of-type(-n+3)) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  #shop .shopList:not(:last-of-type) {
    margin-bottom: 2rem;
  }
}
#shop dl {
  height: 100%;
  padding: 3rem 15px 2rem;
  border: 1px solid #2580be;
  border-radius: 28px;
  background: white;
}
#shop dl dt {
  display: inline-block;
  position: relative;
  margin-bottom: 4rem;
  font-size: 1.5rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  #shop dl dt {
    font-size: 1.625rem;
  }
}
#shop dl dt::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2rem; /*下線の上下位置調整*/
  display: inline-block;
  width: 80px; /*下線の幅*/
  height: 2px; /*下線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translate(-50%); /*位置調整*/
  background: -webkit-linear-gradient(to left, #effff3, #c5c2b4 50%, #effff3);
  background: linear-gradient(to left, #effff3, #c5c2b4 50%, #effff3);
}
#shop dl dd:not(:last-of-type) {
  margin-bottom: 1rem;
}
#shop dl dd:first-of-type {
  font-size: 1.2857rem;
}
@media (min-width: 768px) {
  #shop dl dd:first-of-type {
    font-size: 1.4375rem;
  }
}
#shop dl dd:nth-of-type(n+2) {
  font-size: 1rem;
}
#shop dl dd ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#shop dl dd ul li {
  font-size: 1rem;
}
#shop dl dd ul li em {
  font-size: 1.5rem;
  font-weight: bold;
  font-style: normal;
}
@media (min-width: 768px) {
  #shop dl dd ul li em {
    font-size: 1.625rem;
  }
}
#shop dl dd ul li span {
  font-size: 1.2857rem;
}
@media (min-width: 768px) {
  #shop dl dd ul li span {
    font-size: 1.4375rem;
  }
}
#shop dl dd ul li:not(:last-of-type) {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ebedf0;
}
a.btn-gradient {
  padding: 1rem;
  font-size: 1rem;
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(40%, #4876c5), to(#4876c5));
  background-image: -webkit-linear-gradient(left, #4876c5 0%, #368ac1 16%, #42a1c9 44%, #5798c0 70%, #4876c5 100%);
  background-image: linear-gradient(90deg, #4876c5 0%, #368ac1 16%, #42a1c9 44%, #5798c0 70%, #4876c5 100%);
}
a.btn-gradient:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background: #2580be;
}
a.btn-gradient span {
  position: relative;
  z-index: 1;
}
a.btn-gradient:hover {
  color: #fff;
}
a.btn-gradient:hover:after {
  opacity: 0;
}
/* ===============================================================

  お問い合わせ

=============================================================== */
#contact {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background: white;
}
@media (max-width: 992px) {
  #contact {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media (max-width: 992px) {
  #contact .contact_align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}
.contactAddress {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .contactAddress {
    font-size: 1.4375rem;
  }
}
.contactAddress .col-lg-6 {
  padding: 5rem;
}
.contactAddress .col-lg-6:first-of-type {
  width: 100%;
  border-bottom: 1px solid transparent;
  border-right: 1px solid #ffffff;
  background: -webkit-linear-gradient(to left, #effff3, #c5c2b4 50%, #effff3);
  background: linear-gradient(to left, #effff3, #c5c2b4 50%, #effff3);
}
@media (min-width: 992px) {
  .contactAddress .col-lg-6:first-of-type {
    width: 100%;
    border-bottom: 1px solid #ffffff;
    border-right: 1px solid transparent;
    background: -webkit-linear-gradient(to top, #effff3, #c5c2b4 50%, #effff3);
    background: linear-gradient(to top, #effff3, #c5c2b4 50%, #effff3);
  }
}
.contactAddress .col-lg-6:first-of-type:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: white;
  z-index: 0;
}
.contactAddress p {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  line-height: 1.3;
}
.contactAddress span {
  font-size: 1rem;
}
.contactName {
  width: 100%;
  height: 100%;
}
@media (max-width: 575px) {
  .contactName {
    margin-top: 3rem;
  }
}
.contactName img {
  max-height: 130px;
}
@media (max-width: 575px) {
  .contactName img {
    display: block;
    margin: 1rem auto 1rem;
  }
}
@media (min-width: 576px) {
  .contactName img {
    margin-left: 1.5rem;
  }
}
/*
  プライバシーポリシー
================================================ */
.privacyPolicy {
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .privacyPolicy {
    margin-top: 3rem;
  }
}
.privacyPolicyTxt {
  text-align: left;
  font-size: .95rem;
}
/* ===============アコーディオン================= */
.privacyPolicyBox {
  width: auto;
  font-size: 0px; /* ラベルと開く部分を分離する時は数値を入れる */
  margin: 0 0; /* ボックス全体の位置調整 */
  text-align: center;
}
.privacyPolicyBox label {
  position: relative;
  display: block;
  width: 16rem;
  max-width: 100%;
  margin: 0 auto;
  padding: .5rem 1.5rem;
  cursor: pointer;
  border: 1px solid #2580be;
  border-radius: 100vh;
  font-size: 1rem;
  color: #2580be;
  background: #ffffff;
  transition: .6s;
}
.privacyPolicyBox label:hover {
  color: #ffffff;
  background: #2580be;
}
.privacyPolicyBox input {
  display: none;
}
.privacyPolicyBox input:checked ~ label::after {
  position: absolute;
  top: 50%;
  right: 15px;
  content: "×"; /* ラベルをクリックした後のアイコン */
  margin-top: -12px;
  color: #ffffff;
}
.privacyPolicyBox div {
  overflow: hidden;
  height: 0px;
  opacity: 0;
  transition: 0.5s; /* 開閉スピードの設定 */
}
.privacyPolicyBox input:checked ~ div {
  height: auto;
  padding: 2rem; /* 開いた部分の枠内の余白 */
  border-radius: 0px;
  background: #ffffff; /* 開いた部分の背景色 */
  opacity: 1;
}
.privacyPolicyBox input:checked ~ label {
  color: #ffffff;
  background: #2580be; /* クリック後のラベルの背景色 */
}
/* ===============================================================

  フッター  

=============================================================== */
footer {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #e5e9ee;
}
dl.footLogo {
  margin-bottom: 3rem;
  text-align: left;
}
dl.footLogo dt {
  margin-bottom: 1.5rem;
}
small {
  font-size: .75rem;
}
.hamon {
  position: relative;
  top: -2rem;
  right: 0;
}
.hamon img {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media (max-width: 991px) {
  .hamon img {
    width: 30%;
  }
}