@charset "utf-8";

:root {
  /* 色管理用の変数 */
  --black-color: #371e0f;
  --white-color: #fff;
  --brown-color: #623013;
  --brown-color02: #ddc6ab;
  --primary-color: #f2eee2;
  --accent-color: #126a3b;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 760px;
  --content-width: 960px;
  --content-width-lg: 1088px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-page-top: 50;
  --z-index-header: 100;
  --z-index-menu: 150;
}

/* ---------- base ---------- */
html {
  height: 100%;
  background-color: var(--primary-color);
  font-size: 62.5%;
}

body {
  color: var(--black-color);
  font-size: 1.6rem;
  font-family: "Julius Sans One", sans-serif;
  font-family: "Kaisei Opti", serif;
  font-family: "Kiwi Maru", serif;
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Noto Serif JP", serif;
  height: 100%;
  line-height: 1.75;
}

.wrap_original {
  overflow: hidden;
}

/* ---------- utility ---------- */

/* ---------- layout ---------- */

.l_contents {
  padding-top: 80px;
}

.l_container-lg {
  width: 100%;
  margin: 0 auto;
}

.l_container-sm {
  max-width: calc(var(--content-width-sm) + 32px);
}

.l_container {
  max-width: calc(var(--content-width) + 32px);
}

.l_container-lg {
  max-width: calc(var(--content-width-lg) + 32px);
}

.l_header {
  height: 80px;
  width: 100%;
  padding: 16px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: var(--z-index-menu);
  position: fixed;
  top: 0px;
  left: 0;
}

@media screen and (min-width: 1080px) {
  .l_header {
    height: 130px;
  }
}

.l_header-nav {
  display: none;
}

@media screen and (min-width: 1080px) {
  .l_header-nav {
    display: inline-block;
  }
}

@media screen and (min-width: 1080px) {
  .l_header-nav_item {
    font-family: Kiwi Maru;
  }
}

@media screen and (min-width: 1080px) {
  .l_header-nav_list {
    display: flex;
  }
}

.l_header-nav_link {
  writing-mode: vertical-rl;
  line-height: 3;
  font-size: 1.7rem;
}

.l_header-logo {
  width: 100%;
}

.l_header-logo {
  position: relative;
  width: 100%;
  max-width: 300px;
}

.l_header-logo::before {
  padding-top: 56.25%;
  display: block;
  content: "";
}

.l_header-logo img {
  position: absolute;
  top: 55%;
  left: 25%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
}

@media screen and (min-width: 1080px) {
  .l_header-logo img {
    left: 50%;
  }
}
/* ---------- module ---------- */

.hamburger-menu {
  width: 50px;
  height: 50px;
  position: relative;
  border: none;
  background: transparent;
  appearance: none;
  padding: 0;
  cursor: pointer;
}

@media screen and (min-width: 1080px) {
  .hamburger-menu {
    display: none;
  }
}

.hamburger-menu__bar {
  display: inline-block;
  width: 44%;
  height: 2px;
  background: #371e0f;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.5s;
}

.hamburger-menu__bar:first-child {
  top: 16px;
}

.hamburger-menu__bar:nth-child(2) {
  top: 24px;
}

.hamburger-menu__bar:last-child {
  top: 32px;
}

.hamburger-menu--open .hamburger-menu__bar {
  top: 50%;
}

.hamburger-menu--open .hamburger-menu__bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.hamburger-menu--open .hamburger-menu__bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
  display: none;
}

@media screen and (max-width: 1080px) {
  .navigation {
    display: none;
    background: #371e0f;
    position: absolute;
    top: 70px;
    right: 0;
    width: 300px;
    z-index: 9999;
  }
  .navigation__list {
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .navigation__list-item {
    border-bottom: solid 1px #474747;
  }

  .navigation__list-item:first-child {
    border-top: solid 1px #474747;
  }

  .navigation__link {
    color: #fff;
    font-family: Kiwi Maru;
    font-size: 1.7rem;
    text-decoration: none;
    display: block;
    padding: 16px 0;
    transition: 0.5s;
  }
}

@media screen and (min-width: 1080px) {
  .navigation__link {
    writing-mode: vertical-rl;
    margin: 0 18px;
    font-family: kiwi Maru;
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1080px) {
  .navigation {
    display: block;
    background: none;
    position: absolute;
    top: 10px;
    right: 0;
    z-index: 0;
  }
}

@media screen and (min-width: 1080px) {
  .navigation__list {
    display: flex;
  }
}

@media (hover: hover) and (pointer: fine) {
  .navigation__link:hover {
    color: var(--accent-color);
  }
}

.m_top_btn {
  font-family: Kaisei Opti;
  position: relative;
  position: fixed;
  box-shadow: 0px 2px 2px 0px #dedede;
  background: #fff;
  border-radius: 45px 0px 0px 45px;
  top: 520px;
  right: 0;
  padding: 5px 10px;
  width: 170x;
  height: 50px;
  z-index: var(--z-index-menu);
}

.m_top_btn::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../img/calendar.png);
  background-size: contain;
  vertical-align: middle;
}

