@charset "UTF-8";
@import url("https://fonts.googleapis.com/earlyaccess/notosansjapanese.css");

*,
*:before,
*:after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-padding-top: 10rem;
}

:root {
  --white: #fff;
  --grey: #f8f8f8;
  --black: #000;
  --light_black: #333;
  --sky-blue: #b0eaed;
  --pink: #ff6b69;
  --yellow: #ffc528;
  --green: #50c689;
  --orange: #ffa533;
  --shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  --Noto: "Noto Sans JP" !important;
  --zen: "Zen Maru Gothic";
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 1.6rem;
  color: #333;
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-ideograph;
  letter-spacing: 0.05em;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.6;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  opacity: 0.9;
}

ul {
  list-style: none;
}

.breadcrumb {
  font-size: 1.1rem;
  margin: 2rem auto;
}

.mt10 {
  margin-top: 1rem !important;
}

.mt30 {
  margin-top: 3rem !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.container_s {
  max-width: 1020px;
  margin: 0 auto;
}

.fl {
  display: flex;
}

.fl_wrp3 {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.fl_wrp3>div {
  width: calc(33.3333333333% - 2rem);
}

.gr {
  display: grid;
}

.max_ft {
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.fl_j_c {
  display: flex;
  justify-content: center;
}

.ta-c {
  text-align: center;
}

.fwb {
  font-weight: bold;
}

section {
  padding: 8rem 0;
}

.for_sp {
  display: none;
}

.for_pc {
  display: block;
}

.for_ipad {
  display: none;
}

@media screen and (max-width: 1024px) {
  .container {
    padding: 0 6%;
  }

  .container_s {
    padding: 0 6%;
  }

  .breadcrumb {
    font-size: 1.4rem;
  }

  .for_ipad {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }

  section {
    padding: 4rem 0;
  }

  .for_sp {
    display: block;
  }

  .for_pc {
    display: none;
  }
}

header {
  position: fixed;
  width: -moz-fit-content;
  width: fit-content;
  height: 108px;
  top: 0;
  left: 0;
  z-index: 1000;
}

header .hamburger_nav {
  display: none;
}

/* =========================================================
ハンバーガーメニュー
========================================================= */
.hamburger-icon {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  cursor: pointer;
  width: 80px;
  height: 100px;
  border-right: 0;
  transition: 0.2s;
  display: block;
}

.hamburger-icon.is-active {
  background: transparent;
}

.hamburger-icon-line {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  height: 4px;
  background: #000;
  width: 30px;
}

.hamburger-icon-line:nth-of-type(1) {
  top: 23px;
}

.hamburger-icon-line:nth-of-type(2) {
  top: 33px;
}

.hamburger-icon-line:nth-of-type(3) {
  top: 43px;
}

.hamburger-icon-line:nth-of-type(3)::after {
  content: "menu";
  position: absolute;
  font-weight: bold;
  color: #000;
  font-family: "Noto Serif JP", serif;
  top: 0.2rem;
  left: -1rem;
}

.hamburger-icon.is-active .hamburger-icon-line:nth-of-type(3)::after {
  display: none;
}

.hamburger-icon.is-active .hamburger-icon-line:nth-of-type(1) {
  top: 28px;
  transform: translateY(6px) rotate(-45deg);
  width: 31px;
  color: #3d0b00;
}

.hamburger-icon.is-active .hamburger-icon-line:nth-of-type(2) {
  opacity: 0;
}

.hamburger-icon.is-active .hamburger-icon-line:nth-of-type(3) {
  top: 40px;
  transform: translateY(-6px) rotate(45deg);
  width: 31px;
  color: #3d0b00;
}

@media screen and (max-width: 768px) {
  .hamburger-icon {
    width: 73px;
    height: 70px;
    border-radius: 0 0 0 21px;
  }

  .hamburger-icon-line {
    left: 16px;
    width: 25px;
  }

  .hamburger-icon-line:nth-of-type(1) {
    top: 8px;
  }

  .hamburger-icon-line:nth-of-type(2) {
    top: 18px;
  }

  .hamburger-icon-line:nth-of-type(3) {
    top: 28px;
  }


  .hamburger-icon.is-active .hamburger-icon-line:nth-of-type(1) {
    top: 18px;
    left: 16px;
  }

  .hamburger-icon.is-active .hamburger-icon-line:nth-of-type(3) {
    top: 30px;
    left: 16px;
  }
}

.hamburger_mask {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 523px;
  height: 100%;
  max-height: 726px;
  display: block;
  background: #e8d9b1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s linear;
  z-index: 999;
  transition: all 0.3s linear;
  border-radius: 0 0 0 54px;
}

.hamburger_mask.is-active {
  pointer-events: auto;
  opacity: 1;
}

.hamburger_mask_inner {
  padding: 5.2rem 3.6rem 10rem;
  height: 100dvh;
  overflow-y: auto;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .hamburger_mask {
    border-radius: 0;
    max-width: 80%;
    max-height: 100%;
  }

  .hamburger_mask_inner {
    height: 100%;
    padding: 5.2rem 2rem 10rem;
  }
}

.nav_list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 6rem;
}

.nav_item a {
  display: block;
  padding-top: 2rem;
  font-size: 1.8rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  color: #3d0b00;
}

.nav_item .fl_wrp3 {
  border-top: 1px solid #3d0b00;
  border-bottom: 1px solid #3d0b00;
  margin-top: 2rem;
  padding-bottom: 2rem;
  align-items: flex-end;
}

.nav_item .fl_wrp3>div {
  width: calc(33.3333333333% - 2rem);
}


@media screen and (max-width: 768px) {
  .nav_item a {
    font-size: 1.6rem;
  }


  .nav_item .fl_wrp3 {
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
  }

  .nav_item .fl_wrp3>div {
    width: calc(50% - 1rem);
  }
}

/* patetop */

#page-top {
  position: fixed;
  bottom: 60px;
  right: 40px;
  z-index: 100;
}

#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #3d0b00;
  border-radius: 5%;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.6rem;
  transition: all 0.3s;
  border-radius: 50%;
}

