@charset "UTF-8";

/****************************************************************

	全体共通

****************************************************************/
/*--------------------------------
	レスポンシブ
--------------------------------*/

@media (max-width: 960px) {}

/* @media (max-width: 850px) {} */

@media (max-width: 768px) {}

/* @media (max-width: 650px) {} */

@media (max-width: 560px) {}

@media (max-width: 415px) {}

@media (max-width: 375px) {}

/*--------------------------------
	common
--------------------------------*/

:root {
  /* --base-font: "Helvetica", "Arial", "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif; */
  --dancing-script-font: "Dancing Script", cursive;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  color: #282B2C;
  /* font-family: var(--base-font); */
  font-size: 16px;
  line-height: 1.5;
  font-style: normal;
  text-rendering: auto;
  font-optical-sizing: auto;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-feature-settings: "palt";
}

p {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #282B2C;
  text-decoration: none;
}

.basic__area {
  margin: 0 auto 60px;
}

@media (max-width: 768px) {

  .basic__area {
    margin: 0 auto 50px;
  }

  .-no-link-max768 {
    pointer-events: none;
  }
}

/*--------------------------------
	-show（画面幅で表示/非表示切り替え）
--------------------------------*/

@media (min-width: 961px) {

  .-show-min961 {
    display: block;
  }

  .-show-max960 {
    display: none !important;
  }
}

@media (max-width: 960px) {

  .-show-min961 {
    display: none !important;
  }

  .-show-max960 {
    display: block;
  }
}

@media (min-width: 769px) {

  .-show-min769 {
    display: block;
  }

  .-show-max768 {
    display: none !important;
  }
}

@media (max-width: 768px) {

  .-show-min769 {
    display: none !important;
  }

  .-show-max768 {
    display: block;
  }
}

/*--------------------------------
	font
--------------------------------*/

.dancing-script-font-regular {
  font-family: var(--dancing-script-font);
  font-weight: 400;
  font-style: normal;
}

/*--------------------------------
	FS向け必須
--------------------------------*/

@media (hover: hover) and (pointer: fine) {

  a,
  a img {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #282B2C;
  }

  a:hover,
  a:hover img {
    opacity: 0.6;
    text-decoration: none;
  }
}

.logout.my-false {
  display: none;
}

.login.my-true {
  display: none;
}

.regist.my-true {
  display: none;
}

/*--------------------------------
	formフォーマット
--------------------------------*/

.-reset_form input[type="text"],
.-reset_form input[type="submit"],
.-reset_form input[type="button"],
.-reset_form button,
.-reset_form select,
.-reset_form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

.-reset_form textarea {
  resize: vertical;
}

.-reset_form input[type="submit"],
.-reset_form input[type="button"],
.-reset_form label,
.-reset_form button,
.-reset_form select {
  cursor: pointer;
}

.-reset_form select::-ms-expand {
  display: none;
}

.-reset_form ::placeholder {
  color: #888;
}

.-reset_form ::-ms-input-placeholder {
  color: #888;
}

.-reset_form :-ms-input-placeholder {
  color: #888;
}

/*--------------------------------
	width
--------------------------------*/

.-base {
  max-width: 1200px;
  max-width: min(calc(100% - 40px), 1200px);
  margin-inline: auto;
}

.-middle {
  max-width: 900px;
  max-width: min(calc(100% - 40px), 900px);
  margin-inline: auto;
}

.-min {
  max-width: 800px;
  max-width: min(calc(100% - 40px), 800px);
  margin-inline: auto;
}

.-micro {
  max-width: 750px;
  max-width: min(calc(100% - 40px), 750px);
  margin-inline: auto;
}

/*--------------------------------
	button
--------------------------------*/

.btn__wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px auto 40px;
}

.btn__wrap a {
  margin: 0;
}

/* btn__main */

.btn__main,
.btn__main--black {
  display: block;
  padding: 15px 10px 13px;
  position: relative;
  text-align: center;
  text-decoration: none;
  max-width: 350px;
  width: 100%;
  line-height: 1.4;
  color: #fff;
  border-radius: 4px;
}

.btn__main {
  background-color: #92B5B8;
  margin: 30px auto 40px;
}

.btn__main.multiline {
  text-align: left;
}

