@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;
}

/* 取り扱い商品一覧
--------------------------------------------------*/
/* お問い合わせへの導線
--------------------------------------------------*/
main {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  main {
    margin-bottom: 60px;
  }
}

#contact {
  margin-top: 80px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #contact {
    margin-top: 60px;
  }
}
#contact .wrap_contact {
  padding: 35px;
  border: solid 1px #00AEEF;
}
@media screen and (max-width: 768px) {
  #contact .wrap_contact {
    padding: 20px;
  }
}
#contact .wrap_contact .contact_area .text:first-child {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #contact .wrap_contact .contact_area .text:first-child {
    font-size: 1.6rem;
  }
}
#contact .wrap_contact .contact_area .text:nth-child(2) {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #contact .wrap_contact .contact_area .text:nth-child(2) {
    font-size: 1.4rem;
  }
}
#contact .wrap_contact .contact_area .btn {
  justify-content: center;
  gap: 10px;
  margin-inline: auto;
  padding-left: 0;
}
#contact .wrap_contact .contact_area .btn img {
  width: 24px;
}
#contact .wrap_contact .contact_area .btn::after {
  content: none;
}
#contact .wrap_contact .contact_area .note {
  font-size: 1.4rem;
  margin-top: 6px;
  color: #808D92;
}
@media screen and (max-width: 768px) {
  #contact .wrap_contact .contact_area .note {
    font-size: 1.2rem;
  }
}

