@charset "UTF-8";
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* 変数の定義
--------------------------------------------------*/
/* ホバーをPCでのみ有効
--------------------------------------------------*/
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* 色の定義
--------------------------------------------------*/
/* フォントの定義
--------------------------------------------------*/
html,
body,
ul,
ol,
dl,
li,
dt,
dd,
a,
p,
div,
img,
svg,
table,
tr,
th,
td,
figure {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #001A24;
}

body,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
img,
svg,
a,
table,
tr,
th,
td,
figure {
  font-size: 1.6rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 700;
  color: #001A24;
}

/* TOPページ
--------------------------------------------------*/
/* KV
--------------------------------------------------*/
main {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  main {
    margin-bottom: 60px;
  }
}

#kv {
  position: relative;
  width: 100%;
  height: calc(100vh - 122px);
  overflow: hidden;
  margin-top: 122px;
}
@media screen and (max-width: 1199px) {
  #kv {
    height: 680px;
    margin-top: 74px;
  }
}
@media screen and (max-width: 449px) {
  #kv {
    height: 520px;
  }
}
#kv .swiper {
  position: relative;
}
#kv .swiper::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 5;
}
#kv .swiper,
#kv .swiper-wrapper {
  width: 100%;
  height: 100%;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
#kv .swiper-slide {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#kv .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#kv .swiper-slide-active img,
#kv .swiper-slide-duplicate-active img,
#kv .swiper-slide-prev img {
  animation: zoomUp 10s linear 0s normal both;
}
#kv .kv_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  z-index: 10;
  width: 90%;
  opacity: 0;
  animation: fadeIn 2s ease forwards;
  animation-delay: 0.3s;
}
#kv .kv_text p {
  font-family: "Noto Serif JP", serif;
  color: #fff;
}
#kv .kv_text .main_text {
  line-height: 1.4;
  font-size: 6.4rem;
  font-feature-settings: "halt";
}
@media screen and (max-width: 999px) {
  #kv .kv_text .main_text {
    font-size: clamp(3rem, 9.37vw, 5.2rem);
  }
}
#kv .kv_text .line {
  width: 800px;
  height: 1px;
  background-color: #fff;
  margin: 30px auto;
}
@media screen and (max-width: 999px) {
  #kv .kv_text .line {
    width: 100%;
  }
}
#kv .kv_text .sub_text {
  font-size: 2.6rem;
  line-height: 1.6;
}
@media screen and (max-width: 999px) {
  #kv .kv_text .sub_text {
    font-size: clamp(1.6rem, 5vw, 2rem);
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* 重要なお知らせ
--------------------------------------------------*/
#important-info {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  #important-info {
    margin-top: 40px;
  }
}
@media screen and (max-width: 449px) {
  #important-info {
    margin-top: 30px;
  }
}
#important-info .wrap_info {
  display: flex;
}
@media screen and (max-width: 1199px) {
  #important-info .wrap_info {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #important-info .wrap_info {
    flex-direction: column;
  }
}
#important-info .wrap_info .left {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #D71B1B;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  #important-info .wrap_info .left {
    justify-content: center;
    height: 40px;
  }
}
#important-info .wrap_info .left img {
  width: 25px;
}
@media screen and (max-width: 768px) {
  #important-info .wrap_info .left img {
    width: 21px;
  }
}
#important-info .wrap_info .left p {
  flex-shrink: 0;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #important-info .wrap_info .left p {
    font-size: 1.6rem;
  }
}
#important-info .wrap_info .right {
  padding: 20px 30px;
  border: solid 2px #D71B1B;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #important-info .wrap_info .right {
    padding: 20px;
  }
}
#important-info .wrap_info .right .info_list li {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 999px) {
  #important-info .wrap_info .right .info_list li {
    flex-direction: column;
    gap: 4px;
  }
}
#important-info .wrap_info .right .info_list li:nth-child(2) {
  margin-top: 10px;
}
#important-info .wrap_info .right .info_list li .data {
  flex-shrink: 0;
}
#important-info .wrap_info .right .info_list li a {
  width: 100%;
  position: relative;
}
#important-info .wrap_info .right .info_list li a::after {
  content: "";
  position: absolute;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 25'><path d='M24.175 12.7056H2.5V10.7056H24.175L18.575 5.10557L20 3.70557L28 11.7056L20 19.7056L18.575 18.3056L24.175 12.7056Z' fill='black'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 25'><path d='M24.175 12.7056H2.5V10.7056H24.175L18.575 5.10557L20 3.70557L28 11.7056L20 19.7056L18.575 18.3056L24.175 12.7056Z' fill='black'/></svg>");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #D71B1B;
  width: 22px;
  height: 16px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition-duration: 0.3s;
}
#important-info .wrap_info .right .info_list li a .midashi {
  text-decoration: underline;
  text-underline-offset: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition-duration: 0.3s;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  #important-info .wrap_info .right .info_list li a .midashi {
    margin-right: 24px;
  }
}
@media (hover: hover) {
  #important-info .wrap_info .right .info_list li a:hover .midashi {
    color: #D71B1B;
  }
}
@media (hover: hover) {
  #important-info .wrap_info .right .info_list li a:hover::after {
    right: -6px;
  }
}