.btn__main--black {
  background-color: rgb(0 0 0 / 40%);
  border: 1px solid #fff;
  width: 314px;
}

.btn__main span,
.btn__main--black span,
.btn__contact span {
  background: url(../img/icon_arrow-right_white.svg) no-repeat right center / 6px;
  padding-right: 12px;
  display: inline-block;
}

/* btn__cta */

.btn__cta {
  display: flex;
  justify-content: center;
  border: 1px solid #000;
  font-weight: bold;
  padding: 10px;
}

.btn__cta:nth-of-type(n+2) {
  margin-top: 10px;
}

.btn__cta--text-area {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding-left: 50px;
}

.btn__cta--sub-text {
  font-size: 14px;
}

.btn__cta--title {
  font-size: 18px;
}

.btn__cta--tel .btn__cta--title {
  font-size: 26px;
}

.btn__cta .btn__cta--text-area {
  background-repeat: no-repeat;
  background-position: center left;
}

.btn__cta--tel .btn__cta--text-area {
  background-image: url(../img/icon_cta_tel.svg);
}

.btn__cta--mail .btn__cta--text-area {
  background-image: url(../img/icon_cta_letter.svg);
}

/* btn__contact */

.btn__contact {
  display: block;
  padding: 15px 10px 13px;
  position: relative;
  text-align: center;
  text-decoration: none;
  max-width: 350px;
  width: 100%;
  line-height: 1.4;
  color: #fff;
  border-radius: 4px;
  background-color: #92B5B8;
  margin: 20px auto 40px;
}

.btn__contact span {
  display: inline-flex;
  align-items: center;
}

.btn__contact span::before {
  content: "";
  background: url(../img/icon_mail.svg) no-repeat left center / 24px 16px;
  padding-left: 32px;
  height: 16px;
  display: inline-block;
}

/* btn__qa */

.btn__qa {
  display: block;
  max-width: 500px;
  width: 100%;
  margin: auto;
  background-color: #fff;
  border: 1px solid #92B5B8;
  border-radius: 4px;
  padding: 10px 20px;
}

.btn__qa--inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url(../img/icon_arrow_right.svg) no-repeat right center;
}

.btn__qa--title {
  font-size: 18px;
  font-weight: bold;
  padding-left: 30px;
  padding: 8px 0 8px 45px;
  background: url(../img/icon_qa.svg) no-repeat left center;
  margin-bottom: 10px;
}

.btn__qa--p {
  text-align: center;
  font-size: 14px;
}

/* btn__line */

.btn__line {
  display: block;
  padding: 11px 10px 10px;
  position: relative;
  text-align: center;
  text-decoration: none;
  max-width: 350px;
  width: 100%;
  line-height: 1.4;
  border-radius: 4px;
  border: 1px solid #ccc;
  margin: 5px auto 0;
}

.btn__line span {
  background: url(../img/icon_arrow_right.svg) no-repeat right center / 6px;
  padding-right: 12px;
  display: inline-block;
}

/* btn__log-in */

.btn__log-in {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70px;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #000;
  margin-bottom: 20px;
  color: #282B2C;
}

.btn__log-in span {
  display: block;
  padding-left: 50px;
  position: relative;
  background: url(../img/icon_log-in_black.svg) no-repeat center left;
  background-size: 30PX;
  padding: 10px 0 10px 50px;
  font-weight: bold;
}

@media (max-width: 768px) {

  .btn__main--black {
    width: 240px;
    margin: 30px auto 0;
  }
}

/*--------------------------------
	title
--------------------------------*/

/* title-main */

.title-main {
  text-align: center;
  margin-bottom: 30px;
}

.title-main__en {
  font-family: var(--dancing-script-font);
  color: #B4C3BF;
  font-size: 20px;
}

.title-main__text {
  font-size: 32px;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
}

.title-main__text::after {
  position: absolute;
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  bottom: 0;
  left: 50%;
  background-color: #282B2C;
  transform: translateX(-50%);
}

/* title-line */