/* カテゴリー、商品一覧
--------------------------------------------------*/
.products_area {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .products_area {
    margin-top: 60px;
  }
}
.products_area .flex {
  display: flex;
  gap: 120px;
}
@media screen and (max-width: 1199px) {
  .products_area .flex {
    gap: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .products_area .flex {
    flex-direction: column-reverse;
    gap: 60px;
  }
}
.products_area .flex .left {
  width: 26%;
  max-width: 240px;
}
@media screen and (max-width: 999px) {
  .products_area .flex .left {
    max-width: 180px;
  }
}
@media screen and (max-width: 768px) {
  .products_area .flex .left {
    width: 100%;
    max-width: unset;
  }
}
.products_area .flex .left .cat_area .cat_title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  padding-left: 18px;
  margin-bottom: 15px;
  position: relative;
}
@media screen and (max-width: 999px) {
  .products_area .flex .left .cat_area .cat_title {
    font-size: 1.4rem;
    padding-left: 14px;
  }
}
.products_area .flex .left .cat_area .cat_title::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: 8px;
  left: 0;
  background-color: #00AEEF;
}
@media screen and (max-width: 999px) {
  .products_area .flex .left .cat_area .cat_title::before {
    width: 10px;
    height: 10px;
    top: 7px;
  }
}
.products_area .flex .left .cat_area .cat_list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .products_area .flex .left .cat_area .cat_list {
    gap: 10px;
  }
}
.products_area .flex .left .cat_area .cat_list li .pr_cat {
  height: 52px;
  color: #808D92;
  border: solid 1px #A8A8A8;
  background-color: unset;
}
@media screen and (max-width: 999px) {
  .products_area .flex .left .cat_area .cat_list li .pr_cat {
    font-size: 1.6rem;
    height: 42px;
    padding-left: 15px;
  }
}
@media screen and (max-width: 768px) {
  .products_area .flex .left .cat_area .cat_list li .pr_cat {
    width: 100%;
    max-width: 100%;
  }
}
.products_area .flex .left .cat_area .cat_list li .pr_cat::after {
  background-color: #A8A8A8;
  width: 20px;
  height: 17px;
  transition-duration: 0.3s;
}
@media screen and (max-width: 999px) {
  .products_area .flex .left .cat_area .cat_list li .pr_cat::after {
    width: 18px;
    height: 14px;
    right: 15px;
  }
}
@media (hover: hover) {
  .products_area .flex .left .cat_area .cat_list li .pr_cat:hover {
    color: #00AEEF;
    border-color: #00AEEF;
  }
  .products_area .flex .left .cat_area .cat_list li .pr_cat:hover::after {
    background-color: #00AEEF;
  }
}
.products_area .flex .left .cat_area .cat_list li .sub_cat_list .sub_cat {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: #808D92;
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-bottom: solid 1px #EBECED;
  position: relative;
}
@media screen and (max-width: 999px) {
  .products_area .flex .left .cat_area .cat_list li .sub_cat_list .sub_cat {
    font-size: 1.4rem;
    padding: 10px 15px;
  }
}
.products_area .flex .left .cat_area .cat_list li .sub_cat_list .sub_cat::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: #A8A8A8;
  width: 20px;
  height: 17px;
  right: 20px;
  transition-duration: 0.3s;
}
@media screen and (max-width: 999px) {
  .products_area .flex .left .cat_area .cat_list li .sub_cat_list .sub_cat::after {
    width: 18px;
    height: 14px;
    right: 15px;
  }
}
@media (hover: hover) {
  .products_area .flex .left .cat_area .cat_list li .sub_cat_list .sub_cat:hover {
    color: #00AEEF;
  }
  .products_area .flex .left .cat_area .cat_list li .sub_cat_list .sub_cat:hover::after {
    right: 12px;
    background-color: #00AEEF;
  }
}
.products_area .flex .left .cat_area .cat_list li .sub_cat_list .sub_cat.current {
  color: #00AEEF;
  border-color: #00AEEF;
}
.products_area .flex .left .cat_area .cat_list li .sub_cat_list .sub_cat.current::after {
  background-color: #00AEEF;
}
.products_area .flex .left .cat_area .cat_list li .pr_cat.current {
  color: #fff;
  background-color: #00AEEF;
  border-color: #00AEEF;
}
.products_area .flex .left .cat_area .cat_list li .pr_cat.current::after {
  background-color: #fff;
}
.products_area .flex #products {
  width: 74%;
}
@media screen and (max-width: 768px) {
  .products_area .flex #products {
    width: 100%;
  }
}
.products_area .flex #products .wrap_products {
  position: relative;
}
.products_area .flex #products .wrap_products .title {
  margin-bottom: 50px;
}
.products_area .flex #products .wrap_products .products_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  position: relative;
}
@media screen and (max-width: 999px) {
  .products_area .flex #products .wrap_products .products_list {
    gap: 20px;
  }
}
@media (max-width: 599px) {
  .products_area .flex #products .wrap_products .products_list {
    grid-template-columns: 1fr;
  }
}
.products_area .flex #products .wrap_products .products_list::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}
.products_area .flex #products .wrap_products .products_list.no-gradient::after {
  display: none;
}
.products_area .flex #products .wrap_products .products_list li {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: #E5F5FB;
}
@media screen and (max-width: 999px) {
  .products_area .flex #products .wrap_products .products_list li {
    padding: 15px;
  }
}
.products_area .flex #products .wrap_products .products_list li .top {
  margin-bottom: 20px;
  position: relative;
}
.products_area .flex #products .wrap_products .products_list li .top .img_area {
  padding: 15px 0;
  background-color: #fff;
}
.products_area .flex #products .wrap_products .products_list li .top .alcohol_cat {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #005B7D;
  color: #fff;
  font-weight: 500;
  line-height: 1;
  padding: 8px 18px;
}
@media screen and (max-width: 999px) {
  .products_area .flex #products .wrap_products .products_list li .top .alcohol_cat {
    font-size: 1.4rem;
    padding: 6px 14px;
  }
}
.products_area .flex #products .wrap_products .products_list li .bottom {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.products_area .flex #products .wrap_products .products_list li .bottom .wrap_text {
  margin-bottom: 15px;
}
.products_area .flex #products .wrap_products .products_list li .bottom .wrap_text .name {
  padding: 2px 16px;
  border-left: solid 1px #00AEEF;
  margin-bottom: 10px;
}
@media screen and (max-width: 999px) {
  .products_area .flex #products .wrap_products .products_list li .bottom .wrap_text .name {
    padding: 2px 10px;
  }
}
.products_area .flex #products .wrap_products .products_list li .bottom .wrap_text .name p {
  font-size: 2.6rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.4;
}
@media screen and (max-width: 999px) {
  .products_area .flex #products .wrap_products .products_list li .bottom .wrap_text .name p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 999px) {
  .products_area .flex #products .wrap_products .products_list li .bottom .wrap_text .ex {
    font-size: 1.6rem;
  }
}
.products_area .flex #products .wrap_products .products_list li .bottom .btn {
  margin-top: auto;
  width: 100%;
  max-width: unset;
  height: 54px;
  font-size: 1.6rem;
}
.products_area .flex #products .wrap_products .products_list li .bottom .btn::after {
  width: 25px;
  height: 20px;
}
.products_area .flex #products .wrap_products .more_btn {
  font-size: 2rem;
  font-weight: 700;
  color: #00AEEF;
  background-color: #fff;
  padding: 14px 20px;
  border: solid 1px #00AEEF;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 340px;
  margin-inline: auto;
  margin-top: 40px;
  cursor: pointer;
  position: relative;
  transition-duration: 0.3s;
}
@media screen and (max-width: 768px) {
  .products_area .flex #products .wrap_products .more_btn {
    margin-top: 30px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 449px) {
  .products_area .flex #products .wrap_products .more_btn {
    margin-top: 20px;
  }
}
.products_area .flex #products .wrap_products .more_btn::before, .products_area .flex #products .wrap_products .more_btn::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #00AEEF;
  right: 20px;
}
@media screen and (max-width: 768px) {
  .products_area .flex #products .wrap_products .more_btn::before, .products_area .flex #products .wrap_products .more_btn::after {
    width: 15px;
  }
}
.products_area .flex #products .wrap_products .more_btn::after {
  transform: rotate(90deg);
}
@media (hover: hover) {
  .products_area .flex #products .wrap_products .more_btn:hover {
    opacity: 0.7;
  }
}

