@charset "UTF-8";
/* 共通設定CSS */
/* =============================================
 ###　見出しレベル1 
============================================= */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  ##　見出しレベル2
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~  */
/* --------------------------------------------
   #　見出しレベル3
-------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");
/* =============================================
 ###　基本構成
============================================= */
html {
  font-size: 62.5%;
}

body {
  color: #525252;
  font-family: "Shippori Mincho", serif;
  font-size: 1.4rem;
  line-height: 2em;
  background-color: transparent;
  width: 100%;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.2rem;
  }
}

img {
  width: 100%;
  height: auto;
}

a.link {
  text-decoration: underline;
}
a .image {
  transition: 1s;
  position: relative;
}
a .image:before {
  transition: 1s;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #525665;
  mix-blend-mode: color;
  opacity: 1;
  z-index: 1;
}
a:hover .image:before {
  background-color: transparent;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-up.scrollin {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================================
 ###　各メディア限定コンテンツメディアクエリ
=================================================*/
@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}

.tab-only {
  display: none !important;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .tab-only {
    display: block !important;
  }
}

@media screen and (max-width: 1199px) {
  .desktop-only {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .tab-desktop {
    display: none !important;
  }
}

.hide-content {
  display: none !important;
}

/* ==============================================
 ###　共通Class
=================================================*/
.en {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  display: block;
  font-family: "Shippori Mincho", serif;
}
@media screen and (min-width: 768px) {
  .en {
    font-size: 1.3rem;
    line-height: 1.5em;
  }
}

.jp {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  color: #525252;
  display: block;
}
.main_nav .jp {
  font-family: "Shippori Mincho", serif;
}
@media screen and (min-width: 768px) {
  .jp {
    font-size: 1.1rem;
    line-height: 1.5em;
  }
  .main_nav .jp {
    font-size: 1rem;
  }
}

.sec_ttl {
  font-size: 2.4rem;
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: 0.2em;
}
.sec_ttl .en {
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .sec_ttl {
    margin-bottom: 25px;
  }
}

.sec_copy {
  text-align: center;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .sec_copy {
    font-size: 1.2rem;
  }
}

.btn__wrap {
  display: grid;
  gap: 20px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .btn__wrap.column2 {
    grid-template-columns: 330px 330px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}

.nav__category ul li button,
.nav__category ul li a,
.linklist_1 li button,
.linklist_1 li a,
.btn_01 button,
.btn_01 a {
  border-bottom: 1px solid #000;
  text-align: center;
  position: relative;
  display: block;
  font-size: 1.3rem;
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .nav__category ul li button,
  .nav__category ul li a,
  .linklist_1 li button,
  .linklist_1 li a,
  .btn_01 button,
  .btn_01 a {
    font-size: 1.5rem;
  }
}
.nav__category ul li button::after,
.nav__category ul li a::after,
.linklist_1 li button::after,
.linklist_1 li a::after,
.btn_01 button::after,
.btn_01 a::after {
  content: "";
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 5px;
  translate: 0 -50%;
  rotate: 45deg;
}
.nav__category ul li button:hover,
.nav__category ul li a:hover,
.linklist_1 li button:hover,
.linklist_1 li a:hover,
.btn_01 button:hover,
.btn_01 a:hover {
  opacity: 0.7;
}

.btn_02 button,
.btn_02 a {
  background-color: #525252;
  color: #fff;
  text-align: center;
  position: relative;
  width: 300px;
  display: block;
  font-size: 1.3rem;
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .btn_02 button,
  .btn_02 a {
    font-size: 1.4rem;
    padding: 20px 0;
    width: 330px;
  }
}
.btn_02 button::after,
.btn_02 a::after {
  content: "";
  border-top: 1px solid #fff;
  width: 24px;
  height: 0;
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
}
.btn_02 button:hover,
.btn_02 a:hover {
  opacity: 0.7;
}

.btn_03 {
  display: flex;
  justify-content: center;
}
.btn_03 button,
.btn_03 a {
  background-color: #AD8A23;
  color: #fff;
  text-align: center;
  position: relative;
  width: 300px;
  display: block;
  font-size: 1.3rem;
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .btn_03 button,
  .btn_03 a {
    font-size: 1.4rem;
    padding: 20px 0;
    width: 330px;
  }
}
.btn_03 button::after,
.btn_03 a::after {
  content: "";
  border-top: 1px solid #fff;
  width: 24px;
  height: 0;
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
}
.btn_03 button:hover,
.btn_03 a:hover {
  opacity: 0.7;
}
.btn_03.btn_onlineshop a::before {
  content: "";
  background-image: url(/libs/img/common/cart_wh.svg);
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 30px;
  translate: 0 -50%;
  background-size: contain;
  background-repeat: no-repeat;
}
.btn_03.btn_onlineshop a:hover {
  opacity: 0.7;
}

.btn_04 {
  display: flex;
  justify-content: center;
}
.btn_04 a {
  border: 1px solid rgba(0, 0, 0, 0.2);
  width: 300px;
  display: block;
  font-size: 1.3rem;
  padding: 10px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .btn_04 a {
    font-size: 1.6rem;
    padding: 20px 0;
    width: 330px;
  }
}
.btn_04 a:hover {
  background-color: #dedede;
}
.btn_04 span {
  border: 1px solid rgba(0, 0, 0, 0);
  background-color: #dedede;
  text-align: center;
  position: relative;
  width: 300px;
  display: block;
  font-size: 1.3rem;
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .btn_04 span {
    font-size: 1.6rem;
    padding: 20px 0;
    width: 330px;
  }
}

.link_map a {
  display: flex;
  align-items: center;
}
.link_map a::before {
  content: "";
  display: block;
  width: 11px;
  height: 13px;
  background-image: url(/libs/img/common/location_bk.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 5px;
}

.slider {
  /* slick-dots のスタイル */
  /* 各ドットの外観（丸） */
  /* アクティブ時（選択中）のドット */
}
.slider .slick-dots {
  display: flex;
  justify-content: center;
  padding: 10px 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .slider .slick-dots {
    padding: 20px 0;
  }
}
.slider .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 0;
  margin: 0 5px;
  text-indent: -9999px;
  /* 数字テキスト非表示 */
  cursor: pointer;
}
.slider .slick-dots li.slick-active button {
  background: rgb(255, 255, 255);
}

@media screen and (max-width: 1199px) {
  .pc_wrap {
    display: contents;
  }
}
.menu__select {
  width: 270px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 45px;
  background-color: #F7F7F7;
}
@media screen and (min-width: 768px) {
  .menu__select {
    margin-bottom: 60px;
    width: 370px;
  }
}

.ctm_select {
  display: block;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 0;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  font-size: 1.3rem;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24"><path d="M7 10l5 5 5-5z" fill="%23333"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 2rem auto;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .ctm_select {
    padding: 1rem 2rem 1rem 3rem;
    font-size: 1.5rem;
  }
}

.seal {
  color: #fff;
  display: inline-block;
  background-color: #AD8A23;
  font-size: 1.1rem;
  line-height: 1em;
  padding: 5px 10px;
}
@media screen and (min-width: 768px) {
  .seal {
    font-size: 1.2rem;
  }
}

.news__pager {
  position: relative;
  margin: 50px 6%;
}
@media screen and (min-width: 768px) {
  .news__pager {
    margin: 100px 0 150px;
  }
}
.news__pager a {
  display: block;
  width: 100%;
  text-align: center;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  position: relative;
}
.news__pager .pager__prev {
  width: 33%;
  position: absolute;
  top: 0;
  left: 0;
  border-left: 1px solid #000;
}
.news__pager .pager__prev a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  position: absolute;
  top: 50%;
  left: 5px;
  rotate: -45deg;
  margin-top: -4px;
}
@media screen and (min-width: 768px) {
  .news__pager .pager__prev a::after {
    left: 100px;
  }
}
.news__pager .pager__list {
  width: 33%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}
.news__pager .pager__next {
  width: 33%;
  position: absolute;
  top: 0;
  right: 0;
  border-right: 1px solid #000;
}
.news__pager .pager__next a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  position: absolute;
  top: 50%;
  right: 5px;
  rotate: 135deg;
  margin-top: -4px;
}
@media screen and (min-width: 768px) {
  .news__pager .pager__next a::after {
    right: 100px;
  }
}

.winery_menuList {
  background-color: #F7F7F7;
  padding: 40px 6%;
  display: grid;
  row-gap: 24px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .winery_menuList {
    padding-top: 60px;
  }
  .winery_menuList:after {
    content: "";
    display: block;
    width: 8.5714285714%;
    height: 100%;
    position: absolute;
    right: 0;
    text-align: 0;
    top: 0;
    background-color: #fff;
  }
}
@media screen and (min-width: 768px) {
  .winery_menuList .pc_wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    margin-bottom: 0;
    padding-left: 3%;
    padding-right: 3%;
  }
}
.winery_menuList .item {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 24px;
}
@media screen and (min-width: 768px) {
  .winery_menuList .item {
    padding: 0;
    border: none;
  }
}
.winery_menuList .item:first-of-type {
  border: none;
  padding-top: 0;
}
.winery_menuList .item a {
  display: grid;
  grid-template-columns: 60% auto;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .winery_menuList .item a {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.winery_menuList .item a .text {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .winery_menuList .item a .text .en {
    font-size: 1.5rem;
  }
}
.winery_menuList .item a .text .jp {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .winery_menuList .item a .text .jp {
    font-size: 1.2rem;
  }
}/*# sourceMappingURL=common.css.map */