@media screen and (max-width: 1024px) {
  #page-top {
    right: 0;
  }
}

@media screen and (max-width: 768px) {
  #page-top {
    bottom: 2rem;
  }
}

/* footer */


footer {
  padding: 4rem 0;
  background-color: #fff;
  color: #000;
}

.copyright {
  font-size: 1.6rem;
  text-align: center;
  color: #000;
}

.copyright a {
  color: #000;
}

@media screen and (max-width: 768px) {
  footer {
    margin-top: 2rem;
    padding: 2rem;
  }

  .copyright {
    font-size: 1.2rem;
  }
}

.heading_txt {
  font-size: 2rem;
  line-height: 2.35;
  text-align: left;
  margin: 2rem auto;
  padding: 2rem;
  padding-top: 0;
  max-width: 1020px;
  font-weight: 500;
}

.heading_txt span {
  font-size: 0.8em;
}

@media screen and (max-width: 768px) {
  .heading_txt {
    font-size: 1.6rem;
    line-height: 1.87;
    margin: 2rem auto 0;
  }
}

.heading_brown {
  font-size: 1.8rem;
  font-weight: 500;
  padding: 2.6rem 4rem;
  border-radius: 10px;
  color: #000;
  background-color: #e8d9b1;
  margin: 0 auto 3.2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .heading_brown {
    font-size: 1.6rem;
    padding: 1.4rem 2rem;
    margin: 0 auto 3rem;
    border-radius: 5px;
  }
}