/* カテゴリーページ
--------------------------------------------------*/
.sub_contact_area {
  margin-top: 40px;
  padding: 25px 0;
  border-top: solid 1px #EBECED;
  border-bottom: solid 1px #EBECED;
}
.sub_contact_area .text {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .sub_contact_area .text {
    text-align: center;
  }
}
.sub_contact_area .text:nth-child(2) {
  font-size: 1.4rem;
}
.sub_contact_area .btn {
  font-size: 1.4rem;
  justify-content: center;
  gap: 6px;
  height: auto;
  padding: 13px 0;
}
@media screen and (max-width: 999px) {
  .sub_contact_area .btn {
    font-size: 1rem;
    gap: 4px;
  }
}
@media screen and (max-width: 768px) {
  .sub_contact_area .btn {
    margin-inline: auto;
    font-size: 1.6rem;
    gap: 6px;
  }
}
.sub_contact_area .btn img {
  width: 18px;
}
@media screen and (max-width: 999px) {
  .sub_contact_area .btn img {
    width: 16px;
  }
}
@media screen and (max-width: 768px) {
  .sub_contact_area .btn img {
    width: 20px;
  }
}
.sub_contact_area .btn::after {
  content: none;
}

.products_list.no-gradient::after {
  content: none;
}

.products_list.has-children {
  padding-bottom: 40px;
  margin-bottom: 30px;
  border-bottom: solid 1px #EBECED;
}
@media screen and (max-width: 999px) {
  .products_list.has-children {
    padding-bottom: 30px;
    margin-bottom: 20px;
  }
}
.products_list.has-children:last-child {
  padding: 0;
  margin: 0;
  border: none;
}

/* 商品詳細
--------------------------------------------------*/
#page_products-detail {
  margin-top: 122px;
}
@media screen and (max-width: 1199px) {
  #page_products-detail {
    margin-top: 74px;
  }
}
#page_products-detail .breadcrumbs {
  position: unset;
  background-color: #fff;
}
#page_products-detail .breadcrumbs .home, #page_products-detail .breadcrumbs .no_link {
  color: #808D92;
}
#page_products-detail .products-detail_area {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  #page_products-detail .products-detail_area {
    padding-top: 60px;
  }
}
#page_products-detail .products-detail_area .flex {
  display: flex;
  gap: 4vw;
}
@media screen and (max-width: 999px) {
  #page_products-detail .products-detail_area .flex {
    flex-direction: column;
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  #page_products-detail .products-detail_area .flex {
    gap: 30px;
  }
}
#page_products-detail .products-detail_area .flex .products_img {
  width: 34.5%;
  height: 400px;
  overflow: hidden;
  border: solid 1px #EBECED;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 999px) {
  #page_products-detail .products-detail_area .flex .products_img {
    width: 100%;
    height: 360px;
  }
}
@media screen and (max-width: 768px) {
  #page_products-detail .products-detail_area .flex .products_img {
    height: 280px;
  }
}
#page_products-detail .products-detail_area .flex .products_img img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#page_products-detail .products-detail_area .flex .text_area {
  width: 65.5%;
}
@media screen and (max-width: 999px) {
  #page_products-detail .products-detail_area .flex .text_area {
    width: 100%;
  }
}
#page_products-detail .products-detail_area .flex .text_area .alcohol_cat {
  background-color: #005B7D;
  color: #fff;
  font-weight: 500;
  line-height: 1;
  padding: 8px 18px;
  display: inline-block;
  margin-bottom: 20px;
}
@media screen and (max-width: 999px) {
  #page_products-detail .products-detail_area .flex .text_area .alcohol_cat {
    font-size: 1.4rem;
    padding: 6px 14px;
  }
}
@media screen and (max-width: 768px) {
  #page_products-detail .products-detail_area .flex .text_area .alcohol_cat {
    margin-bottom: 15px;
  }
}
#page_products-detail .products-detail_area .flex .text_area .name {
  padding-bottom: 20px;
  border-bottom: solid 1px #00AEEF;
  margin-bottom: 30px;
}
@media screen and (max-width: 999px) {
  #page_products-detail .products-detail_area .flex .text_area .name {
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  #page_products-detail .products-detail_area .flex .text_area .name {
    margin-bottom: 20px;
  }
}
#page_products-detail .products-detail_area .flex .text_area .name p {
  font-family: "Noto Serif JP", serif;
  font-size: 3.4rem;
  line-height: 1;
}
@media screen and (max-width: 999px) {
  #page_products-detail .products-detail_area .flex .text_area .name p {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  #page_products-detail .products-detail_area .flex .text_area .name p {
    font-size: 2rem;
  }
}
#page_products-detail .products-detail_area .flex .text_area .ex {
  margin-bottom: 20px;
}
#page_products-detail .products-detail_area .flex .text_area .ex .big {
  font-size: 2.4rem;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}