/* ビール共通券・清酒券について
--------------------------------------------------*/
#ticket {
  margin-top: 70px;
  padding: 60px 0;
  background-color: #F3F5F5;
}
@media screen and (max-width: 768px) {
  #ticket {
    margin-top: 60px;
    padding: 40px 0;
  }
}
#ticket .wrap_ticket .center_line_title {
  font-size: 2.8rem;
  color: #001A24;
}
@media screen and (max-width: 768px) {
  #ticket .wrap_ticket .center_line_title {
    font-size: clamp(2.1rem, 5.83vw, 2.8rem);
  }
}
#ticket .wrap_ticket .intro_text {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #ticket .wrap_ticket .intro_text {
    text-align: left;
  }
}
#ticket .wrap_ticket .wrap_btn {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #ticket .wrap_ticket .wrap_btn {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
#ticket .wrap_ticket .wrap_banner {
  display: block;
  text-align: center;
}
#ticket .wrap_ticket .wrap_banner a {
  display: block;
  margin-inline: auto;
  width: 800px;
  transition-duration: 0.3s;
}
@media screen and (max-width: 999px) {
  #ticket .wrap_ticket .wrap_banner a {
    width: 100%;
  }
}
#ticket .wrap_ticket .wrap_banner a:first-child {
  margin-bottom: 10px;
}
@media (hover: hover) {
  #ticket .wrap_ticket .wrap_banner a:hover {
    opacity: 0.8;
  }
}

/* お知らせ
--------------------------------------------------*/
#news {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  #news {
    margin-top: 40px;
  }
}
#news .wrap_news .news_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 999px) {
  #news .wrap_news .news_list {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media screen and (max-width: 768px) {
  #news .wrap_news .news_list {
    margin-bottom: 30px;
  }
}
#news .wrap_news .news_list li {
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  height: 100%;
}
#news .wrap_news .news_list li .news_thum {
  height: 180px;
  overflow: hidden;
}
#news .wrap_news .news_list li .news_thum img {
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  transition: transform 0.3s ease;
  transform-origin: center center;
  transform: scale(1);
}
#news .wrap_news .news_list li:nth-child(4), #news .wrap_news .news_list li:nth-child(5) {
  display: none;
}
@media screen and (max-width: 999px) {
  #news .wrap_news .news_list li:nth-child(4), #news .wrap_news .news_list li:nth-child(5) {
    display: block;
  }
}
@media screen and (max-width: 999px) {
  #news .wrap_news .news_list li:first-child .wrap_text {
    border-top: 1px solid #EBECED;
  }
}
#news .wrap_news .news_list li .wrap_text {
  padding: 20px 20px 30px 20px;
  border-right: 1px solid #EBECED;
  border-bottom: 1px solid #EBECED;
  border-left: 1px solid #EBECED;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
@media screen and (max-width: 999px) {
  #news .wrap_news .news_list li .wrap_text {
    padding: 20px 0;
    border-right: none;
    border-left: none;
  }
}
#news .wrap_news .news_list li .wrap_text .flex {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  width: 100%;
}
#news .wrap_news .news_list li .wrap_text .flex .data {
  order: 1;
}
@media screen and (max-width: 999px) {
  #news .wrap_news .news_list li .wrap_text .flex .data {
    order: 2;
  }
}
#news .wrap_news .news_list li .wrap_text .flex .cat_btn {
  order: 2;
}
@media screen and (max-width: 999px) {
  #news .wrap_news .news_list li .wrap_text .flex .cat_btn {
    order: 1;
  }
}
@media screen and (max-width: 999px) {
  #news .wrap_news .news_list li .wrap_text .wrap_midashi {
    display: inline-block;
    padding-right: 30px;
    width: 100%;
    position: relative;
  }
  #news .wrap_news .news_list li .wrap_text .wrap_midashi::after {
    content: "";
    position: absolute;
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 25'><path d='M24.175 12.7056H2.5V10.7056H24.175L18.575 5.10557L20 3.70557L28 11.7056L20 19.7056L18.575 18.3056L24.175 12.7056Z' fill='black'/></svg>");
    mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 25'><path d='M24.175 12.7056H2.5V10.7056H24.175L18.575 5.10557L20 3.70557L28 11.7056L20 19.7056L18.575 18.3056L24.175 12.7056Z' fill='black'/></svg>");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    background-color: #00AEEF;
    width: 22px;
    height: 16px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