.heading_brown.txt_border_long,
.heading_brown.txt_border_short {
  display: flex;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {

  .heading_brown.txt_border_long,
  .heading_brown.txt_border_short {
    align-items: flex-start;
  }
}

.heading_brown.txt_border_long::before,
.heading_brown.txt_border_short::before {
  content: "";
  display: inline-block;
  height: 2px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 1rem;
}

.heading_brown.txt_border_long::before {
  width: 63px;
  margin-top: 1.4rem;
  background-image: url(../../img/common/border_long.png);
}

@media screen and (max-width: 768px) {
  .heading_brown.txt_border_long::before {
    width: 18px;
    background-image: url(../../img/common/border_sp.png);
  }
}

.heading_brown.txt_border_short::before {
  width: 18px;
  margin-top: 1.4rem;
  background-image: url(../../img/common/border_short.png);
}

@media screen and (max-width: 768px) {
  .heading_brown.txt_border_short::before {
    width: 18px;
    background-image: url(../../img/common/border_sp.png);
  }
}

.heading_brown.sec_heading {
  font-size: 2rem;
  border-radius: 0;
  text-align: center;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .heading_brown.sec_heading {
    font-size: 1.6rem;
  }
}

.heading_yellow {
  font-size: 1.8rem;
  font-weight: 500;
  padding: 2.7rem 4rem;
  border-radius: 10px;
  color: #000;
  background-color: #f7f9b0;
  margin: 0 auto 4.4rem;
}

@media screen and (max-width: 768px) {
  .heading_yellow {
    font-size: 1.6rem;
    padding: 1.4rem 2rem;
    margin: 0 auto 3rem;
    border-radius: 5px;
  }
}

.heading_yellow.txt_border_long,
.heading_yellow.txt_border_short {
  display: flex;
  align-items: flex-start;
}

.heading_yellow.txt_border_long::before,
.heading_yellow.txt_border_short::before {
  content: "";
  display: inline-block;
  height: 2px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 1rem;
  margin-top: 1.4rem;
}

.heading_yellow.txt_border_long::before {
  width: 63px;
  background-image: url(../../img/common/border_long.png);
}

.heading_yellow.txt_border_short::before {
  width: 18px;
  background-image: url(../../img/common/border_short.png);
}

.heading_yellow.sec_heading {
  font-size: 2rem;
  border-radius: 0;
  text-align: center;
  margin-bottom: 0;
}

.heading_yellow.flex {
  gap: 1rem;
}

.txt_block {
  margin: 4.6rem auto 0;
}

.comment_block {
  display: flex;
  gap: 2.8rem;
  margin: 0 auto 4rem;
  /* max-width: 1020px; */
  padding: 2rem;
}

.comment_block.gray {
  background: #f9f8f7;
  border-radius: 10px;
}

.comment_block .comment {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 500;
  line-height: 1.5;
}

.comment_block .comment .fwb {
  font-size: 1.8rem;
}

.comment_block .comment .note {
  font-size: 0.8em;
  color: #727171;
  margin-block: 1rem;
  display: block;
}

.comment_block .comment.comment_grey_bg {
  padding: 2rem;
  border-radius: 18px;
  background-color: var(--grey);
}

.comment_block .comment.high_light {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}

.comment_block .comment.high_light p {
  padding-bottom: 2rem;
}

.comment_block_row {
  /* 2025 winter追加 */
  justify-content: space-between;
}

.comment_block_row>div {
  flex: 1;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.comment_block_heading {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 3rem;
  position: relative;
  font-family: "Noto Serif JP", serif;
}

.comment_block_heading.txt_border_medium::before {
  content: "";
  display: inline-block;
  height: 2px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 1rem;
  vertical-align: middle;
}

.comment_block_heading.txt_border_medium::before {
  width: 41px;
  background-image: url(../../img/common/border_medium.png);
}

.comment_block_txt {
  display: flex;
  align-items: flex-start;
  gap: 2.6rem;
}

.comment_block_txt.plus {
  align-items: center;
}

.comment_block_txt+.comment_block_txt {
  margin-top: 2rem;
}


@media screen and (max-width: 768px) {
  .comment_block {
    gap: 1.5rem;
    margin: 0 auto 2rem;
  }

  .comment_block .ft20px p {
    font-size: 1.7rem !important;
  }

  .comment_block .comment .fwb {
    font-size: 1.5rem;
  }

  .comment_block .comment.high_light {
    font-size: 1.7rem;
  }

  .comment_block .avatar {
    max-width: 60px;
  }

  .comment_block_row {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .comment_block_row>div {
    max-width: 100%;
  }

  .comment_block_heading {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  .comment_block_txt {
    gap: 1rem;
  }
}

.caution_txt {
  margin-top: 1rem;
  font-size: 1.4rem;
  color: #727171;
}

.caution_txt a {
  color: #4e1100;
  border-bottom: 1px solid #4e1100;
}

.fl_img_wrapper {
  display: flex;
  gap: 3.4rem;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 4rem 0 0;
}

.fl_img_wrapper>div {
  flex: 1;
}

.info_wrapper {
  border: 2px solid #dbd8d8;
  padding: 2.5rem;
  margin: 0 auto;
}

.info_wrapper .fl {
  gap: 8rem;
}

.info_wrapper .info_txt {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.info_wrapper b {
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
}

.info_wrapper p {
  font-size: 1.5rem;
  margin-top: 2rem;
}


@media screen and (max-width: 768px) {
  .info_wrapper {
    padding: 1.5rem;
  }

  .info_wrapper .fl {
    display: block;
    gap: 1rem;
  }

  .info_wrapper .fl>div {
    margin-top: 1rem;
  }

  .info_wrapper .info_txt {
    font-size: 1.5rem;
  }

  .info_wrapper b {
    font-size: 1.6rem;
  }

  .info_wrapper p {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
}

.btn {
  display: block;
  width: 100%;
  font-size: 1.6rem;
  padding: 1.5rem 2rem;
  font-weight: 500;
  position: relative;
}

.btn span {
  display: inline-block;
  position: absolute;
  top: 1.4rem;
  right: 1rem;
  transition: all 0.3s;
}

.btn:hover span {
  right: 0.4rem;
}


.btn.btn_brown {
  color: var(--white);
  background-color: #4e1100;
}

.btn.btn_light_blue {
  color: var(--white);
  background-color: #44bfe1;
}

.contents {
  max-width: 1020px;
  margin: 0 auto;
  background-color: var(--white);
  box-shadow: var(--shadow);
}

/* =========================================================
ファーストビュー
========================================================= */
.fv {
  padding: 0;
}

.fv_top {
  padding: 2rem 1rem 2rem 4rem;
}

@media screen and (max-width: 768px) {

  .fv_top {
    padding: 1.6rem 1rem;
  }

  .fv_logo {
    max-width: 200px;
  }
}


/* =========================================================
introduction
========================================================= */
.introduction {
  padding-top: 0;
}

.introduction_wrap {
  background: url(../../img/bg.png);
  color: #3d0b00;
}

.introduction_wrap .container_s {
  padding-block: 4rem 7rem;
  position: relative;
}

.introduction_wrap .container_s::after {
  content: "";
  position: absolute;
  background: url(../../img/intro_border02.png) center / cover;
  background-repeat: no-repeat;
  bottom: 7rem;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 100%;
  height: 1px;
}

.introduction h2 {
  display: flex;
  font-size: 4.8rem;
  font-family: "Noto Serif JP", serif;
  align-items: center;
  letter-spacing: 0.05em;
}

.introduction h2::after {
  content: "";
  display: inline-block;
  background: url(../../img/intro_border01.png);
  width: calc(100% - 2rem);
  height: 2px;
  background-repeat: no-repeat;
  margin-left: 2rem;
}

.introduction_contents {
  position: relative;
  padding-block: 8rem;
}

.introduction_contents::before,
.introduction_contents::after {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 1300px;
  height: 110px;
  z-index: 10;
}

.introduction_contents::before {
  top: 4rem;
  background: url(../../img/introduction/flame01.png) top center / contain;
  background-repeat: no-repeat;
}

.introduction_contents::after {
  bottom: 4rem;
  background: url(../../img/introduction/flame02.png) top center / contain;
}

/* .introduction .info_wrapper {
  max-width: 792px;
} */

.introduction .info_wrapper .btn {
  max-width: 240px;
}

.introduction .fl_img_wrapper {
  gap: 5rem;
  margin-top: 2rem;
}

.introduction .fl_img_wrapper.for_sp {
  display: none !important;
}


@media screen and (min-width: 769px) and (max-width:1024px) {

  .introduction_wrap .container_s::after {
    width: 90%;
  }

  .introduction_contents {
    padding-block: 6rem;
  }

  .introduction_contents::before,
  .introduction_contents::after {
    width: 94%;
    height: 80px;
    background-repeat: no-repeat;
  }

}

@media screen and (max-width: 768px) {
  .introduction {
    padding-bottom: 0;
  }

  .introduction_wrap .container_s::after {
    width: 90%;
  }

  .introduction_contents {
    padding-block: 3rem 6rem;
  }

  .introduction_contents::before,
  .introduction_contents::after {
    width: 94%;
    height: 80px;
    background-repeat: no-repeat;
  }

  .introduction_contents::after {
    bottom: -1rem;
  }

  .introduction .info_wrapper .btn {
    max-width: 100%;
    margin-top: 1rem;
  }

  .introduction .fl_img_wrapper {
    gap: 1rem;
    display: block;
  }

  .introduction .fl_img_wrapper div+div {
    margin-top: 1rem;
  }


  .introduction h2 {
    font-size: 2.6rem;
  }
}

/* =========================================================
gourmet sweets
========================================================= */
.gourmet_sweets {
  padding: 0;
}

.gourmet_sweets .ttl {
  color: #3d0b00;
  margin-top: 2rem;
  font-size: 2.4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}

.gourmet_sweets_top {
  position: relative;
  padding: 8rem 0;
  background: url(../../img/gourme_sweets_bg.png) top center / cover;
}

.gourmet_sweets_top .gourmet_wrap {
  display: flex;
  flex-wrap: wrap;
  margin-block: 6rem 3rem;
  gap: 4rem;
  justify-content: center;
}

.gourmet_sweets_top .gourmet_wrap>div {
  width: 30%;
}

@media screen and (max-width: 768px) {
  .gourmet_sweets_top {
    padding: 3rem 0 1rem 0;
  }

  .gourmet_sweets .ttl {
    margin-top: 1rem;
    font-size: 1.6rem;
  }

  .gourmet_sweets_top .gourmet_wrap {
    gap: 2rem;
    margin-block: 4rem 2rem;
  }

  .gourmet_sweets_top .gourmet_wrap>div {
    width: 44%;
  }
}

/* =========================================================
ギフトアイテム
========================================================= */
.gift_item_area {
  padding: 8rem 0;
  background: #e8d9b1;
}

.gift_item_wrapper {
  margin-top: 8rem;
  background-color: var(--white);
  box-shadow: var(--shadow);
}

.gift_item {
  padding-bottom: 4rem;
}

.gift_item_wrapper:first-child {
  margin-top: 0;
}

.gift_item_ttl {
  display: flex;
  padding: 4rem 5rem;
  background: #f9f8f7;
  align-items: center;
}

.gift_item_ttl h2 {
  margin-left: 4rem;
  font-size: 3.2rem;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  color: #3d0b00;
}


@media screen and (max-width: 1024px) {
  .gift_item_contents {
    padding: 0 6%;
  }

  .gift_item_ttl {
    display: block;
    padding: 4rem 2rem;
    text-align: center;
  }

  .gift_item_ttl h2 {
    margin-left: 0;
    margin-top: 3rem;
  }
}

@media screen and (min-width: 769px) and (max-width:1024px) {}

@media screen and (max-width: 768px) {
  .gift_item_area {
    padding: 4rem 0;
  }

  .gift_item_wrapper {
    margin-top: 6rem;
  }

  .gift_item_ttl {
    padding: 2rem;
  }

  .gift_item_ttl h2 {
    font-size: 1.8rem;
    padding-top: 0;
    margin-top: 1rem;
  }

  .gift_item_contents {
    padding: 0;
  }

  .gift_item {
    padding-bottom: 1rem;
  }
}

.gift_detail_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  /* padding: 0 0 6rem; */
  /* margin-bottom: 4.6rem; */
}

@media screen and (max-width: 1024px) {
  .gift_detail_wrapper {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 0;
  }
}

.gift_details {
  flex: 1;
  max-width: 434px;
}

.gift_details.separate {
  max-width: initial;
  padding: 0 0 3rem;
}

.gift_details.separate+p {
  margin-block: 1rem 3rem;
}

.gift_details.separate+p img {
  width: 100%;
}

.gift_details .gift_heading {
  display: block;
  font-size: 2.2rem;
  line-height: 1.36;
  font-weight: bold;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #4e1100;
  line-height: 1.8;
}

.gift_details .gift_description {
  font-weight: 500;
  margin-block: 3rem 2rem;
}

.gift_details .gift_name {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.gift_details .gift_price {
  font-size: 2rem;
}

.gift_details .gift_price span {
  font-size: 1.8rem;
}

.gift_details .gift_types {
  font-size: 1.4rem;
  padding: 1rem 2rem;
  margin: 2rem 0;
  border: 1px solid #4e1100;
}

.gift_details .gift_types p {
  font-weight: 500;
}

.gift_item_area .btn {
  color: var(--white);
  max-width: 40%;
  font-size: 1.6rem;
  background: #4e1100;
  margin-inline: auto;
  text-align: center;
}

.gift_item_contents_inner {
  max-width: 900px;
  margin: 6rem auto 0;
}

.gift_item_contents_inner .comment_block {
  padding: 0;
}

@media screen and (max-width: 1024px) {
  .gift_details {
    width: 100%;
    max-width: 100%;
    margin-top: 2rem;
  }

  .gift_item_area .btn {
    border-radius: 4px;
    margin-block: 3rem 5rem;
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {

  .gift_details.separate {
    padding: 0 0 2rem;
  }

  .gift_details .gift_heading {
    font-size: 1.8rem;
  }

  .gift_details .gift_description {
    font-size: 1.6rem;
  }

  .gift_details .gift_name {
    font-size: 1.6rem;
  }

  .gift_details .gift_price {
    font-size: 1.6rem;
    text-align: right;
  }

  .gift_details .gift_price span {
    font-size: 1.6rem;
  }

  .gift_details .gift_types b {
    font-size: 1.6rem;
  }

  .gift_item_contents_inner {
    margin: 3rem auto 4rem;
    padding: 0 6%;
  }

  .gift_item_area .btn {
    margin-block: 3rem 1rem;
    max-width: 96%;
    font-size: 1.4rem;
    font-weight: 700;
  }
}


/* =========================================================
おすそわけプチギフト
========================================================= */
#petit_gift_area {
  position: relative;
  padding: 8rem 0;
  background: #e8d9b1;
}

#petit_gift_area .gift_item_ttl {
  padding: 0;
}

#petit_gift_area .gift_item_ttl h2 {
  margin: 0;
}

#petit_gift_area .gift_item_contents {
  max-width: 1000px;
  margin: 2rem auto;
}

.message {
  max-width: 1000px;
  margin: 2rem auto;
}

.message h3 {
  display: flex;
  font-family: "Noto Serif JP", serif;
  font-size: 2.8rem;
  position: relative;
  align-items: center;
  justify-content: space-around;
  padding-block: 1.2rem;
}

.message h3::before,
.message h3::after {
  position: absolute;
  content: "";
  background: #ac8d6b;
  width: 100px;
  height: 2px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.message h3::before {
  left: 0;
}

.message h3::after {
  right: 0;
}

.message div {
  background: #f9f8f7;
  margin-block: 2rem;
  padding: 2rem;
  border-radius: 10px;
}

.message div p {
  font-size: 1.8rem;
  font-weight: 500;
}

#petit_gift_area h4 {
  display: inline;
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: bold;
  padding-bottom: 1rem;
}

#petit_gift_area h4+p {
  position: relative;
  margin-top: 2rem;
}

#petit_gift_area h4+p::before {
  content: "";
  display: block;
  position: absolute;
  background: #ac8d6b;
  width: 100%;
  height: 2px;
  top: -2.4rem;
  right: 0;
  left: 0;
  margin-inline: auto;
}

#petit_gift_area .comment_block {
  align-items: center;
  margin: 0;
}

#petit_gift_area .txt_block {
  margin: 0;
}