.top_news {
  margin-top: 130px;
  padding-bottom: 80px;
  background-color: #f1e9d3;
}

@media screen and (min-width: 1080px) {
  .top_news {
    padding-bottom: 150px;
  }
}

.top_news_items {
  display: flex;
  margin-left: 10%;
  position: relative;
  margin-bottom: 20px;
}

@media screen and (min-width: 1080px) {
  .top_news_items {
    margin-left: 20%;
  }
}

.top_news_item {
  position: relative;
}

@media screen and (min-width: 1080px) {
  .top_news_article::after {
    content: "";
    display: block;
    width: 700px;
    height: 0.5px;
    background-color: #1d1d1d;
    position: absolute;
    left: 0px;
    top: 40px;
  }
}

.top_news_item {
  padding-left: 23px;
}

@media screen and (min-width: 1080px) {
  .top_news_item {
    display: flex;
  }
}

.top_news_date {
  font-family: Noto Sans JP;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media screen and (min-width: 1080px) {
  .top_news_date {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1080px) {
  .top_news_date {
    box-sizing: border-box;
    padding-right: 170px;
  }
}

.top_news_article {
  font-family: Kiwi Maru;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media screen and (min-width: 1080px) {
  .top_news_article {
    font-size: 1.8rem;
  }
}

.top_news_items_img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  object-position: 100% 50%;
}

@media screen and (min-width: 1080px) {
  .top_news_items_img {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .top_recommandation .top_info {
    margin: 0 16px;
  }
}

.m_section-title {
  padding-bottom: 70px;
}

.m_section-title_sub {
  color: #623013;
  text-align: center;
  font-family: Julius Sans One;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-bottom: 11px;
}

@media screen and (min-width: 1080px) {
  .m_section-title_sub {
    font-size: 5rem;
  }
}

.m_section-title_main {
  color: #623013;
  text-align: center;
  font-family: Kaisei Opti;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media screen and (min-width: 1080px) {
  .m_section-title_main {
    font-size: 2.4rem;
  }
}

.m_section-title_main::before {
  content: "";
  border: solid 1;
  width: 24px;
}

.m_news_btn-wrapper {
  width: 70px;
  height: 70px;
  padding-top: 15px;
  padding-left: 15px;
  position: absolute;
  right: 8%;
  background-color: rgb(87, 124, 87);
  border-radius: 51% 52% 56% 44% / 46% 40% 61% 49%;
  line-height: 0;
}

@media screen and (min-width: 1080px) {
  .m_news_btn-wrapper {
    right: 10%;
  }
}

.m_news_btn {
  color: #fff;
  font-family: "Julius Sans One", sans-serif;
  font-size: 1.1rem;
  line-height: normal;
}

.m_news_btn-wrapper:hover {
  background: rgb(53, 100, 53);
  color: #ffffff;
}

.m_news_arrow {
  position: relative;
  width: 28px;
  margin-top: 16px;
}
.arrow01 {
  height: 1px;
  background-color: #fff;
}
.arrow02 {
  position: absolute;
  top: 0;
  right: 0;
  transform-origin: right bottom;
  width: 5px;
  height: 1px;
  background-color: #fff;
  transform: rotate(45deg);
}

/* ------おすすめ-------- */
.recommendation_items {
  margin: 0 auto;
  max-width: 90%;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* フェードイン用のCSS */
.slide-bottom {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.3s 0s ease-out;
}
/* -------------------- */

.flex-item {
  display: flex;
}

.flex-item_new::before {
  content: ""; /*何も入れない*/
  display: inline-block;
  width: 50px; /*画像の幅*/
  height: 50px; /*画像の高さ*/
  background-image: url(../img/new.png);
  background-size: contain;
  vertical-align: middle;
  margin: 5px;
}

.flex-item_pickup::before {
  content: ""; /*何も入れない*/
  display: inline-block;
  width: 50px; /*画像の幅*/
  height: 50px; /*画像の高さ*/
  background-image: url(../img/pickup.png);
  background-size: contain;
  vertical-align: middle;
  margin: 5px;
}

/* // 最後の要素以外に余白を追加 */
.flex-item:not(:last-child) {
  margin-bottom: 50px;
}
/* // 反対バージョンを作る場合はoddをevenに変更する */
.flex-item:nth-child(odd) {
  flex-direction: row-reverse;
}
/* // 画像 */
.flex-item__img {
  width: 38%;
  align-items: center;
}
.flex-item__img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
/* // テキスト */
.flex-item__txt {
  width: 58%;
  background: rgba(255, 255, 255, 0.54);
  padding: 20px 10px;
}
.flex-item__txt h4 {
  font-size: 18px;
  font-family: Kaisei Opti;
  padding: 10px 0;
}
.flex-item__txt p {
  font-size: 16px;
  line-height: 1.5;
  font-family: Kiwi Maru;
}
/* // レスポンシブ */
@media screen and (max-width: 767px) {
  .flex-item {
    flex-direction: column;
    align-items: center;
  }
  .flex-item:nth-child(odd) {
    flex-direction: column;
  }
  .flex-item__img {
    width: 100%;
  }
  .flex-item__txt {
    width: 100%;
  }
}
/* ---------- animation ---------- */
/* コンテナー */
.container {
  max-width: 900px;
  margin: 0 auto;
}

/* スライダーのwrapper */
.infinite-slider .swiper-wrapper {
  transition-timing-function: linear;
}

/* スライド */
.infinite-slider .swiper-slide {
  height: 320px !important; /* 高さを指定 */
  width: auto !important;
}

/* スライド内の画像 */
.infinite-slider .swiper-slide img {
  width: 450px;
  height: 100%;
}

.swiper-slide-img {
  width: 100%;
  object-fit: cover;
}

/* スクロール後の色変化 */
.l_header.change-color {
  background-color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
}

/* ---------- .top_kv ---------- */

@media screen and (min-width: 1080px) {
  .swiper-slide {
    margin-top: 30px;
  }
}

.top_kv_copy {
  color: #fff;
  font-size: 1.2rem;
  font-family: Kiwi Maru;
  background-color: rgba(98, 48, 19, 0.7);
  width: 156px;
  height: 156px;
  padding: 30px;
  line-height: 2;
  position: absolute;
  top: 360px;
  writing-mode: vertical-rl;
  z-index: 20;
}

.top_kv_box {
  margin-bottom: 64px;
}

@media screen and (min-width: 1080px) {
  .top_kv_copy {
    display: none;
  }
}

.swiper-slide img {
  border-radius: 30px;
  padding: 0 7px;
}

.swiper-wrapper {
  height: 323px;
}

.top_product_list {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr)); /* 最初は1列 */
}

@media (min-width: 768px) {
  .top_product_list {
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* 768px以上で2列 */
  }
}

@media (min-width: 1080px) {
  .top_product_list {
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* 1080px以上で3列 */
  }
}

.top_product_items {
  margin: 30px;
}

.top_product-inner {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.17);
  width: 100%; /* 画像の幅 */
  position: relative; /* スタッキングコンテキストを作成 */
  flex-shrink: 0;
  margin: 0 auto;
}

.top_product-label-decoration,
.top_product-label-petitgateau,
.top_product-label-gateau,
.top_product-label-gift,
.top_product-label-cream_puff {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  font-family: "Kaisei Opti";
  font-size: 2.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  white-space: nowrap;
  z-index: 1; /* テキストを手前に配置 */
}

@media screen and (min-width: 1080px) {
  .top_product-label-decoration,
  .top_product-label-petitgateau,
  .top_product-label-gateau,
  .top_product-label-gift,
  .top_product-label-cream_puff {
    font-size: 3.2rem;
  }
}

.top_product-label-original {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  font-family: "Kaisei Opti";
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  z-index: 1; /* テキストを手前に配置 */
}

.top_Instagram-title {
  text-align: center;
  font-family: Kiwi Maru;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 500;
  padding-bottom: 35px;
  margin-top: 120px;
}

.top_Instagram {
  display: flex;
  justify-content: center;
  padding: 0 16px;
}

.top_info-inner {
  position: relative;
}

@media screen and (min-width: 1080px) {
  .top_info-inner {
    padding-bottom: 203px;
  }
}

.top_info_img {
  padding: 0 16px;
}

@media screen and (min-width: 1080px) {
  .top_info_img {
    width: 779px;
  }
}

@media screen and (min-width: 1080px) {
  .top_info_img-wrapper {
    display: flex;
  }
}

.top_info_txt {
  color: #371e0f;
  font-family: Kiwi Maru;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 30px 16px 150px 16px;
  text-align: justify;
}

@media screen and (min-width: 1080px) {
  .top_info_txt {
    margin: 0;
    padding-left: 20px;
    font-size: 2rem;
  }
}

.m_guide_btn-wrapper {
  width: 70px;
  height: 70px;
  padding-top: 15px;
  padding-left: 15px;
  position: absolute;
  bottom: -80px;
  right: 40px;
  background-color: rgb(87, 124, 87);
  border-radius: 51% 52% 56% 44% / 46% 40% 61% 49%;
  line-height: 0;
}

@media screen and (min-width: 1080px) {
  .m_guide_btn-wrapper {
    bottom: 300px;
  }
}

.m_guide_btn {
  color: #fff;
  font-family: "Julius Sans One", sans-serif;
  font-size: 1.1rem;
  line-height: normal;
}

.m_guide_btn-wrapper:hover {
  background: rgb(53, 100, 53);
  color: #ffffff;
  margin-left: 3px;
  margin-top: 3px;
  box-shadow: none;
}

.m_guide_arrow {
  position: relative;
  width: 28px;
  margin-top: 16px;
}

.top_info-title {
  color: #371e0f;
  font-family: Noto Sans JP;
  font-size: 2.4rem;
  /* margin-top: 182px; */
  text-align: center;
  padding-bottom: 40px;
}

@media screen and (min-width: 1080px) {
  .top_info-inner {
    display: flex;
  }
}

.top_info_payment_img-wrapper {
  text-align: center;
}

.top_info_payment_img {
  padding: 0 16px;
  padding-bottom: 80px;
  max-width: 80%;
}

.top_info_calendar-item {
  display: flex;
  justify-content: center;
}

.top_info_calendar {
  width: 273px;
  height: 182px;
  flex-shrink: 0;
}

/* ---------- .footer ---------- */
/* 半透明の背景要素を追加 */
footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(244, 236, 218, 0.3);
  z-index: -1;
}

footer {
  font-family: Kiwi Maru;
  color: #000;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 2rem;
  height: 100%;
  background: url(../img/footer-cp.jpg) no-repeat bottom / contain;
  background-size: cover;
  background-position: center, center;
  position: relative; /* 要素の重なりを設定 */
}

footer ul {
  padding: 0;
  list-style: none;
}

footer a {
  color: #060606;
  text-decoration: none;
}

footer a:hover {
  color: #000;
}

hr {
  height: 1px;
  border: 0;
  border-top: 1px solid #e5e7eb;
}

address {
  font-style: normal;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.footer__navi-heading {
  font-weight: 600;
}

.footer__logo-link {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer__logo-img-wrapper {
  width: 123px;
}
.footer__logo-img {
  width: 100%;
}

.footer__navi li {
  margin-bottom: 0.75rem;
}

.footer__address {
  margin-bottom: 2rem;
}

.footer__address a {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .md-flex {
    display: flex;
  }

  .md-justify-between {
    justify-content: space-between;
  }

  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer__address a {
    text-decoration: none;
    pointer-events: none;
  }
}

@media (min-width: 1024px) {
  .lg-flex {
    display: flex;
  }
}

.copyright {
  text-align: center;
}

/* -----------calendar-------------- */
.top_info_calendar-list {
  margin-bottom: 80px;
}

@media screen and (min-width: 1080px) {
  .calendar-table {
    display: flex;
  }
}

/* -----------sp左幅-------------- */
@media screen and (max-width: 1079px) {
  .top_news_items {
    margin-left: 0;
    padding: 0 16px;
  }
}

@media screen and (max-width: 1079px) {
  .top_news_item {
    padding-left: 8px;
  }
}