.title-line {
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.title-line__text {
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
  position: relative;
  padding-right: 20px;
  background-color: #fff;
}

.title-line__text::after {
  position: absolute;
  content: "";
  width: calc(100% + 145px);
  height: 1px;
  background-color: #333;
  top: 50%;
  left: 0;
  z-index: -1;
}

/* title-donuts */

.title-donuts {
  font-size: 20px;
  font-weight: bold;
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}

.title-donuts::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  background: url(../img/icon_donuts.svg) no-repeat center center / 14px auto;
  width: 14px;
  height: 14px;
  display: block;
}

/* title-center-bold */

.title-center-bold {
  display: block;
  text-align: center;
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 30px;
}

/* title-bg-green */

.title-bg-green {
  font-size: 22px;
  font-weight: bold;
  padding: 7px 10px 5px;
  background-color: #EBF3F3;
  margin-bottom: 20px;
  border-radius: 4px;
}

@media (max-width: 768px) {

  .title-main {
    margin-bottom: 20px;
  }

  .title-main__text {
    font-size: 26px;
  }

  .title-line {
    overflow: unset;
  }

  .title-line__text::after {
    content: none;
  }

  .title-line::after {
    position: absolute;
    content: "";
    display: block;
    width: calc(100vw - 20px);
    width: calc(100% + 20px);
    height: 1px;
    background-color: #333;
    top: 50%;
    left: 0;
    z-index: -1;
  }

  .title-bg-green {
    font-size: 20px;
  }
}

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

#layout-1col {
  grid-template-columns: repeat(1, 1fr);
}

.layout-2col {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 0 50px;
}

.layout-2col__sidebar {
  flex-shrink: 0;
}

@media (max-width: 960px) {

  .layout-2col {
    grid-template-columns: repeat(1, 1fr);
  }

  /* .layout-2col__sidebar,
  .layout-2col__main {
    width: 100%;
  } */
}

/*--------------------------------
	slide
--------------------------------*/

/* slick-slide */

.slide-arrow__prev,
.slide-arrow__next {
  position: absolute;
  top: 120px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  border: none;
  outline: none;
  width: 36px;
  height: 72px;
  background-color: #000c;
  z-index: 1;
  background-position: center;
}

.slide-arrow__prev {
  left: 0;
}

.slide-arrow__next {
  right: 0;
}

.slide-arrow__prev {
  background-image: url('../img/icon_slide_prev.svg');
}

.slide-arrow__next {
  background-image: url('../img/icon_slide_next.svg');
}

/* sp-slide */