#petit_gift_area .comment_block.plus .comment_block_heading {
  margin: 0;
}

@media screen and (min-width: 769px) and (max-width:1024px) {}

@media screen and (max-width: 768px) {
  #petit_gift_area {
    padding: 3rem 0 2rem;
  }

  #petit_gift_area .gift_item_contents {
    padding: 0;
  }

  .message h3 {
    font-size: 1.8rem;
    width: 96%;
    margin-inline: auto;
  }

  .message h3::before,
  .message h3::after {
    width: 14px;
    height: 2px;
  }

  .message div {
    margin-inline: 2rem;
    padding: 1.4rem;
  }

  .message div p {
    font-size: 1.4rem;
    font-weight: 500;
  }

  #petit_gift_area h4 {
    font-size: 1.6rem;
    padding: 0;
  }

  #petit_gift_area h4+p {
    margin-top: 1rem;
  }

  #petit_gift_area h4+p::before {
    top: -1rem;
  }

  #petit_gift_area .comment_block.re {
    flex-direction: column-reverse;
  }

  #petit_gift_area .comment_block.plus {
    align-items: center;
    margin: 0;
    padding: 1rem 2rem;
  }
}



/* =========================================================
店舗リスト
========================================================= */
#list {
  padding: 10rem 0 6rem;
}