@media screen and (max-width: 999px) {
  #page_products-detail .products-detail_area .flex .text_area .ex .big {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  #page_products-detail .products-detail_area .flex .text_area .ex .big {
    font-size: 1.8rem;
  }
}
#page_products-detail .products-detail_area .flex .text_area .point img {
  width: 86px;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  #page_products-detail .products-detail_area .flex .text_area .point img {
    margin-bottom: 4px;
  }
}
#page_products-detail .products-detail_area .flex .text_area .point .text {
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-underline-offset: 8px;
  line-height: 2;
}
#page_products-detail .products-detail_area .flex .text_area .cooking {
  margin-top: 47px;
  position: relative;
}
#page_products-detail .products-detail_area .flex .text_area .cooking span {
  font-size: 1.6rem;
  color: #fff;
  background-color: #00AEEF;
  padding: 2px 16px;
  position: absolute;
  top: -15px;
}
#page_products-detail .products-detail_area .flex .text_area .cooking .text {
  padding: 30px 25px 25px;
  border: solid 1px #00AEEF;
}
@media screen and (max-width: 768px) {
  #page_products-detail .products-detail_area .flex .text_area .cooking .text {
    padding: 25px 20px 20px;
  }
}
#page_products-detail .products-detail_area .flex .text_area .overview {
  margin-top: 40px;
}
#page_products-detail .products-detail_area .flex .text_area .overview table {
  margin-top: 5px;
  border-collapse: collapse; /* 枠線の重なりをなくす（重要） */
  border: none;
}
#page_products-detail .products-detail_area .flex .text_area .overview table th {
  padding: 15px 20px;
  text-align: left;
  width: 20%;
  min-width: 200px;
  background-color: #F3F5F5;
  border-bottom: solid 1px #fff;
}
@media screen and (max-width: 768px) {
  #page_products-detail .products-detail_area .flex .text_area .overview table th {
    min-width: 100px;
  }
}
#page_products-detail .products-detail_area .flex .text_area .overview table td {
  width: 80%;
  padding: 15px 20px;
  border-bottom: solid 1px #EBECED;
  border-right: solid 1px #EBECED;
}
#page_products-detail .products-detail_area .flex .text_area .overview table tr:first-of-type th {
  border-top: solid 1px #F3F5F5;
}
#page_products-detail .products-detail_area .flex .text_area .overview table tr:last-of-type th {
  border-bottom: solid 1px #F3F5F5;
}
#page_products-detail .products-detail_area .flex .text_area .overview table tr:first-of-type td {
  border-top: solid 1px #EBECED;
}
#page_products-detail .pr-category_area {
  margin-top: 60px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #page_products-detail .pr-category_area {
    margin-top: 40px;
    margin-bottom: 30px;
  }
}
#page_products-detail .pr-category_area .wrap_pr-category {
  background-color: #E5F5FB;
  padding: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #page_products-detail .pr-category_area .wrap_pr-category {
    padding: 20px;
  }
}
#page_products-detail .pr-category_area .wrap_pr-category .square_title_sm {
  display: inline-block;
}
#page_products-detail .pr-category_area .wrap_pr-category .wrap_btn {
  display: flex;
  justify-content: center;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  #page_products-detail .pr-category_area .wrap_pr-category .wrap_btn {
    flex-direction: column;
    gap: 8px;
  }
}
#page_products-detail .pr-category_area .wrap_pr-category .wrap_btn .pr_cat {
  font-size: 2rem;
  font-weight: 700;
  color: #00AEEF;
  background-color: #fff;
  border: solid 1px #00AEEF;
  padding: 10px;
  width: 180px;
  transition-duration: 0.3s;
}
@media screen and (max-width: 768px) {
  #page_products-detail .pr-category_area .wrap_pr-category .wrap_btn .pr_cat {
    width: 100%;
    font-size: 1.6rem;
  }
}
@media (hover: hover) {
  #page_products-detail .pr-category_area .wrap_pr-category .wrap_btn .pr_cat:hover {
    opacity: 0.8;
  }
}