@charset "UTF-8";
/*** ヘッダ（共通） ***/
header.fs-l-header {
  display: block;
  padding: 0;
  height: 70px;
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--fs-color-page__background);
}
/* 固定ヘッダー時アンカーリンクの位置を調整 */
.anchor {
  padding-top: 70px;
  margin-top: -70px;
}
.fs-l-header__contents {
  height: 100%;
  padding: 0 24px;
  -ms-grid-rows: 100%;
  grid-template-rows: 100%;
  -ms-grid-columns: 1fr 150px 1fr;
  grid-template-columns: 1fr 150px 1fr;
}
.fs-l-header__contents > * {
  padding: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
.header_contents_left {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  grid-column: 1;
  justify-content: flex-start;
}
.header_contents_center {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 2;
  grid-column: 2;
  justify-content: center;
}
.header_contents_right {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 3;
  grid-column: 3;
  justify-content: flex-end;
}
header .openbtn {
  position: relative;
  cursor: pointer;
  z-index: 150;
  width: 45px;
  height: 45px;
}
header .openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  height: 1px;
  background-color: var(--fs-color-font--main);
}
header .openbtn span:nth-of-type(1) {
  top: 13px;
  width: 75%;
}
header .openbtn span:nth-of-type(2) {
  bottom: 13px;
  width: 100%;
}
header .openbtn.active span:nth-of-type(1) {
  top: 24px;
  transform: rotate(45deg);
  width: 100%;
}
header .openbtn.active span:nth-of-type(2) {
  bottom: 20px;
  transform: rotate(-45deg);
  width: 100%;
}
.nav_text {
  margin-bottom: 43px;
}
.nav_text_en {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 3.5rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.nav_text_jp {
  margin-left: 23px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
#toggleMenu .nav_icon_menu {
  margin-top: 70px;
}
.nav_icon_menu {
  display: flex;
}
.nav_icon {
  position: relative;
  padding: 12px;
}
.link_img {
  display: inline-block;
  width: 30px;
  text-align: center;
}
.header_contents_right .nav_icon {
  margin-left: 10px;
  margin-right: 0;
}
#toggleMenu nav .nav_icon {
  margin-left: 0;
  margin-right: 10px;
}
#toggleMenu {
  display: none;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background: var(--fs-color-page__background);
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  overflow-y: scroll;
}
.toggleMenu_bg_wrapper {
  display: grid;
  grid-template-columns: 67% auto;
  grid-template-rows: 100vh;
}
.toggleMenu_bg_color {
  grid-column: 1;
}
.toggleMenu_bg_image {
  grid-column: 2;
  /*background-image: url(https://andmel.itembox.design/item/mel2207/images/common/bg_nav.png);*/
  background-image: url(https://andmel.itembox.design/item/mel2207/images/common/bg_nav_cookiecollection.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: fixed;
  width: 33%;
  height: 100vh;
  right: 0;
}
#toggleMenu nav {
  margin-top: calc(-100vh + 70px);
  padding: 110px 70px;
  text-align: left;
}
@media screen and (max-width: 575.98px) {
  .toggleMenu_bg_image {
    display: none;
  }
  #toggleMenu nav {
    padding: 40px;
  }
  .nav_text {
    margin-bottom: 30px;
  }
}
/*** フローティングメニュー ***/
#floatingMenu {
  position: fixed;
  right: 0;
  bottom: 0;
  display: flex;
  z-index: 100;
  opacity: 0;
  transform: translateY(-100px);
}
.floatingMenu_item {
  height: 100px;
}
.floatingMenu_item a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 43px;
}
.floatingMenu_item_lineup {
  background: var(--fs-color-subcolor1);
  border-bottom: 7px solid var(--fs-color-maincolor);
}
.floatingMenu_item_faq {
  background: #a29677;
  border-bottom: 7px solid #5c5453;
}
.floatingMenu_item_text {
  margin-left: 15px;
  color: var(--fs-color-subcolor1__font);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: 0.8em;
}
@media screen and (max-width: 767.98px) {
  #floatingMenu {
    width: 100%;
  }
  .floatingMenu_item {
    width: 50%;
  }
  .floatingMenu_item a {
    padding: 0 10px;
  }
}
@media screen and (max-width: 575.98px) {
  .floatingMenu_item {
    height: 70px;
  }
  .floatingMenu_item_icon {
    width: 1.4rem;
  }
  .floatingMenu_item_text {
    margin-left: 10px;
    font-size: 1.2rem;
    letter-spacing: 0.7em;
  }
}
/*** フッタ（共通） ***/
.fs-l-footer {
  margin-top: 200px;
  padding-top: 80px;
  padding-bottom: 80px;
  border-top: 1px solid #ba968c;
  background: inherit;
  color: var(--fs-color-font--main);
}
.fs-l-footer a {
  color: var(--fs-color-font--link);
}
.fs-l-footer__contents {
  padding: 0 24px;
  display: grid;
  -ms-grid-rows: auto 380px auto;
  grid-template-rows: auto 330px auto;
  -ms-grid-columns: 50% 50%;
  grid-template-columns: 50% 50%;
  grid-row-gap: 50px;
}
#ftr_logo {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  grid-column: 1;
}
.ftr_link_icon {
  transform: translateX(-12px);
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  grid-column: 1;
}
.mel_f_about_link {
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 2;
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
}
.mel_f_about_link ul {
  margin: 0 40px;
}
.mel_f_about_link ul:first-child {
  margin-bottom: -32px;
}
.mel_f_about_link ul:last-child {
  margin-right: 0;
}
.mel_f_about_link a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 3;
  letter-spacing: 0.2em;
  white-space: nowrap;
}
#ftr_copyright {
  -ms-grid-row: 3;
  grid-row: 3;
  -ms-grid-column: 1;
  grid-column: 1;
}
#ftr_copyright small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
}
.fs-p-footerPageTop {
  position: fixed;
  bottom: 120px;
}
.fs-l-footer a.fs-p-footerPageTop__link {
  background-color: var(--fs-color-subcolor1);
  opacity: 0.8;
  border-radius: 50%;
}
/*** 文字有のアイコンリンク ***/
.nav_icon_withText a::after {
  margin-left: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.2em;
  vertical-align: middle;
}
#nav_official_instagram.nav_icon_withText a::after {
  content: "OFFICIAL INSTAGRAM";
}
#nav_official_twitter.nav_icon_withText a::after {
  content: "OFFICIAL X（旧Twitter）";
}
#nav_official_line.nav_icon_withText a::after {
  content: "OFFICIAL LINE";
}
#nav_login.nav_icon_withText a::after {
  content: "LOG IN";
}
@media screen and (max-width: 575.98px) {
  .fs-l-footer__contents {
    -ms-grid-rows: auto 380px auto;
    grid-template-rows: auto auto auto 80px;
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 100%;
    grid-row-gap: 50px;
  }
  .mel_f_about_link {
    -ms-grid-row: 3;
    grid-row: 3;
    -ms-grid-column: 1;
    grid-column: 1;
  }
  .mel_f_about_link ul {
    margin: 0;
  }
  .mel_f_about_link ul:first-child {
    margin-bottom: 0;
  }
  #ftr_copyright {
    -ms-grid-row: 4;
    grid-row: 4;
  }
  .nav_icon_withText a::after {
    font-size: 1.5rem;
  }
}
/*** main（共通） ***/
.fs-c-panel {
  margin-top: 20px;
}
.heading_h2 {
  text-align: center;
  margin: 30px;
}
.heading_h2 > span {
  display: block;
}
.heading_h2_en,
.fs-c-heading--page {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 6rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.fs-c-heading--page.heading_jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 4rem;
}
.heading_h2_jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.4em;
}
.fs-c-heading--page {
  margin-top: 70px;
  margin-bottom: 30px;
  padding: 0;
  border-bottom: none;
  color: #a58c8c;
}
.button_white_rounded_corners,
.button_beige_rounded_corners {
  display: block;
  margin: 50px auto 0;
  text-align: center;
  max-width: 100%;
  width: 387px;
  height: 73px;
  border-radius: 37px;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 73px;
  letter-spacing: 0.8em;
  box-shadow: 0 0 20px rgb(0, 0, 0, 0.1);
}
.button_beige_rounded_corners {
  background: #cbc3b5;
  color: #fff !important;
}
.button_white_rounded_corners img,
.button_beige_rounded_corners img {
  vertical-align: middle;
  margin-right: 35px;
}
@media screen and (max-width: 767.98px) {
  .button_white_rounded_corners,
  .button_beige_rounded_corners {
    height: 60px;
    line-height: 60px;
    font-size: 1.6rem;
    letter-spacing: 0.7em;
  }
  .button_white_rounded_corners img,
  .button_beige_rounded_corners img {
    margin-right: 16px;
    width: 25px;
  }
}
@media screen and (max-width: 575.98px) {
  .heading_h2_en,
  .fs-c-heading--page {
    font-size: 4rem;
  }
  .heading_h2_jp {
    font-size: 1.4rem;
  }
  .button_whilte_rounded_corners {
    width: 250px;
    font-size: 1.6rem;
    letter-spacing: 0.6em;
  }
  .button_white_rounded_corners,
  .button_beige_rounded_corners {
    height: 50px;
    line-height: 50px;
    font-size: 1.3rem;
    letter-spacing: 0.6em;
  }
  .button_white_rounded_corners img,
  .button_beige_rounded_corners img {
    margin-right: 10px;
    width: 20px;
  }
}
/*** TOP（共通）***/
.fs-l-pageMain .top_section {
  margin-top: 135px;
}
@media screen and (max-width: 575.98px) {
  .fs-l-pageMain .top_section {
    margin-top: 70px;
  }
}
/*** TOPカルーセル ***/
.top_section_carousel {
  padding-top: 70px;
}
.produced_by {
  position: relative;
}
.produced_by_text {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 30px;
  position: absolute;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  left: -50px;
  top: -266px;
}
@media screen and (max-width: 1299.98px) {
  .produced_by_text {
    font-size: 2rem;
    line-height: 20px;
    -ms-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    left: unset;
    right: 10px;
    top: -5px;
  }
}
/*** TOPバナー ***/
.banner {
  text-align: center;
}
/*** TOPコンセプト ***/
.top_section_concept {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 76.2%;
}
.top_section_concept_text {
  position: absolute;
  left: 128px;
  left: 10.67%;
  top: 192px;
  top: 16%;
  z-index: 10;
  /* 20220727コメントアウト
  text-shadow: 0 0 15px var(--fs-color-page__background), 0 0 15px var(--fs-color-page__background), 0 0 15px var(--fs-color-page__background), 0 0 15px var(--fs-color-page__background); */
  text-shadow: 0 0 15px var(--fs-color-page__background),
    0 0 15px var(--fs-color-page__background),
    0 0 15px var(--fs-color-page__background),
    0 0 15px var(--fs-color-page__background),
    0 0 15px var(--fs-color-page__background),
    0 0 15px var(--fs-color-page__background),
    0 0 15px var(--fs-color-page__background);
}
.top_section_concept_text_jp {
  margin-top: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 2.27;
  letter-spacing: 0.4em;
}
.top_section_concept_text_en {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.top_section_concept_img {
  position: absolute;
}
.top_section_concept_img01 {
  width: 29.25%;
  left: 0;
  top: 70px;
  top: 5.83%;
}
.top_section_concept_img02 {
  width: 56.08%;
  top: 0;
  right: 0;
}
.top_section_concept_img03 {
  width: 29.17%;
  top: 500px;
  top: 54.75%;
  left: 405px;
  left: 33.75%;
}
.top_section_concept_button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
@media screen and (max-width: 575.98px) {
  .top_section_concept {
    padding-top: 90% !important;
    padding-top: 130% !important;
  }
  .top_section_concept_text {
    left: 3.67% !important;
    top: 5% !important;
    top: 0 !important;
  }
  .top_section_concept_text_jp {
    font-size: 1.4rem !important;
  }
  .top_section_concept_text_en {
    font-size: 1.2rem !important;
  }
  .top_section_concept_img01 {
    top: 33% !important;
  }
  .top_section_concept_img02 {
    top: 28% !important;
  }
  .top_section_concept_img03 {
    top: 46.75% !important;
    top: 60% !important;
  }
}
/*** TOPラインナップ ***/
.top_section_lineup .slick-prev:before,
.top_section_lineup .slick-next:before {
  color: var(--fs-color-subcolor1);
}
.top_section_lineup .slick-prev {
  left: 0;
  z-index: 10;
}
.top_section_lineup .slick-next {
  right: 0;
}
.top_section_lineup .slick-slide {
  padding-left: 37px;
  padding-right: 37px;
}
.lineup_name_en {
  margin-top: 30px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1.21;
  letter-spacing: 0.05em;
  text-align: center;
}
.lineup_name_jp {
  margin-top: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.4em;
  text-align: center;
}
.top_section_lineup_bg {
  border-radius: calc(100vw * 0.4);
  padding: 150px 50px;
}

.top_section_lineup_bg_chocosweetsset {
  background: #f8ebe9;
}
.top_section_lineup_bg_doublecheesecake {
  background: #fff7e2;
}
.top_section_lineup_bg_tiramisu {
  background: #f7e9da;
}
.top_section_lineup_bg_honeylemon {
  background: #fff9a2;
}
.top_section_lineup_bg_montblancassort {
  background: #d9bca1;
}
.top_section_lineup_bg_financierassort {
  background: #fcefdc;
}
.top_section_lineup_bg_xmas2022 {
  background: #002c14;
}
.top_section_lineup_bg_xmas2022_berry {
  background: #002c14;
}
.top_section_lineup_bg_xmas2022_choco {
  background: #760000;
}
.top_section_lineup_bg_valentine2023 {
  /*  background: #62260f; ←BOXの色 */
  background: #73321c;
}
.top_section_lineup_bg_cookiecollection {
  background: #e6f6ff;
}
.top_section_lineup_bg_earlgrey {
  background: #f8f1ff;
}
.top_section_lineup_bg_strawberrycheese {
  background: #ffd8ddbd;
}
.top_section_lineup_bg_matcha {
  background: #e9f4d1;
}
.top_section_lineup_bg_bagel {
  background: #ffe6e1f3;
}
.top_section_lineup_bg_xmas01 {
  background: #811d20;
}
.top_section_lineup_bg_xmas02 {
  background: #043f3c;
}
.top_section_lineup_bg_truffle {
  background: #f5ece7;
}
.top_section_lineup_bg_trufflechocolate {
  background: #f5ece7;
}
.top_section_lineup_bg_cookiesand {
  background: #ffe6e1f3;
}

.lineup_2items {
  display: flex;
  column-gap: 13%;
}
.lineup_2items .lineup_item,
.lineup_1item .lineup_item_img_wrapper,
.lineup_1item .lineup_item_detail,
.lineup_2items_1detail {
  width: 43.5%;
}
.lineup_2items_1detail {
  margin: 30px auto 0;
}
.lineup_1item .lineup_item {
  display: flex;
  column-gap: 4%;
}
.lineup_2items .lineup_item:first-child .lineup_item_img_wrapper {
  padding: 0 0 22px 22px;
}
.lineup_2items .lineup_item:nth-child(2) .lineup_item_img_wrapper {
  padding: 22px 22px 0 0;
}
.lineup_1item .lineup_item .lineup_item_img_wrapper {
  padding: 22px 0 0 22px;
}
.top_section_lineup_chocosweetsset
  .lineup_2items
  .lineup_item:first-child
  .lineup_item_img_wrapper {
  background: -moz-linear-gradient(left, #fcd6d0, transparent);
  background: -webkit-linear-gradient(left, #fcd6d0, transparent);
  background: linear-gradient(to right, #fcd6d0, transparent);
}
.top_section_lineup_chocosweetsset
  .lineup_2items
  .lineup_item:nth-child(2)
  .lineup_item_img_wrapper {
  background: -moz-linear-gradient(right, #fcd6d0, transparent);
  background: -webkit-linear-gradient(right, #fcd6d0, transparent);
  background: linear-gradient(to left, #fcd6d0, transparent);
}
.top_section_lineup_doublecheesecake
  .lineup_1item
  .lineup_item
  .lineup_item_img_wrapper {
  background: -moz-linear-gradient(
    top left,
    #fae3b7,
    transparent 50%,
    transparent
  );
  background: -webkit-linear-gradient(
    top left,
    #fae3b7,
    transparent 50%,
    transparent
  );
  background: linear-gradient(
    to bottom right,
    #fae3b7,
    transparent 50%,
    transparent
  );
}
.top_section_lineup_tiramisu
  .lineup_1item
  .lineup_item
  .lineup_item_img_wrapper {
  background: -moz-linear-gradient(
    top left,
    #fcf4d0,
    transparent 50%,
    transparent
  );
  background: -webkit-linear-gradient(
    top left,
    #fcf4d0,
    transparent 50%,
    transparent
  );
  background: linear-gradient(
    to bottom right,
    #fcf4d0,
    transparent 50%,
    transparent
  );
}
.top_section_lineup_honeylemon
  .lineup_1item
  .lineup_item
  .lineup_item_img_wrapper {
  background: -moz-linear-gradient(
    top left,
    #fff,
    transparent 50%,
    transparent
  );
  background: -webkit-linear-gradient(
    top left,
    #fff,
    transparent 50%,
    transparent
  );
  background: linear-gradient(
    to bottom right,
    #fff,
    transparent 50%,
    transparent
  );
}
.top_section_lineup_montblancassort
  .lineup_2items
  .lineup_item:first-child
  .lineup_item_img_wrapper {
  background: -moz-linear-gradient(left, #f6e7c9, transparent);
  background: -webkit-linear-gradient(left, #f6e7c9, transparent);
  background: linear-gradient(to right, #f6e7c9, transparent);
}
.top_section_lineup_montblancassort
  .lineup_2items
  .lineup_item:nth-child(2)
  .lineup_item_img_wrapper {
  background: -moz-linear-gradient(right, #f6e7c9, transparent);
  background: -webkit-linear-gradient(right, #f6e7c9, transparent);
  background: linear-gradient(to left, #f6e7c9, transparent);
}
.top_section_lineup_financierassort
  .lineup_1item
  .lineup_item
  .lineup_item_img_wrapper {
  background: -moz-linear-gradient(
    top left,
    #debba5,
    transparent 50%,
    transparent
  );
  background: -webkit-linear-gradient(
    top left,
    #debba5,
    transparent 50%,
    transparent
  );
  background: linear-gradient(
    to bottom right,
    #debba5,
    transparent 50%,
    transparent
  );
}
.top_section_lineup_xmas2022
  .lineup_2items
  .lineup_item:first-child
  .lineup_item_img_wrapper {
  background: -moz-linear-gradient(left, #760000, transparent);
  background: -webkit-linear-gradient(left, #760000, transparent);
  background: linear-gradient(to right, #760000, transparent);
}
.top_section_lineup_xmas2022
  .lineup_2items
  .lineup_item:nth-child(2)
  .lineup_item_img_wrapper {
  background: -moz-linear-gradient(right, #760000, transparent);
  background: -webkit-linear-gradient(right, #760000, transparent);
  background: linear-gradient(to left, #760000, transparent);
}
.top_section_lineup_xmas2022_berry
  .lineup_1item
  .lineup_item
  .lineup_item_img_wrapper {
  background: -moz-linear-gradient(left, #760000, transparent);
  background: -webkit-linear-gradient(left, #760000, transparent);
  background: linear-gradient(to right, #760000, transparent);
}
.top_section_lineup_xmas2022_choco
  .lineup_1item
  .lineup_item
  .lineup_item_img_wrapper {
  background: -moz-linear-gradient(left, #002c14, transparent);
  background: -webkit-linear-gradient(left, #002c14, transparent);
  background: linear-gradient(to right, #002c14, transparent);
}
.top_section_lineup_valentine2023
  .lineup_1item
  .lineup_item
  .lineup_item_img_wrapper {
  background: -moz-linear-gradient(
    top left,
    #cca57e,
    transparent 50%,
    transparent
  );
  background: -webkit-linear-gradient(
    top left,
    #cca57e,
    transparent 50%,
    transparent
  );
  background: linear-gradient(
    to bottom right,
    #cca57e,
    transparent 50%,
    transparent
  );
}
.top_section_lineup_cookiecollection
  .lineup_1item
  .lineup_item
  .lineup_item_img_wrapper {
  background: -moz-linear-gradient(
    top left,
    #b3e3ff,
    transparent 50%,
    transparent
  );
  background: -webkit-linear-gradient(
    top left,
    #b3e3ff,
    transparent 50%,
    transparent
  );
  background: linear-gradient(
    to bottom right,
    #b3e3ff,
    transparent 50%,
    transparent
  );
}
.top_section_lineup_bg_sandwich
  .lineup_1item
  .lineup_item
  .lineup_item_img_wrapper {
  background: -moz-linear-gradient(
    top left,
    #efd0c5,
    transparent 50%,
    transparent
  );
  background: -webkit-linear-gradient(
    top left,
    #efd0c5,
    transparent 50%,
    transparent
  );
  background: linear-gradient(
    to bottom right,
    #efd0c5,
    transparent 50%,
    transparent
  );
}
.top_section_lineup_bg_earlgrey
  .lineup_1item
  .lineup_item
  .lineup_item_img_wrapper {
  background: -moz-linear-gradient(
    top left,
    #e9c2f2,
    transparent 50%,
    transparent
  );
  background: -webkit-linear-gradient(
    top left,
    #e9c2f2,
    transparent 50%,
    transparent
  );
  background: linear-gradient(
    to bottom right,
    #e9c2f2,
    transparent 50%,
    transparent
  );
}
.top_section_lineup_bg_strawberrycheese
  .lineup_1item
  .lineup_item
  .lineup_item_img_wrapper {
  background: -moz-linear-gradient(
    top left,
    #fff,
    transparent 50%,
    transparent
  );
  background: -webkit-linear-gradient(
    top left,
    #fff,
    transparent 50%,
    transparent
  );
  background: linear-gradient(
    to bottom right,
    #fff,
    transparent 50%,
    transparent
  );
}
.top_section_lineup_bg_matcha
  .lineup_1item
  .lineup_item
  .lineup_item_img_wrapper {
  background: -moz-linear-gradient(
    top left,
    #e9f4d1,
    transparent 50%,
    transparent
  );
  background: -webkit-linear-gradient(
    top left,
    #e9f4d1,
    transparent 50%,
    transparent
  );
  background: linear-gradient(
    to bottom right,
    #e9f4d1,
    transparent 50%,
    transparent
  );
}
.top_section_lineup_bg_bagel
  .lineup_1item
  .lineup_item
  .lineup_item_img_wrapper {
  background: -moz-linear-gradient(
    top left,
    #ffc2b6f3,
    transparent 50%,
    transparent
  );
  background: -webkit-linear-gradient(
    top left,
    #ffc2b6f3,
    transparent 50%,
    transparent
  );
  background: linear-gradient(
    to bottom right,
    #ffc2b6f3,
    transparent 50%,
    transparent
  );
}
.top_section_lineup_bg_xmas01
  .lineup_1item
  .lineup_item
  .lineup_item_img_wrapper {
  background: -moz-linear-gradient(
    top left,
    #511911,
    transparent 50%,
    transparent
  );
  background: -webkit-linear-gradient(
    top left,
    #511911,
    transparent 50%,
    transparent
  );
  background: linear-gradient(
    to bottom right,
    #511911,
    transparent 50%,
    transparent
  );
}
.top_section_lineup_bg_xmas02
  .lineup_1item
  .lineup_item
  .lineup_item_img_wrapper {
  background: -moz-linear-gradient(
    top left,
    #548272,
    transparent 50%,
    transparent
  );
  background: -webkit-linear-gradient(
    top left,
    #548272,
    transparent 50%,
    transparent
  );
  background: linear-gradient(
    to bottom right,
    #548272,
    transparent 50%,
    transparent
  );
}
.top_section_lineup_bg_truffle
  .lineup_1item
  .lineup_item
  .lineup_item_img_wrapper {
  background: -moz-linear-gradient(
    top left,
    #e8d5cf,
    transparent 50%,
    transparent
  );
  background: -webkit-linear-gradient(
    top left,
    #e8d5cf,
    transparent 50%,
    transparent
  );
  background: linear-gradient(
    to bottom right,
    #e8d5cf,
    transparent 50%,
    transparent
  );
}
.top_section_lineup_bg_trufflechocolate
  .lineup_1item
  .lineup_item
  .lineup_item_img_wrapper {
  background: -moz-linear-gradient(
    top left,
    #e8d5cf,
    transparent 50%,
    transparent
  );
  background: -webkit-linear-gradient(
    top left,
    #e8d5cf,
    transparent 50%,
    transparent
  );
  background: linear-gradient(
    to bottom right,
    #e8d5cf,
    transparent 50%,
    transparent
  );
}
.top_section_lineup_bg_cookiesand
  .lineup_1item
  .lineup_item
  .lineup_item_img_wrapper {
  background: -moz-linear-gradient(
    top left,
    #cca57e,
    transparent 50%,
    transparent
  );
  background: -webkit-linear-gradient(
    top left,
    #cca57e,
    transparent 50%,
    transparent
  );
  background: linear-gradient(
    to bottom right,
    #cca57e,
    transparent 50%,
    transparent
  );
}
.lineup_item_name_en {
  margin-top: 17px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.lineup_item_name_jp {
  margin-top: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.lineup_item_nutrition {
  margin-top: 15px;
  display: flex;
}
.lineup_item_nutrition_label:not(:first-child) {
  margin-left: 35.5px;
}
.lineup_item_nutrition_label_jp {
  margin-top: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.lineup_item_nutrition_label_en {
  margin-top: 17px;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 3rem;
  line-height: 1.47;
  letter-spacing: 0.05em;
}
.lineup_item_nutrition_label_calorie .lineup_item_nutrition_label_en {
  margin-left: 7.5px;
}
.lineup_item_nutrition_label_carbohydrate .lineup_item_nutrition_label_en {
  margin-left: 10.5px;
}
.lineup_item_features {
  margin-top: 15px;
}
.lineup_item_features ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(3, 1fr);
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  column-gap: 15px;
  row-gap: 15px;
}
.lineup_item_features ul li {
  border: 1px solid var(--fs-color-subcolor1);
  color: var(--fs-color-subcolor1);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 37px;
  letter-spacing: 0.2em;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  height: 37px;
}
.top_section_lineup_valentine2023 {
  color: #f7f3ec;
}
.top_section_lineup_valentine2023 .lineup_item_features ul li {
  border: 1px solid #f7f3ec;
  color: #f7f3ec;
}
.lineup_item_description {
  margin-top: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 2.125;
  letter-spacing: 0.05em;
}
.lineup_note {
  margin-top: 33px;
  /* text-align: center; */
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 1.3rem;
  line-height: 1.846;
  letter-spacing: 0.1em;
}
.lineup_note_financierassort,
.lineup_note_cookiecollection,
.lineup_note_sandwich,
.lineup_note_tiramisu,
.lineup_note_doublecheesecake,
.lineup_note_chocolatesweetsset {
  text-align: left;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1149.98px) {
  .lineup_item_features ul {
    -ms-grid-columns: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 991.98px) {
  .top_section_lineup .slick-slide {
    padding-left: 20px;
    padding-right: 20px;
  }
  .top_section_lineup .lineup_2items {
    flex-direction: column;
    row-gap: 40px;
    align-items: center;
  }
  .top_section_lineup .lineup_1item .lineup_item {
    flex-direction: column;
    align-items: center;
    row-gap: 40px;
  }
  .lineup_2items .lineup_item,
  .lineup_1item .lineup_item_img_wrapper,
  .lineup_1item .lineup_item_detail,
  .lineup_2items_1detail {
    width: 100%;
    max-width: 522px;
  }
  .lineup_item_features ul {
    -ms-grid-columns: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 575.98px) {
  .top_section_lineup .slick-slide {
    padding-left: 5px;
    padding-right: 5px;
  }
  .lineup_name_en {
    margin-top: 10px;
    font-size: 1.6rem;
  }
  .lineup_name_jp {
    margin-top: 7px;
    font-size: 1.2rem;
  }
  .top_section_lineup_bg {
    padding: 70px 15px;
  }
  .lineup_item_name_en {
    font-size: 3rem;
  }
  .lineup_item_name_jp {
    font-size: 1.4rem;
  }
  .lineup_item_nutrition_label_jp {
    font-size: 1.4rem;
  }
  .lineup_item_nutrition_label_en {
    font-size: 2.5rem;
  }
  .lineup_item_nutrition_label:not(:first-child) {
    margin-left: 30px;
  }
  .lineup_item_features ul {
    -ms-grid-columns: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px;
    row-gap: 10px;
  }
}
/**おいしい食べ方モーダル**/
.fs-body-top .modaal-container {
  background: none !important;
  max-width: 700px !important;
  width: min(calc(100vh - 80px), calc(100vw - 20px));
  box-shadow: none !important;
}
.modaal-inner-wrapper {
  padding: 0 !important;
}
.fs-body-top .slick-slide img {
  margin: 0 auto;
}
.fs-body-top .slick-dots li.slick-active button:before {
  opacity: 1 !important;
}
.fs-body-top .slick-dots li button:before {
  opacity: 0.3 !important;
  color: #fff !important;
}
.fs-body-top .modaal-overlay {
  background: var(--fs-color-maincolor) !important;
  opacity: 0.6 !important;
}
/*** TOPラインナップ（チョコ） ***/
/*** TOPラインナップ（チーズケーキ） ***/
/*** TOPラインナップ（ティラミス） ***/
/*** TOP Instagram ***/
.top_section_instagram .nav_icon {
  text-align: center;
}
/*** TOPインフォメーション ***/
.top_section_info ul {
  height: 430px;
  border-top: 1px solid #ba968c;
  border-bottom: 1px solid #ba968c;
  overflow-y: scroll;
}
.top_section_info ul::-webkit-scrollbar {
  width: 16px;
}
.top_section_info ul::-webkit-scrollbar-track {
  background-color: #f8f0ed;
  border-radius: 100px;
}
.top_section_info ul::-webkit-scrollbar-thumb {
  background-color: #d3c1bc;
  border-radius: 100px;
}
.top_section_info li {
  border-bottom: 1px solid #ba968c;
  display: flex;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2.125;
  letter-spacing: 0.05em;
  padding: 20px 24px;
  margin-top: 0;
}
.top_section_info li:last-child {
  border-bottom: none;
}
.top_section_info li time {
  display: block;
  width: 240px;
  letter-spacing: 0.2em;
}
.top_section_info li div {
  width: calc(100% - 240px);
}
@media screen and (max-width: 1198.98px) {
  .top_section_info ul {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 575.98px) {
  .top_section_info li {
    display: block;
    padding: 5px;
    font-size: 1.4rem;
  }
  .top_section_info li div {
    width: 100%;
  }
}
/* 商品系画面 */
.fs-c-productPrice--listed .fs-c-productPrice__main__label {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
.fs-c-productPrice--listed .fs-c-productPrice__main__price.fs-c-price {
  font-size: 1.4rem;
}

.fs-c-productPrice--listed
  .fs-c-productPrice__main__price.fs-c-price
  .fs-c-price__value {
  position: relative;
  text-decoration: none; /* 通常の下線を削除 */
}

.fs-c-productPrice--listed
  .fs-c-productPrice__main__price.fs-c-price
  .fs-c-price__value::after {
  content: "";
  position: absolute;
  bottom: 50%; /* テキストの中央に配置 */
  left: 0;
  right: 0;
  border-bottom: 1px solid #000; /* 下線を1pxの実線で設定 */
  transform: translateY(50%); /* テキストの中央に配置するための調整 */
}

/* 税込 → tax in */
.fs-c-productPrice__addon:not(.fs-c-productPrice__addon--listed)::before {
  width: 0;
  overflow: hidden;
  margin-left: 0.5em;
}
span.fs-c-productPrice__addon > span {
  width: 0;
  overflow: hidden;
}
.fs-c-productPrice__addon:not(.fs-c-productPrice__addon--listed)::after {
  content: "tax in";
}
.fs-c-productSalesPeriod {
  border: 1px solid var(--fs-color-maincolor);
  border-width: 1px 0;
}
/* 商品画像拡大ボタン */
.fs-c-productListItem__viewMoreImageButton,
.fs-c-button--viewExtendedImage {
  margin-bottom: -30px;
}
.fs-c-button--plain.fs-c-button--viewMoreImage::before,
.fs-c-button--plain.fs-c-button--viewExtendedImage::before {
  color: var(--fs-color-maincolor);
}
/* 商品一覧・商品検索結果一覧 */
.fs-c-productList__list {
  -ms-grid-columns: calc(50% - 0px) calc(50% - 0px);
  grid-template-columns: calc(50% - 0px) calc(50% - 0px);
}
.fs-c-productList__list > *:nth-child(3) {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 2;
  grid-row: 2;
}
.fs-c-productList__list > *:nth-child(4) {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 2;
  grid-row: 2;
}
.fs-c-productList__list > *:nth-child(5) {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 3;
  grid-row: 3;
}
.fs-c-productList__list > *:nth-child(6) {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 3;
  grid-row: 3;
}
.fs-c-productList__list > *:nth-child(7) {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 4;
  grid-row: 4;
}
.fs-c-productList__list > *:nth-child(8) {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 4;
  grid-row: 4;
}
.fs-c-productList__list > *:nth-child(9) {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 5;
  grid-row: 5;
}
.fs-c-productList__list > *:nth-child(10) {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 5;
  grid-row: 5;
}
.fs-c-productList__list > *:nth-child(11) {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 6;
  grid-row: 6;
}
.fs-c-productList__list > *:nth-child(12) {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 6;
  grid-row: 6;
}
.fs-c-productList__list > *:nth-child(13) {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 7;
  grid-row: 7;
}
.fs-c-productList__list > *:nth-child(14) {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 7;
  grid-row: 7;
}
.fs-c-productList__list > *:nth-child(15) {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 8;
  grid-row: 8;
}
.fs-c-productList__list > *:nth-child(16) {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 8;
  grid-row: 8;
}
.fs-c-productList__list > *:nth-child(17) {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 9;
  grid-row: 9;
}
.fs-c-productList__list > *:nth-child(18) {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 9;
  grid-row: 9;
}
.fs-c-productList__list > *:nth-child(19) {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 10;
  grid-row: 10;
}
.fs-c-productList__list > *:nth-child(20) {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 10;
  grid-row: 10;
}
.fs-c-productList .fs-c-productName__copy {
  display: none;
  margin-top: 25px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.fs-c-productList .fs-c-productName__name {
  margin-top: 15px;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.3em;
}
.fs-c-productList .fs-c-productPrice__main {
  margin-top: 15px;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  line-height: 1.23;
  letter-spacing: 0.4em;
}
.fs-c-productList .productDetail_deliveryPeriod {
  margin-top: 22px;
}
.fs-c-productList .productDetail_deliveryPeriod_heading {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.875;
  letter-spacing: 0.4em;
  display: inline-block;
  margin-right: 25px;
}
.fs-c-productList .productDetail_deliveryPeriod_content {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.36;
  letter-spacing: 0.4em;
}
.fs-c-productListItem__control_custom a {
  margin-top: 31px;
}
.pricewithlabel {
  display: flex;
  align-items: baseline;
  column-gap: 20px;
}
.fs-c-productMarks {
  display: flex;
}
.fs-c-subscriptionPriceTable__label {
  display: none;
}
.fs-c-productPrice__main__label {
  display: none;
}

@media screen and (max-width: 767.98px) {
  .fs-c-mark {
    font-size: 1rem;
  }
  .fs-c-productList .fs-c-productName__copy {
    margin-top: 20px;
    font-size: 2.6rem;
  }
  .fs-c-productList .fs-c-productName__name {
    font-size: 1.4rem;
    margin-top: 10px;
  }
  .fs-c-productList .fs-c-productPrice__main {
    margin-top: 15px;
    font-size: 1.8rem;
  }
  .fs-c-productPrice__addon {
    font-size: 1.2rem;
  }
  .fs-c-productMark__mark {
    font-size: 1.2rem;
  }
  .fs-c-productList .productDetail_deliveryPeriod {
    margin-top: 15px;
  }
  .fs-c-productList .productDetail_deliveryPeriod_heading {
    font-size: 1.4rem;
    margin-right: 15px;
  }
  .fs-c-productList .productDetail_deliveryPeriod_content {
    font-size: 1.8rem;
  }
  .fs-c-productListItem__control_custom a {
    margin-top: 20px;
  }
}
@media screen and (max-width: 575.98px) {
  .fs-c-productPrice--listed .fs-c-productPrice__main__label {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
  .fs-c-productPrice--listed .fs-c-productPrice__main__price.fs-c-price {
    font-size: 1.2rem;
  }
  .fs-c-productList .fs-c-productName__copy {
    margin-top: 15px;
    font-size: 2.4rem;
  }
  .fs-c-productList .fs-c-productName__name {
    font-size: 1.2rem;
    margin-top: 5px;
    height: auto;
  }
  .fs-c-productList .fs-c-productPrice__main {
    margin-top: 10px;
    font-size: 1.6rem;
  }
  .fs-c-productPrice__addon {
    font-size: 1rem;
  }
  .fs-c-productMark__mark {
    font-size: 1rem;
  }
  .fs-c-productList .productDetail_deliveryPeriod {
    margin-top: 10px;
  }
  .fs-c-productList .productDetail_deliveryPeriod_heading {
    font-size: 1.2rem;
    margin-right: 10px;
  }
  .fs-c-productList .productDetail_deliveryPeriod_content {
    font-size: 1.6rem;
  }
  .fs-c-productListItem__control_custom a {
    margin-top: 15px;
  }
  .pricewithlabel {
    display: block;
  }
}
/* 商品検索結果一覧 */
.fs-c-checkbox__checkbox:checked + label > .fs-c-checkbox__checkMark {
  background: var(--fs-color-maincolor);
  border-color: var(--fs-color-maincolor);
}
.fs-c-radio__radio:checked:enabled + label > .fs-c-radio__radioMark {
  border-color: var(--fs-color-maincolor);
}
.fs-c-radio__radio:checked:enabled + label > .fs-c-radio__radioMark::before {
  background: var(--fs-color-maincolor);
}
/* 商品詳細 */
.fs-l-product2 .fs-l-productLayout {
  grid-template-columns: 1fr 1fr;
  grid-gap: 60px;
}
.fs-c-productThumbnail__image {
  flex-basis: calc(100% / 4 - 20px);
}
.fs-l-product2 .fs-c-productNameHeading__copy {
  display: block;
  margin-top: 44px;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.fs-l-product2 .fs-c-productNameHeading__name {
  display: block;
  margin-top: 15px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.4em;
}
.fs-l-product2 .fs-c-productPrice__main__label {
  font-size: 1.2rem;
}
.fs-l-product2 .fs-c-productPrice__main__price.fs-c-price {
  font-size: 1.6rem;
}
.fs-l-product2 .fs-c-productPrice__main__price {
  margin-top: 27px;
  font-family: "Montserrat", sans-serif;
  font-size: 3.6rem;
  line-height: 1.2;
  letter-spacing: 0.4em;
}
.fs-l-product2 .fs-c-productPointDisplay,
.fs-l-product2 .fs-c-productNumber {
  background: none;
  display: block;
  color: var(--fs-color-font--main);
  font-weight: 300;
  font-size: 1.4rem;
  border: none;
}
.fs-l-product2 .fs-c-productPointDisplay__quantity,
.fs-l-product2 .fs-c-productNumber__number {
  font-weight: 300;
}
.fs-l-product2 .productDetail_deliveryPeriod {
  margin-top: 38px;
}
.fs-l-product2 .productDetail_deliveryPeriod_heading {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.875;
  letter-spacing: 0.4em;
  display: inline-block;
  margin-right: 25px;
}
.fs-l-product2 .productDetail_deliveryPeriod_content {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.36;
  letter-spacing: 0.4em;
}
.fs-l-product2 .fs-c-productQuantityAndWishlist {
  margin-top: 37px;
}
.fs-l-product2 .fs-c-productActionButton {
  margin-top: 40px;
}
.fs-l-product2 .fs-c-button--addToCart--detail {
  /* .button_white_rounded_cornersに合わせる。*/
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 387px;
  min-width: 1px !important;
  height: 73px;
  border-radius: 37px;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 73px;
  letter-spacing: 0.8em;
  box-shadow: 0 0 20px rgb(0 0 0 / 10%);
  border: none;
  color: var(--fs-color-maincolor);
  padding: 0;
}
.fs-l-product2 .fs-c-button--addToCart--detail:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 25px;
  vertical-align: middle;
  background-size: contain;
}
.fs-l-product2 .productSummary {
  margin-top: 50px;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2.125;
  letter-spacing: 0.05em;
}
.fs-l-product2 table.productDetailTable {
  border-collapse: collapse;
  margin-top: 40px;
  width: 100%;
}
.fs-l-product2 table.productDetailTable tr > * {
  padding-left: 9px;
  padding-right: 9px;
  padding: 30px 9px;
  border-top: solid 1px var(--fs-color-maincolor);
  border-bottom: solid 1px var(--fs-color-maincolor);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.43;
  letter-spacing: 0.2em;
}
.fs-l-product2 table.productDetailTable tr th {
  text-align: left;
  vertical-align: top;
  width: 12em;
}
.fs-l-product2 .toggle_btn {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.fs-l-product2 .toggle_btn:before,
.fs-l-product2 .toggle_btn:after {
  display: block;
  content: "";
  background-color: var(--fs-color-maincolor);
  position: absolute;
  width: 20px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fs-l-product2 .toggle_btn:before {
  width: 1px;
  height: 20px;
}
.fs-l-product2 .productDetail_toggle_button.selected .toggle_btn:before {
  content: normal;
}
.fs-l-product2 .productDetail_toggle_button {
  display: flex;
  justify-content: flex-end;
}
.fs-l-product2 .productDetail_toggle_text,
.fs-l-product2 .productDetail_heading_after2ndLine {
  display: none;
}
.fs-l-product2
  .productDetail_aboutLinks
  .fs-c-returnedSpecialContract__link
  a:before,
.fs-l-product2
  .productDetail_aboutLinks
  .fs-c-button--inquiryAboutProduct
  span:before {
  content: "・";
}
.fs-l-product2 .productDetail_aboutLinks > * {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 3.57;
  letter-spacing: 0.2em;
  margin: 0;
  padding: 0;
}
.fs-l-product2 .productDetail_aboutLinks {
  margin: 30px 12px;
}
.fs-l-product2 .productDetail_aboutLinks button {
  color: var(--fs-color-maincolor);
}
@media screen and (max-width: 991.98px) {
  .fs-l-product2 .fs-l-productLayout {
    display: block;
  }
}
@media screen and (max-width: 767.98px) {
  .fs-l-product2 .fs-c-button--addToCart--detail {
    height: 60px;
    line-height: 60px;
    font-size: 1.6rem;
    letter-spacing: 0.7em;
  }
  .fs-l-product2 .fs-c-button--addToCart--detail:before {
    width: 25px;
    height: 20.8px;
    margin-right: 16px;
  }
}
@media screen and (max-width: 575.98px) {
  .fs-l-product2 .fs-c-button--addToCart--detail {
    height: 50px;
    line-height: 50px;
    font-size: 1.3rem;
    letter-spacing: 0.6em;
  }
  .fs-l-product2 .fs-c-button--addToCart--detail:before {
    width: 20px;
    height: 16.7px;
    margin-right: 10px;
  }
  .fs-l-product2 .fs-c-productNameHeading__copy {
    margin-top: 25px;
    font-size: 2.6rem;
  }
  .fs-l-product2 .fs-c-productNameHeading__name {
    margin-top: 10px;
    font-size: 1.4rem;
  }
  .fs-l-product2 .fs-c-productPrice__main__price {
    margin-top: 20px;
  }
  .fs-l-product2 .productDetail_deliveryPeriod_heading {
    font-size: 1.4rem;
    margin-right: 15px;
  }
  .fs-l-product2 .productDetail_deliveryPeriod_content {
    font-size: 1.9rem;
  }
  .fs-l-product2 .productSummary {
    margin-top: 40px;
    font-size: 1.4rem;
  }
  .fs-l-product2 table.productDetailTable {
    margin-top: 30px;
  }
  .fs-l-product2 table.productDetailTable tr th {
    width: 11em;
  }
  .fs-l-product2 table.productDetailTable tr > * {
    padding: 20px 5px;
    font-size: 1.2rem;
  }
  .fs-l-product2 .toggle_btn {
    width: 15px;
    height: 15px;
  }
}
/* 会員系ページ */
.fs-p-announcement {
  margin: 32px auto;
  width: fit-content;
}
/* 告知系ページ */
.fs-body-closed .fs-c-heading--page {
  margin-top: 100px;
}
/* カート系ページ */
.shipping_fee_changes_alert {
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  padding: 16px;
  margin-bottom: 10px;
}
.shipping_fee_changes_alert p {
  line-height: 1.5em;
}
.shipping_fee_changes_alert p + p {
  margin-top: 0.5em;
}
.shopper_notice {
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  padding: 16px;
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.shopper_notice_text {
  max-width: 75%;
}
.shopper_notice_text p {
  line-height: 2em;
}
.shopper_notice_text p + p {
  /*margin-top: .5em;*/
}
.shopper_notice_img {
  width: 25%;
  margin-left: 10px;
}
@media screen and (max-width: 600px) {
  .shopper_notice {
    flex-direction: column;
  }
  .shopper_notice_text {
    max-width: 100%;
  }
  .shopper_notice_img {
    width: 60%;
    margin-left: 0;
    margin-top: 10px;
  }
}
/* フリーページ */
.sub_section {
  padding-top: 75px;
}
/** FAQ **/
.sub_section_faq_contents {
  width: 770px;
  max-width: 100%;
  margin: 0 auto;
}
/** CONCEPT **/
.sub_section_producer {
  margin-top: 150px;
}
.sub_section_contents_concept_message {
  margin-top: 53px;
}
.sub_section_contents_concept_message p {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 2.42;
  letter-spacing: 0.4em;
}
.sub_section_contents_text {
  margin-top: 53px;
}
.sub_section_contents_text_producer {
  margin-top: 90px;
}
.sub_section_contents_text p {
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 2.5;
  letter-spacing: 0.2em;
}
.sub_section_contents_producer_name {
  text-align: center;
  margin-top: 68px;
}
.sub_section_contents_producer_sns_links {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 33px;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767.98px) {
  .sub_section_contents_concept_message p {
    font-size: 2.1rem;
  }
  .sub_section_contents_text p {
    font-size: 1.6rem;
    letter-spacing: 0.15em;
  }
}
@media screen and (max-width: 575.98px) {
  .sub_section_contents_text p {
    font-size: 1.4rem;
  }
  .sub_section_producer {
    margin-top: 100px;
  }
}
#howtoeat_c,
#howtoeat_tiramisu {
  margin-bottom: 0;
}
#howtoeat {
  margin-top: 0;
}
.howtoeat {
  margin: 0px auto 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.howtoeat_image {
  width: 100%;
}
.howtoeatToggle_btn input {
  background-color: transparent;
}
.howtoeat_image {
  width: calc(100% / 3);
}
@media screen and (max-width: 767.98px) {
  .howtoeat_image {
    width: 50%;
  }
}
@media screen and (max-width: 575.98px) {
  .howtoeat_image {
    width: 100%;
  }
}