@media screen and (max-width: 1024px) {
  #list {
    padding: 4rem 0 0;
  }
}

#list a span {
  font-size: 1.4rem;
}

.list_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 54px solid #531606;
  box-shadow: var(--shadow);
  padding-bottom: 10rem;
}

@media screen and (max-width: 1024px) {
  .list_wrapper {
    margin: 0 6%;
    padding-bottom: 4.4rem;
  }
}

.list_box {
  text-align: left;
}

.list_ttl {
  margin: 0 auto;
  max-width: 600px;
  display: block;
  border-radius: 10px;
  padding: 4.3rem 4rem 1.5rem;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.15em;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 1024px) {
  .list_ttl {
    font-size: 2.2rem;
    padding: 3rem 0;
  }
}

.list_caution {
  margin-top: 2rem;
  margin-bottom: 6rem;
}

@media screen and (max-width: 1024px) {
  .list_caution {
    margin-bottom: 4rem;
  }
}

@media screen and (max-width: 768px) {
  .list_caution {
    margin-top: 0;
    margin-bottom: 2rem;
  }
}

.list_caution p {
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .list_caution p {
    font-size: 1.4rem;
  }
}

.accordion {
  margin: 0 auto;
  max-width: 60vw;
  padding-bottom: 4rem;
}

@media screen and (max-width: 1024px) {
  .accordion {
    max-width: 100%;
    padding-bottom: 3rem;
  }
}

.accordion .toggle {
  display: none;
}

.accordion .toggle:checked+.title+.content {
  max-height: 5000px;
  transition: all 1.5s;
}

.accordion .toggle:checked+.title::before {
  transform: rotate(90deg) !important;
}