#news .wrap_news .news_list li .wrap_text .midashi {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition-duration: 0.3s;
  white-space: normal;
  width: 100%;
}
@media (hover: hover) {
  #news .wrap_news .news_list li:hover {
    cursor: pointer;
  }
  #news .wrap_news .news_list li:hover:not(:has(.cat_btn:hover)) .news_thum img {
    transform: scale(1.1);
  }
  #news .wrap_news .news_list li:hover:not(:has(.cat_btn:hover)) .midashi {
    color: #00AEEF;
  }
}
#news .wrap_news .btn {
  margin-inline: auto;
}

/* 全酒協とは・取り扱い商品一覧
--------------------------------------------------*/
#wrap_about-products {
  margin-top: 80px;
  padding: 60px 0;
  background-color: #F3F5F5;
}
@media screen and (max-width: 768px) {
  #wrap_about-products {
    margin-top: 60px;
    padding: 40px 0;
  }
}
#wrap_about-products #about, #wrap_about-products #products {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 999px) {
  #wrap_about-products #about, #wrap_about-products #products {
    gap: 20px;
  }
}
#wrap_about-products #about img, #wrap_about-products #products img {
  width: 41.33%;
}
@media screen and (max-width: 999px) {
  #wrap_about-products #about img, #wrap_about-products #products img {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #wrap_about-products #about img, #wrap_about-products #products img {
    width: 100%;
  }
}
#wrap_about-products #about .wrap_text, #wrap_about-products #products .wrap_text {
  width: 58.67%;
}
@media screen and (max-width: 999px) {
  #wrap_about-products #about .wrap_text, #wrap_about-products #products .wrap_text {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #wrap_about-products #about .wrap_text, #wrap_about-products #products .wrap_text {
    width: 100%;
  }
}
#wrap_about-products #about .wrap_text .text, #wrap_about-products #products .wrap_text .text {
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  #wrap_about-products #about .wrap_text .text, #wrap_about-products #products .wrap_text .text {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 999px) {
  #wrap_about-products #about .wrap_text .btn, #wrap_about-products #products .wrap_text .btn {
    margin-inline: auto;
  }
}
#wrap_about-products #about {
  margin-bottom: 40px;
}
@media screen and (max-width: 999px) {
  #wrap_about-products #about {
    flex-direction: column;
  }
}
#wrap_about-products #about .wrap_text .title .blue_text {
  display: block;
  color: #00AEEF;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  #wrap_about-products #about .wrap_text .title .blue_text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 999px) {
  #wrap_about-products #products {
    flex-direction: column-reverse;
  }
}

/* バナースライダー
--------------------------------------------------*/
#banner {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  #banner {
    margin-top: 60px;
  }
}
#banner .banner-slider {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
}
#banner .banner-slider .swiper-wrapper .swiper-slide {
  width: 70%;
  opacity: 0.6;
  transition: opacity 0.3s;
}
@media screen and (max-width: 999px) {
  #banner .banner-slider .swiper-wrapper .swiper-slide {
    width: 90%;
  }
}
#banner .banner-slider .swiper-wrapper .swiper-slide.swiper-slide-active {
  opacity: 1;
}
#banner .banner-slider .swiper-pagination {
  position: relative;
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 999px) {
  #banner .banner-slider .swiper-pagination {
    margin-top: 10px;
  }
}
#banner .banner-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background: #fff !important;
  border: 1px solid #00AEEF !important;
  opacity: 1 !important;
  margin: 0 4px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 999px) {
  #banner .banner-slider .swiper-pagination .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    margin: 0 3px;
  }
}
#banner .banner-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #00AEEF !important;
}
#banner .banner-slider .arrow-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 20;
  /* 左矢印（中央スライド左端から外に10px） */
  /* 右矢印（中央スライド右端から外に10px） */
}
@media screen and (max-width: 999px) {
  #banner .banner-slider .arrow-wrapper {
    display: none;
  }
}
#banner .banner-slider .arrow-wrapper .swiper-button-prev, #banner .banner-slider .arrow-wrapper .swiper-button-next {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  width: 20px;
  height: 40px;
  cursor: pointer;
  color: #00AEEF;
  transform: translateY(-50%);
}
#banner .banner-slider .arrow-wrapper .swiper-button-prev {
  left: calc(15% - 30px);
}
#banner .banner-slider .arrow-wrapper .swiper-button-next {
  right: calc(15% - 30px);
}