@media (max-width: 768px) {

  .sp-slide__wrapper {
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(calc(100% - 100vw) * 0.5);
  }

  .sp-slide {
    display: flex;
    gap: unset;
    justify-content: unset;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .sp-slide__item {
    flex: 0 0 auto;
    width: 55vw;
    max-width: 300px;
    margin-right: 16px;
    box-sizing: border-box;
    margin: 0 0 0 20px;
  }

  .sp-slide__item:last-of-type {
    margin-right: 20px;
  }

  .slide-arrow__prev.is-disabled,
  .slide-arrow__next.is-disabled {
    display: none;
  }

  .slide-arrow__prev,
.slide-arrow__next {
  top: 50%;
}
}

/*--------------------------------
	tag
--------------------------------*/

.tag-area {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 10px 0;
}

.tag__pink,
.tag__orange,
.tag__green,
.tag__blue,
.tag__purple,
.tag__red,
.tag__yellow,
.tag__mint,
.tag__sky,
.tag__gray  {
  font-size: 12px;
  font-weight: bold;
  display: inline-block;
  padding: 4px 7px 3px;
  color: #fff;
  white-space: nowrap;
}

.tag__pink {
  background-color: #d87590;
}

.tag__orange {
  background-color: #e19a5c;
}

.tag__green {
  background-color: #87b87f;
}

.tag__blue {
  background-color: #6c90c4;
}

.tag__purple {
  background-color: #a38abf;
}

.tag__red {
  background-color: #d16968;
}

.tag__yellow {
  background-color: #d5c364;
  color: #333;
}

.tag__mint {
  background-color: #7acbb6;
}

.tag__sky {
  background-color: #78bcd1;
}

.tag__gray {
  background-color: #a9a9a9;
}

.tag__pink--line,
.tag__orange--line,
.tag__green--line,
.tag__blue--line,
.tag__purple--line,
.tag__red--line,
.tag__yellow--line,
.tag__mint--line,
.tag__sky--line,
.tag__gray--line  {
  font-size: 12px;
  font-weight: bold;
  display: inline-block;
  padding: 4px 7px 3px;
  background-color: #fff;
  white-space: nowrap;
  border: 1px solid;
}

.tag__pink--line {
  border-color: #d87590;
  color: #d87590;
}

.tag__orange--line {
  border-color: #e19a5c;
  color: #e19a5c;
}

.tag__green--line {
  border-color: #5f9356;
  color: #5f9356;
}

.tag__blue--line {
  border-color: #6c90c4;
  color: #6c90c4;
}

.tag__purple--line {
  border-color: #a38abf;
  color: #a38abf;
}

.tag__red--line {
  border-color: #d16968;
  color: #d16968;
}

.tag__yellow--line {
  border-color: #d5c364;
  color: #333;
}

.tag__mint--line {
  border-color: #7acbb6;
  color: #7acbb6;
}

.tag__sky--line {
  border-color: #78bcd1;
  color: #78bcd1;
}

.tag__gray--line {
  border-color: #a9a9a9;
  color: #a9a9a9;
}

@media (max-width: 768px) {

  .tag__pink,
  .tag__orange,
  .tag__green {
    font-size: 14px;
  }
}

/*--------------------------------
	accordion
--------------------------------*/

.accordion__title {
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition-duration: 0.2s;
}

.accordion__title:hover {
  opacity: .8;
}

.accordion__inner {
  display: none;
  padding: 0;
  box-sizing: border-box;
}


/****************************************************************

	header

****************************************************************/

.header__wrap {
  padding: 20px 0 0;
}

.header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.header__logo {
  display: block;
  width: clamp(125px, 24vw, 260px);
  height: fit-content;
}

.header__top--right {
  display: flex;
  align-items: center;
  gap: 1.5vw;
  white-space: nowrap;
}

.user-info {
  font-size: clamp(10px, 2vw, 14px);
  background-color: #F7F7F7;
  border: 1px solid #ddd;
  text-align: right;
  padding: 5px 10px;
}

.tel-order {
  font-weight: bold;
  gap: 3px;
}

.tel-order p {
  font-size: 12px;
  text-align: right;
}

.tel-number {
  display: flex;
  align-items: center;
  gap: .50px;
}

.tel-number img {
  width: 16px;
}

.tel-number a {
  font-size: 24px;
}

.icon-nav {
  display: flex;
  list-style: none;
  font-size: 12px;
  align-items: flex-end;
  gap: 1.5vw;
}

.icon-nav__item {
  display: block;
  color: #346057;
  font-weight: bold;
  padding-top: 43px;
  position: relative;
}

.icon-nav__item::after {
  position: absolute;
  content: "";
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 40px;
  height: auto;
  aspect-ratio: 1;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-nav__item--contact {
  display: none;
}

.icon-nav__item--search {
  cursor: pointer;
  transition: .2s;
}

.icon-nav__item--search:hover {
  opacity: 0.8;
}

.icon-nav__item--search::after {
  background-image: url(../img/icon_search_green.svg);
}

.icon-nav__item--log-in::after {
  background-image: url(../img/icon_log-in.svg);
}

.icon-nav__item--mail::after {
  background-image: url(../img/icon_letter_green.svg);
}

.icon-nav__item--browsing-history::after {
  background-image: url(../img/icon_history.svg);
}

.icon-nav__item--favorite::after {
  background-image: url(../img/icon_heart.svg);
}

.sticky-nav {
  position: sticky;
  top: 0;
  padding: 15px 0;
  margin-top: 20px;
  /* background-color: #fff; */
  background-color: #2C4E2F;
  z-index: 200;
}

.sticky-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2vw;
  font-weight: bold;
}

.sticky-nav li {
  position: relative;
}

.sticky-nav li:nth-of-type(n+2)::after {
  position: absolute;
  content: "";
  display: inline-block;
  height: 20px;
  width: 1px;
  top: 2px;
  left: -1vw;
  background-color: #CCCCCC;
}

.sticky-nav li a {
  color: #fff;
}

.search-nav-area {
  background-color: #E8EEE3;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.search-nav-area__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 20px;
}

.search-nav-area__title {
  font-size: 20px;
  font-weight: bold;
}

.search-nav-area .search-area__form {
  max-width: 430px;
}

.search-nav-area .search-area__example {
  text-align: center;
  padding-bottom: 20px;
}

.attention {
  background-color: #eef3eb;
  text-align: center;
  font-size: 14px;
  padding: 10px 0;
  position: sticky;
  top: 64px;
  z-index: 100;
  margin-bottom: 20px;
}

.header__wrap--cart {
  padding: 10px 0;
}

.header__wrap--cart img {
  margin: 0 auto;
}

@media (max-width: 960px) {

  .user-info {
    background-color: unset;
    border: none;
    padding: 0;
  }

  .tel-order {
    display: none;
  }

  .icon-nav__item--mail,
  .icon-nav__item--browsing-history,
  .icon-nav__item--favorite,
  .icon-nav__item--search {
    display: none;
  }

  .icon-nav__item {
    color: inherit;
    font-weight: normal;
    padding-top: 25px;
    line-height: 1;
  }

  .icon-nav__item::after {
    width: 30px;
    height: 25px;
    bottom: 15px;
  }

  .icon-nav__item--contact {
    display: block;
  }

  .icon-nav__item--contact::after {
    background-image: url(../img/icon_contact.svg);
  }

  .icon-nav__item--log-in::after {
    background-image: url(../img/icon_log-in_black.svg);
  }

  .header__wrap {
    padding: 10px;
    max-width: 100%;
  }

  .sticky-nav {
    position: relative;
    top: auto;
    padding: 10px;
    margin-top: 0;
  }

  .sticky-nav .-base {
    max-width: 100%;
  }

  .sticky-nav ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .sticky-nav li a {
    display: block;
    width: 100%;
    font-weight: normal;
    text-align: center;
    color: #fff;
  }

  .sticky-nav li:nth-of-type(n+2)::after {
    background-color: #809181;
  }

  .sticky-nav li.sticky-nav__no-line::after {
    display: none;
  }

  .attention {
    position: fixed;
    bottom: 70px;
    margin-bottom: 0;
    font-size: 11px;
    color: inherit;
    text-align: left;
    padding: 5px 0;
    width: 100%;
    top: auto;
  }

  .attention .-base {
    margin: 0 10px;
  }
}

/*--------------------------------
	ajax調整
--------------------------------*/

.user-info {
  display: none;
}

.fs-clientInfo {
  display: none;
}


/****************************************************************

	menu-parts
  トップページのサイドバーとHMに使用

****************************************************************/

.menu-parts__item {
  margin: 0 auto 20px;
}

/*--------------------------------
	search-area
--------------------------------*/

.search-area {
  padding: 20px;
  text-align: center;
  border-radius: 4px;
  /* font-family: sans-serif; */
  background: url(../img/img_search_bg.jpg) no-repeat center;
}

.search-area.-show-max960 {
  padding: 10px 20px;
  background-color: #efefef;
}

.search-area__title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.search-area__form {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #000;
  background-color: #fff;
  border-radius: 40px;
  overflow: hidden;
  width: 100%;
}

.search-area__input {
  flex: 1;
  padding: 2px 0 0 20px;
  border: none;
  font-size: 14px;
  outline: none;
}

.search-area__input::placeholder {
  color: #8D8D8D;
}

.search-area__button {
  border: none;
  cursor: pointer;
  width: 46px;
  height: auto;
  aspect-ratio: 1;
  background-color: antiquewhite;
  background: url(../img/icon_search.svg) no-repeat center;
}

.search-area__example {
  font-size: 12px;
  margin-top: 10px;
}

/*--------------------------------
	banner-top-area
--------------------------------*/

.banner-top-area {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner__2col {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.menu-overlay .menu-parts .banner__2col,
.layout-2col__sidebar .menu-parts .banner__2col {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
  max-width: 350px;
}

/*--------------------------------
	menu-list
--------------------------------*/

.menu-list__link {
  display: block;
  font-weight: bold;
  padding: 16px 0;
  position: relative;
  border-bottom: 1px solid #ccc;
}

.menu-list__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 10px;
  background: url(../img/icon_arrow_right.svg) no-repeat center;
  transform: translateY(-50%);
  background-size: contain;
}

.menu-list>.menu-list__link:last-of-type {
  border-bottom: 1px solid #ccc;
}

.menu-list>.menu-list__link:first-child {
  margin-top: -8px;
}

.menu-list__link--bg-green {
  display: block;
  background-color: #5B986B;
  color: #fff;
  font-weight: bold;
  padding: 8px 20px;
  position: relative;
  border-radius: 5px;
  margin-top: 5px;
}

.menu-list__link--bg-green:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  background: url(../img/icon_arrow-right_white.svg) no-repeat center;
  transform: translateY(-50%);
  background-size: contain;
}

.menu-list__accordion--top {
  background-color: #5B986B;
  color: #fff;
  font-weight: bold;
  padding: 8px 20px;
  position: relative;
  border-radius: 5px;
  margin-top: 5px;
}

.menu-list__accordion--top::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  background: url(../img/icon_plus_white.svg) no-repeat center;
  transform: translateY(-50%);
  background-size: contain;
}