.accordion .option {
  position: relative;
  margin-bottom: 1em;
}

.accordion .title,
.accordion .content {
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.accordion .title {
  padding: 1rem 2rem;
  display: block;
  color: #ac8d6b;
  font-size: 2rem;
  font-weight: 600;
  background-color: #fff;
  border: solid 2px #ac8d6b;
}

.accordion .title:hover {
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .accordion .title {
    font-size: 1.4rem;
  }
}

.accordion .title::after,
.accordion .title::before {
  content: "";
  position: absolute;
  right: 3rem;
  top: 1.5rem;
  width: 2px;
  height: 2rem;
  background-color: #ac8d6b;
  transition: all 0.3s;
}

@media screen and (max-width: 768px) {

  .accordion .title::after,
  .accordion .title::before {
    top: 1.4rem;
  }
}

.accordion .title::after {
  transform: rotate(90deg);
}

.accordion .content {
  max-height: 0;
  overflow: hidden;
}

.accordion .content p {
  margin: 1rem 0;
  padding: 0.5em 1em 1em;
  /* font-size: 1em; */
  line-height: 1.5;
}

.area_ttl {
  color: #ac8d6b;
  font-weight: 800;
  font-size: 2rem;
  text-align: left;
  letter-spacing: 0.1em;
  border-bottom: dashed 2px #ac8d6b;
  padding: 1rem;
}

.gri {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 1rem;
  margin: 2rem 0;
}

@media screen and (max-width: 1024px) {
  .gri {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  .gri {
    grid-template-columns: 1fr;
  }
}

.area a {
  display: grid;
  justify-items: center;
  place-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  background-color: #d8b898;
  border-radius: 10px;
  padding: 1.5rem 1rem;
  text-decoration: none;
  color: #000;
  height: 100%;
  text-align: center;
}

.area a:hover {
  opacity: 0.8;
}

.others_list_wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 3rem;
  border: 2px solid #ac8d6b;
  border-radius: 13px;
}

@media screen and (max-width: 1024px) {
  .others_list_wrapper {
    padding: 2rem;
  }
}

.others_txt {
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .others_txt {
    font-size: 1.8rem;
    text-align: center;
  }
}

.others_list_box {
  display: flex;
  gap: 2rem;
}

@media screen and (max-width: 1024px) {
  .others_list_box {
    flex-direction: column;
  }
}

.others_list {
  display: flex;
  width: 33.3333333333%;
  gap: 2rem;
  border-right: 2px dotted #333;
  padding-right: 2rem;
}

@media screen and (max-width: 1024px) {
  .others_list {
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 0 0 2rem 0;
    border-right: none;
    border-bottom: 2px dotted #333;
    font-size: 1.6rem;
  }
}

.others_list:last-child {
  border-right: none;
  border-bottom: none;
}

/* header */
@media screen and (max-width: 1024px) {
  header .hamburger_nav .menu-icon {
    display: block;
    margin-right: 2rem;
  }

  header .hamburger_nav {
    display: block;
  }

  header .hamburger_nav ul.active {
    display: flex;
    z-index: 100;
    margin-top: 2.8rem;
    background-color: #ec6432;
    padding: 2rem 0;
  }

  header .footer_contents_right ul {
    display: flex;
  }

  header .hamburger_nav ul li {
    margin-right: 20px;
  }

  header .hamburger_nav ul {
    display: none;
    flex-direction: column;
    background-color: #444;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
  }

  header .hamburger_nav ul.active {
    display: flex;
    z-index: 100;
    margin-top: 2rem;
    background-color: #ec6432;
    padding: 2rem 0;
  }

  header ul#menuList.active a {
    display: block;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    font-size: 2rem;
    color: #fff;
    font-weight: bold;
  }

  header .openbtn1 {
    position: relative;
    background: #ec6432;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
  }

  header .openbtn1 span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    width: 45%;
  }

  header .openbtn1 span:nth-of-type(1) {
    top: 15px;
  }

  header .openbtn1 span:nth-of-type(2) {
    top: 23px;
  }

  header .openbtn1 span:nth-of-type(3) {
    top: 31px;
  }

  header .active.openbtn1 span {
    left: 12px;
  }

  header .active span:nth-of-type(1) {
    transform: rotate(45deg);
    width: 52%;
    top: 24px;
  }

  header .active span:nth-of-type(2) {
    opacity: 0;
  }

  header .active span:nth-of-type(3) {
    top: 24px;
    transform: rotate(-45deg);
    width: 52%;
  }

  header .hamburger_nav ul.active {
    display: flex;
    z-index: 100;
    margin-top: 2rem;
    background-color: #ec6432;
    padding: 2rem 0;
  }
}

/* footer */
.footer_flex {
  flex-direction: column;
  text-align: center;
  gap: 3rem;
}

/* =========================================================
バナー
========================================================= */

#bnr_area {
  background: url(../../img/bnr_bg.png) top center / cover;
}

#bnr_area .heading {
  font-size: 3rem;
  line-height: 1.3;
  margin-bottom: 3rem;
  font-weight: bold;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}

#bnr_area .fl_j_c {
  gap: 2.5rem;
}

#bnr_area .fl_j_c+.heading {
  margin-top: 6rem;
}

#bnr_area .bnr_wrap {
  width: 500px;
  margin: 2rem auto;
}

@media screen and (max-width: 768px) {
  #bnr_area .heading {
    font-size: 1.6rem;
  }

  #bnr_area .fl_j_c {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  #bnr_area .fl_j_c+.heading {
    margin-block: 3rem 1.4rem;
  }

  #bnr_area .bnr_wrap {
    width: 100%;
    margin: 1rem auto;
  }
}

/* =========================================================
Pick Up 共通
========================================================= */

#pickup {
  padding: 10rem 0 6rem;
}

@media screen and (max-width: 1024px) {
  #pickup {
    padding: 8rem 0 0;
  }
}

#pickup a span {
  font-size: 1.4rem;
}

.pickup_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 54px solid #531606;
  box-shadow: var(--shadow);
  padding-bottom: 10rem;
}

@media screen and (max-width: 1024px) {
  .pickup_wrapper {
    margin: 0 6%;
    padding-bottom: 1.5rem;
  }
}

.pickup_box {
  text-align: left;
}

.pickup_ttl {
  margin: 0 auto;
  max-width: 600px;
  display: block;
  border-radius: 10px;
  padding: 4.3rem 4rem 1.5rem;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 1024px) {
  .pickup_ttl {
    font-size: 2.2rem;
    padding: 3rem 0;
  }
}

.pickup_caution {
  margin-top: 2rem;
  margin-bottom: 6rem;
}

@media screen and (max-width: 1024px) {
  .pickup_caution {
    margin-bottom: 4rem;
  }
}

@media screen and (max-width: 768px) {
  .pickup_caution {
    margin-top: 0;
    margin-bottom: 2rem;
  }
}

.pickup_caution p {
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .pickup_caution p {
    font-size: 1.4rem;
  }
}


#pickup {
  padding: 3rem 0 0 0;
}

.pickup_ttl {
  position: relative;
  font-family: "Noto Serif JP", serif;
}

.pickup_ttl span {
  font-size: 2.2rem;
  line-height: 5.4rem;
}

.bird03 {
  position: absolute;
  top: 50%;
  left: 0;
}

.bird04 {
  position: absolute;
  top: 50%;
  right: 0;
}

/*  タブ  */
.tab-container {
  max-width: 900px;
  margin: 4rem auto 0 auto;
}

.tab-item {
  width: calc(100%/7);
  height: 30px;
  line-height: 30px;
  text-align: center;
  display: block;
  float: left;
  flex-wrap: nowrap;
  color: #ac8d6b;
  font-weight: bold;
  border-right: solid 2px #ac8d6b;
}

.tab-container .tab-item:nth-child(14) {
  border-right: 0px;
}

input[name="tab-item"] {
  display: none;
}

/* タブ切り替え */
.tab-content {
  display: none;
  padding: 4rem 0;
  overflow: hidden;
  clear: both;
  text-align: center;
}

/* コンテンツ表示 */
#a:checked~#a-content,
#b:checked~#b-content,
#c:checked~#c-content,
#d:checked~#d-content,
#e:checked~#e-content,
#f:checked~#f-content,
#g:checked~#g-content {
  display: block;
}

/* 選択タブ */
.tab-container input:checked+.tab-item {
  position: relative;
  padding: 10px 0;
  top: -10px;
  height: 50px;
  background-color: #ac8d6b;
  color: #fff;
  left: -2px;
}

#pickup h4 {
  position: relative;
  padding: 3rem 0 0 4rem;
  letter-spacing: 0.1em;
  color: #ac8d6b;
  font-weight: bold;
  font-size: 2.6rem;
  text-align: left;
  border-top: solid 2px #ac8d6b;
}

#pickup h4:before {
  position: absolute;
  content: '';
  top: 4.2rem;
  left: 1rem;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #ac8d6b;
}

.tab_ttl_box {
  vertical-align: middle;
  background-color: #ac8d6b;
  padding: 2rem;
  color: #FFF;
  margin-top: 4rem;
  font-size: 2rem;
}

.tab_ttl_container {
  display: flex;
  column-gap: 2rem;
}

.tab_ttl_container p {

  font-weight: bold;
}

.tab_box {
  background-color: #FFF;
  padding: 2rem;
}

.access_btn a {
  position: relative;
  border: solid 1px #FFF;
  top: -2.5px;
  padding: 0.7rem 1.2rem;
  text-decoration: none;
  color: #FFF;
  font-size: 1.2rem;
}

.access_btn a:before {
  position: absolute;
}

.access_btn a:hover {
  background-color: #fff;
  color: #000;
}

.tab_box_p {
  width: 100%;
  /*max-width: 800px;*/
  padding: 2rem 0 2rem 0;
  font-size: 1.6rem;
  line-height: 32px;
  text-align: left;
}

.tab_box_ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.tab_box_ul li {
  width: 50%;
  padding: 2% 2%;
}

.box_pickshop {
  position: relative;
  margin: 4.5rem 0 2rem 0;
}

.box_pickshop h5 {
  display: inline-block;
  position: absolute;
  padding: 0px 15px;
  top: -18px;
  left: calc(50% - 150px);
  background: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
}

.box_pickshop_inner {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  width: calc(100% - 6rem);
  max-width: 800px;
  padding: 4.5rem 3rem 3rem 4rem;
  border: 2px solid #ddd;
}

.box_pickshop_inner img {
  width: 40%;
  height: 100%;
}

.box_pickshop_inner table {
  width: calc(60% - 3rem);
  margin-left: 3rem;
  text-align: left;
}

.box_pickshop_inner table tr th {
  padding: 0.8rem 0 0.8rem 0;
  vertical-align: top;
  line-height: 3.2rem;
  font-size: 2rem;
  border-bottom: 2px solid #ac8d6b;
}