.menu-list__accordion--top.open::after {
  background: url(../img/icon_minus_white.svg) no-repeat center;
}

.menu-list__accordion--under {
  font-weight: bold;
  padding: 16px 0;
  position: relative;
  border-bottom: 1px solid #ccc;
}

.menu-list__accordion--under::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  background: url(../img/icon_plus_black.svg) no-repeat center;
  transform: translateY(-50%);
  background-size: contain;
}

.menu-list__accordion--under.open {
  border-bottom: none;
}

.menu-list__accordion--under.open::after {
  background: url(../img/icon_minus_black.svg) no-repeat center;
}

.menu-list__accordion--under.open+.accordion__inner {
  margin-bottom: 20px;
}

.menu-list__color {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

.menu-list__color a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}

.menu-list__color a:nth-of-type(odd) {
  padding: 15px 15px 15px 0;
}

.menu-list__color a:nth-of-type(even) {
  padding: 15px 0 15px 15px;
}

.menu-list__color a:nth-of-type(n+3)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  /* 点の高さ（太さ） */
  background-image: repeating-linear-gradient(to right,
      #ccc,
      #ccc 4px,
      /* 点の長さ */
      transparent 4px,
      transparent 8px
      /* 点の間隔 */
    );
}

.menu-list__color a:nth-of-type(odd)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background-image: repeating-linear-gradient(to bottom,
      #ccc,
      #ccc 4px,
      /* 点の長さ */
      transparent 4px,
      transparent 8px
      /* 点の間隔 */
    );
}