.box_pickshop_inner table tr th span {
  display: block;
  font-size: 1.4rem;
}

.box_pickshop_inner table tr td p {
  font-size: 1.8rem;
}

.box_pickshop_inner table tr td a {
  display: block;
  width: 90%;
  margin: 1rem auto 0 0;
  padding: 1.5rem 0 1.5rem 2rem;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  background: #531606;
  position: relative;
}

.box_pickshop_inner table tr td a span {
  display: inline-block;
  position: absolute;
  top: 1.4rem;
  right: 1rem;
  transition: all 0.3s;
}

.box_pickshop_inner table tr td a span img {
  width: 100%;
}

.box_pickshop_inner table tr td a:hover span {
  right: 0.4rem;
}


.tab_box ul li {
  list-style-type: none;
  font-size: 1.4rem;
  line-height: 1.4;
}

.p_note {
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: left;
  padding: 2rem;
}


@media screen and (max-width: 750px) {

  .pickup_ttl {
    font-size: 2.1rem;
    padding: 2rem 0;
  }

  .pickup_ttl span {
    font-size: 1.7rem;
    line-height: 4rem;
  }

  .tab-container {
    padding: 0 0;
    margin: 1rem auto 0 auto;
  }

  .tab-item {
    width: calc(91.8%/3);
    height: 40px;
    line-height: 40px;
    margin: 0.7%;
    font-size: 1.2rem;
    border: solid 2px #ac8d6b;
  }

  .tab-item:nth-child(14) {
    border-right: solid 2px #ac8d6b !important;
  }

  .tab-item:nth-child(2),
  .tab-item:nth-child(8),
  .tab-item:nth-child(14) {
    margin-left: 2.5%;
  }

  .tab-item:nth-child(12),
  .tab-item:nth-child(24) {
    margin-right: 2%;
  }


  /* 選択タブ */
  .tab-container input:checked+.tab-item {
    position: relative;
    padding: 0;
    top: 0px;
    height: 40px;
    background-color: #ac8d6b;
    color: #fff;
    left: 0px;
  }


  .tab_ttl_container p {
    font-size: 1.4rem;
  }

  .tab_box {
    background-color: #FFF;
    padding: 1.5rem;
    padding-bottom: 0.5rem !important;
  }

  .tab-content {
    padding: 3rem 0;
  }

  #pickup h4 {
    padding: 2.3rem 0 0 3.2rem;
    font-size: 1.8rem
  }

  #pickup h4:before {
    top: 3.2rem;
    left: 1.1rem;
    border-width: 7px 0 7px 12px;
  }

  .tab_ttl_box {
    vertical-align: middle;
    background-color: #ac8d6b;
    padding: 1rem 0 0.3rem 2rem;
    margin-top: 2.5rem;
    line-height: 3.5rem;
    font-size: 2rem;
  }

  .tab_box {
    background-color: #FFF;
    padding: 2rem;
  }

  .tab_ttl_container {
    column-gap: 1.1rem;
  }

  .access_btn a {
    border: solid 1px #FFF;
    top: -5px;
    padding: 0.6rem 0.6rem 0.6rem 0.4rem;
    font-size: 1.05rem;
  }

  .access_btn a:before {
    position: absolute;
  }

  .tab_box_p {
    width: 100%;
    /*max-width: 800px;*/
    padding: 1rem 0 1.2rem 0;
    font-size: 1.5rem;
    line-height: 28px;
    text-align: left;
  }

  .tab_box_ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }

  .tab_box_ul li {
    width: 50%;
    padding: 2% 0%;
  }

  .tab_box_ul li:nth-child(1),
  .tab_box_ul li:nth-child(3) {
    padding-right: 2%;
  }

  .tab_box_ul li:nth-child(2),
  .tab_box_ul li:nth-child(4) {
    padding-left: 2%;
  }

  .box_pickshop {
    position: relative;
    margin: 3.5rem 0 0 0;
  }

  .box_pickshop h5 {
    padding: 0px 15px;
    top: -12px;
    left: calc(50% - 120px);
    font-size: 1.6rem;
  }

  .box_pickshop_inner {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
    padding: 3rem 0 2.5rem 0;
    border-width: 1.5px;
    border-right: none;
    border-left: none;
  }

  .box_pickshop_inner img {
    width: 30%;
    height: 100%;
  }

  .box_pickshop_inner table {
    width: calc(70% - 1rem);
    margin-left: 1rem;
  }

  .box_pickshop_inner table tr th {
    padding: 0 0 0.8rem 0;
    vertical-align: top;
    line-height: 2.2rem;
    font-size: 1.6rem;
  }

  .box_pickshop_inner table tr th span {
    display: block;
    color: #8E8E8E;
    font-size: 1.3rem;
  }

  .box_pickshop_inner table tr td p {
    padding: 0.5rem 0;
    font-size: 1.4rem;
  }

  .box_pickshop_inner table tr td a {
    width: 100%;
    margin: 0.3rem auto 0 auto;
    padding: 1rem;
    font-size: 1.2rem;
    border-radius: 6px;
  }

  .box_pickshop_inner table tr td a span {
    top: 0.6rem;
  }

  .tab_box ul li {
    list-style-type: none;
    font-size: 1.1rem;
    line-height: 1.4;
  }

  .p_note {
    font-size: 1.4rem;
    line-height: 1.4;
    padding: 1rem 2rem 0 2rem;
  }

}