.menu-list__color a img {
  width: 40px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}

.menu-list__link--box {
  display: block;
  font-weight: bold;
  padding: 16px;
  position: relative;
  border: 1px solid #ccc;
  color: #282B2C;
  background-color: #ffffff33;
  margin-bottom: 5px;
}

.menu-list__link--box::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 6px;
  height: 10px;
  background: url(../img/icon_arrow_right.svg) no-repeat center;
  transform: translateY(-50%);
  background-size: contain;
}

/*--------------------------------
	feature-menu
--------------------------------*/

.feature-menu {
  background-color: #E6ECE1;
  position: relative;
  padding: 20px 10px;
  border-radius: 5px;
  z-index: 0;
}

.feature-menu::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/img_feature_bg.svg) no-repeat center left;
  background-size: contain;
  border-radius: 5px;
  z-index: -1;
}

.feature-menu__item {
  display: flex;
  color: #346057;
  font-weight: bold;
  text-align: center;
  background-color: #ffffffcc;
  border-radius: 5px;
  height: 70px;
  justify-content: center;
  align-items: center;
}

.feature-menu__for-first span {
  padding-left: 25px;
  background: url(../img/icon_feature_for-first.svg) no-repeat center left;
}

.feature-menu__2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
}

/*--------------------------------
	other-sales-area
--------------------------------*/

.other-sales-area a {
  display: block;
  margin: auto;
  width: fit-content;
}

/*--------------------------------
	banner-bottom-area
--------------------------------*/

.banner-bottom-area a {
  display: block;
  margin: auto;
  width: fit-content;
}

.banner-bottom-area a:nth-of-type(n+2) {
  margin-top: 10px;
}

@media (max-width: 960px) {

  .search-area {
    background: none;
  }
}

@media (max-width: 768px) {

  .search-area__title {
    display: none;
  }

  .search-area__example {
    text-align: left;
  }

  .menu-list__accordion--top {
    padding: 18px 20px;
  }
}


/****************************************************************

	footer

****************************************************************/

footer {
  color: #fff;
  background: url(../img/img_footer_bg.jpg) no-repeat center right 75%;
  background-size: cover;
  position: relative;
  padding: 50px 0 30px;
}

footer::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000080;
}

footer .plainlink,
footer .plainlink:hover,
footer .plainlink:visited {
  color: #fff;
  text-decoration: underline;
}

.footer-inner {
  position: relative;
  z-index: 1;
}

.footer-inner__cart {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-inner__cart a {
  color: #fff;
}

.footer-inner__cart .copyright {
  margin-top: 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-guide__item {
  max-width: 350px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #34362D;
}

.footer-guide__title {
  font-size: 14px;
  padding-left: 15px;
  position: relative;
}

.footer-guide__title::after {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  top: 0.5em;
  top: 5px;
  left: 0;
}

.footer-guide__contents {
  font-size: 14px;
  margin-top: 5px;
}

.footer-sns__title {
  text-align: right;
  font-weight: bold;
}

.footer-sns__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}

.footer-sns__item {
  display: inline-flex;
  width: 35px;
  height: auto;
  aspect-ratio: 1;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 60px;
  font-size: 14px;
}

.footer-nav__block {
  display: flex;
  justify-content: flex-end;
  gap: 10px 20px;
}

.footer-nav__block>div {
  display: flex;
  gap: 10px 20px;
}

.footer-nav__item {
  color: inherit;
}

.footer-bottom__logo-area {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px auto 30px;
}

.copyright {
  text-align: center;
  font-size: 12px;
}

/*--------------------------------
  float-area
--------------------------------*/
.float-btn__page-top,
.float-btn__cart {
  display: block;
  width: 60px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.float-btn__cart {
  height: 154px;
  background-color: rgba(0, 129, 66, 0.7);
  border-radius: 10px 0 0 10px;
  gap: 6px 0;
}

.float-btn__page-top {
  background-color: #555555cc;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 200;
}

.float-btn__page-top,
.float-btn__cart--wrap {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.float-area__cart {
  position: fixed;
  bottom: 120px;
  right: 0px;
  display: flex;
  flex-direction: column;
  gap: 12px 0;
  z-index: 200;
}

.float-area__cart a {
  text-decoration: none;
}

.float-btn__cart.subscribe {
  background-color: rgba(154, 132, 33, 0.7);
}

.float-btn__cart img {
  width: 46px;
}

/* 表示状態 */
.is-visible {
  opacity: 1;
  visibility: visible;
}

/* 非表示状態 */
.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.float-btn__page-top span,
.float-btn__cart span {
  color: #fff;
  font-size: 10px;
}

.float-btn__page-top span {
  margin-top: 5px;
}

.float-btn__cart span {
  margin-top: 2px;
  writing-mode: vertical-lr;
  font-size: 16px !important;
  font-weight: bold;
  letter-spacing: 3px;
}

.float-btn__cart--wrap {
  position: relative;
}

.float-btn__cart--alert {
  background-color: #D35474;
  color: #fff;
  width: 17px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  font-size: 12px;
  text-align: center;
  position: absolute;
  top: -6px;
  left: -6px;
  z-index: 1;
}

.fs-client-cart-count--0,
.fs-client-subscriptionCart-count--0 {
  display: none;
}

@media (max-width: 960px) {

  footer {
    padding-bottom: 100px;
    background-position: center right 48%;
  }

  .footer-nav__block {
    flex-direction: column;
    align-items: flex-end;
  }

  .float-btn__page-top {
    bottom: 110px;
    right: 10px;
  }

  .float-area__cart {
    bottom: 210px;
  }
}

@media (max-width: 768px) {

  .footer-top {
    flex-direction: column-reverse;
    align-items: center;
  }

  .footer-top__right {
    width: 100%;
  }

  .footer-sns__title {
    text-align: center;
  }

  .footer-sns__list {
    justify-content: center;
  }

  .footer-nav {
    margin-top: 30px;
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-nav__block {
    justify-content: flex-start;
  }

  .footer-nav__block>div {
    flex-direction: column;
  }

  .footer-top__left {
    width: 100%;
  }

  .footer-guide__item {
    max-width: none;
    width: 100%;
  }

  .footer-bottom__logo-area {
    flex-direction: column;
    align-items: center;
  }

  footer {
    padding-bottom: 140px;
  }

  footer:has(.footer-inner__cart) {
    padding-bottom: 30px;
  }

  .float-btn__cart {
    width: 45px;
  }

  .float-btn__page-top {
    bottom: 120px;
    right: 10px;
  }

  .float-area__cart {
    bottom: 220px;
  }
}


/****************************************************************

	sp-menu-area

****************************************************************/

.sp-menu-area {
  position: relative;
  z-index: 300;
}

.sp-foot {
  position: fixed;
  bottom: 0;
  display: flex;
  width: 100vw;
}

.sp-foot__item {
  width: 25%;
  list-style: none;
}

.sp-foot__item:nth-of-type(odd) {
  background-color: #2C4E2F;
}

.sp-foot__item:nth-of-type(even) {
  background-color: #426545;
}

.sp-foot__img {
  height: 24px;
  width: 100%;
  object-fit: none;
  margin-top: 11px;
}

.sp-foot__text {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 11px;
  font-weight: bold;
  line-height: 15px;
  color: #fff;
  height: 35px;
}

.sp-foot__text span {
  display: block;
}

/* HM */

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
}

.menu-overlay--active {
  opacity: 1;
  visibility: visible;
}

.menu-overlay__wrapper {
  background: url(../img/img_hm_bg.jpg) no-repeat center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.menu-overlay__header {
  flex: 0 0 auto;
  padding: 20px;
  position: sticky;
  top: 0;
  z-index: 10;
  text-align: right;
}

.menu-overlay__close {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #fff;
  display: inline-flex;
  gap: 10px;
}

.menu-overlay__body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 0 20px 20px;
}

.menu-overlay__body .menu-parts__item {
  margin-bottom: 30px;
}

.menu-overlay__body .title-donuts {
  font-size: 26px;
  text-align: center;
  padding-left: 0;
  margin-bottom: 10px;
}

.menu-overlay__body .title-donuts::before {
  content: none;
}

.menu-overlay__body .btn__cta {
  border-color: #fff;
  color: #fff;
}

.menu-overlay__body .search-area {
  background: none;
  padding: 0;
  text-align: left;
}

.menu-overlay__body .search-area .search-area__title {
  display: none;
}

.menu-overlay__body .btn__cta--mail .btn__cta--text-area {
  background-image: url(../img/icon_cta_letter_white.svg);
}

.menu-overlay__body .btn__cta--tel .btn__cta--text-area {
  background-image: url(../img/icon_cta_tel_white.svg);
}

.menu-overlay__body .menu-list__accordion--top,
.menu-overlay__body .menu-list__link--bg-green {
  padding: 18px 20px;
}

.menu-overlay__body .menu-list__link {
  color: #fff;
}

.menu-overlay__body .menu-list__link::after {
  background-image: url(../img/icon_arrow-right_white.svg);
}

.menu-overlay__body .menu-list__accordion--under::after {
  background-image: url(../img/icon_plus_white.svg);
}

.menu-overlay__body .menu-list__accordion--under.open::after {
  background-image: url(../img/icon_minus_white.svg);
}

.menu-overlay__body .menu-list__color a {
  color: #fff;
}

.menu-overlay__body .feature-menu {
  background-color: #fff;
}

.menu-overlay__body .feature-menu__item {
  color: #fff;
  background-color: rgb(52 96 87 / 80%);
}

.menu-overlay__body .feature-menu__for-first span {
  background-image: url(../img/icon_feature_for-first_white.svg);
}



.menu-overlay__body .menu-list__link--box {
  border: 1px solid #fff;
  color: #fff;
}

.menu-overlay__body .menu-list__link--box::after {
  background: url(../img/icon_arrow-right_white.svg) no-repeat center;
}

.menu-toggle {
  background: inherit;
  border: none;
  width: 100%;
  height: 100%;
  z-index: 1000;
  cursor: pointer;
}