@charset "UTF-8";
/*
Theme Name: 味の農園
Theme URI:
Author: MojaDesign
Author URI: https://moja-d.com/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: MojaDesign
*/
/*********************************************************************
* ブレークポイント定義
**********************************************************************/
/*********************************************************************
* メディアクエリー定義
**********************************************************************/
/*********************************************************************
  フォントサイズ
    $font-size: フォントサイズ(必須)
    $line-height: ラインハイト or 空
    $letter-spacing: レタースペーシング or 空
**********************************************************************/
/* ************************************************
 *	base
 * ************************************************ */
html, html *, body, header, footer {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
}

html {
  /*サイト全体の基準となるフォントサイズ*/
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  position: relative;
  color: #282626;
  font-size: 1.4rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  font-weight: 500;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  line-height: 2;
  padding: 0;
  margin: 0;
}
@media print, screen and (min-width: 1024px) {
  body {
    font-size: 1.6rem;
  }
}

a[href^="tel:"] {
  cursor: default;
}
@media print, screen and (min-width: 1024px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  a[href^="tel:"]:hover {
    opacity: unset;
    transition: none;
  }
}

.--bold {
  font-weight: bold;
}

/* ************************************************
 *	共通クラス定義
 * *************************************************/
/* コンテンツ枠定義
---------------------------------------------------*/
#content-wrap {
  position: relative;
  overflow: hidden;
}

.content-inner {
  display: flex;
  flex-direction: column;
  max-width: 1344px;
  padding: 16px 5% 0;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  .content-inner {
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 24px 32px 0;
  }
}
.inner {
  max-width: 1344px;
  padding: 0 5%;
  margin: 0 auto;
}
@media print, screen and (min-width: 1024px) {
  .inner {
    padding: 0 32px;
  }
}
.inner.short {
  max-width: 1064px;
}
.inner.middle {
  max-width: 1280px;
}

@media print, screen and (min-width: 1024px) {
  #content {
    width: 75%;
    max-width: 960px;
  }
}

/* アンカーずれ補正
---------------------------------------------------*/
.anchor {
  padding-top: 56px;
  margin-top: -56px;
}
@media print, screen and (min-width: 1024px) {
  .anchor {
    padding-top: 100px;
    margin-top: -100px;
  }
}

/* 明朝体
---------------------------------------------------*/
.mincho {
  font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝体", "Yu Mincho", YuMincho, "MS P明朝", "MS PMincho", serif;
}

/* flexクラス
---------------------------------------------------*/
.flex_between,
.flex_start,
.flex_center,
.flex_end,
.flex_around {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

@media print, screen and (min-width: 768px) {
  .flex_between_tab,
  .flex_start_tab,
  .flex_center_tab,
  .flex_end_tab,
  .flex_around_tab {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

@media print, screen and (min-width: 1024px) {
  .flex_between_pc,
  .flex_start_pc,
  .flex_center_pc,
  .flex_end_pc,
  .flex_around_pc {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

.flex_between,
.flex_between_tab,
.flex_between_pc {
  justify-content: space-between;
}

.flex_start,
.flex_start_tab,
.flex_start_pc {
  justify-content: flex-start;
}

.flex_center,
.flex_center_tab,
.flex_center_pc {
  justify-content: center;
}

.flex_end,
.flex_end_tab,
.flex_end_pc {
  justify-content: flex-end;
}

.flex_around,
.flex_around_tab,
.flex_around_pc {
  justify-content: space-around;
}

.align_stretch {
  align-items: stretch !important;
}

@media print, screen and (min-width: 1024px) {
  .row_reverse {
    flex-direction: row-reverse;
  }
}

@media print, screen and (min-width: 768px) {
  .row_reverse_tab {
    flex-direction: row-reverse;
  }
}

/*	PC／SP切り替え
---------------------------------------------------*/
.sp_only {
  display: block;
}
@media print, screen and (min-width: 768px) {
  .sp_only {
    display: none;
  }
}

.sp_only_ib {
  display: inline-block;
}
@media print, screen and (min-width: 768px) {
  .sp_only_ib {
    display: none;
  }
}

.tab_only {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_only {
    display: block;
  }
}
@media print, screen and (min-width: 1024px) {
  .tab_only {
    display: none;
  }
}

.pc_only {
  display: none;
}
@media print, screen and (min-width: 1024px) {
  .pc_only {
    display: block;
  }
}

.tab_sp_only {
  display: block;
}
@media print, screen and (min-width: 1024px) {
  .tab_sp_only {
    display: none;
  }
}

.tab_pc_only {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_pc_only {
    display: block;
  }
}

.tab_pc_only_ib {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_pc_only_ib {
    display: inline-block;
  }
}

.pc_only_ib {
  display: none;
}
@media print, screen and (min-width: 1024px) {
  .pc_only_ib {
    display: inline-block;
  }
}

/* リンクボタン
---------------------------------------------------*/
a.more-btn {
  display: inline-block;
  color: #A30000;
  font-size: 1.2rem;
  line-height: 1;
  border: 1px solid #A30000;
  border-radius: 9999px;
  padding: 10px 20px;
}
@media screen and (min-width: 1024px) {
  a.more-btn {
    transition: 0.3s;
  }
  a.more-btn:hover {
    background-color: #A30000;
    color: #fff;
    text-decoration: none;
  }
}
a.more-btn span {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  padding-right: 2em;
}
a.more-btn span::after {
  position: absolute;
  right: 0;
  content: "→";
}

/* 見出し
---------------------------------------------------*/
.page_ttl {
  line-height: 1.6;
  margin-bottom: 24px;
}
@media print, screen and (min-width: 768px) {
  .page_ttl {
    margin-bottom: 32px;
  }
}
@media print, screen and (min-width: 1024px) {
  .page_ttl {
    margin-bottom: 40px;
  }
}
.page_ttl h1 {
  font-size: 2rem;
}
@media print, screen and (min-width: 768px) {
  .page_ttl h1 {
    font-size: 2.4rem;
  }
}
@media print, screen and (min-width: 1024px) {
  .page_ttl h1 {
    font-size: 3.2rem;
  }
}

.page__section-ttl {
  font-size: 2rem;
  line-height: 1.6;
  border-bottom: 1px solid #282626;
  padding-bottom: 8px;
  margin-bottom: 16px;
}
@media print, screen and (min-width: 1024px) {
  .page__section-ttl {
    font-size: 2.4rem;
    margin-bottom: 24px;
  }
}

.page__block-ttl {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 8px;
}
@media print, screen and (min-width: 1024px) {
  .page__block-ttl {
    font-size: 2.2rem;
  }
}

/* ************************************************
 *	ヘッダー
 * *************************************************/
/* 共通
----------------------------------------------*/
.fs-l-header {
  padding: 0;
}

.fs-l-header__contents {
  max-width: 1280px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .fs-l-header__contents {
    align-items: center;
    padding: 16px 0;
  }
}
.header-contents-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  height: 62px;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  .header-contents-inner {
    height: 104px;
  }
}
.header-contents-left {
  display: flex;
  align-items: center;
}

.header-contents-right {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  height: 100%;
}

.fs-p-headerUtilityMenu {
  height: 100%;
}

.header-contents-inner .fs-p-searchForm {
  display: none;
}

@media screen and (min-width: 1024px) {
  .header-contents-inner .fs-p-searchForm {
    display: block;
    margin-left: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .header-contents-inner .fs-p-searchForm {
    margin-left: 40px;
  }
}
/* ロゴ
----------------------------------------------*/
.fs-l-header__logo {
  padding: 0;
  margin-left: 8px;
}

.fs-p-logo {
  padding: 0;
}

.fs-p-logo__image {
  width: auto;
  height: 36px;
}

@media screen and (min-width: 1024px) {
  .fs-l-header__logo {
    width: 22vw;
    max-width: 300px;
  }
  /*
  	.fs-l-header__logo .fs-p-logo {
  		align-items: flex-start;
  		padding: 0;
  	}
  */
  .fs-p-logo__image {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 1024px) {
  .fs-l-header__logo a {
    transition: 0.3s;
  }
  .fs-l-header__logo a:hover {
    opacity: 0.6;
  }
}
/* 検索窓
----------------------------------------------*/
.fs-p-inputGroup {
  position: relative;
  display: flex;
  align-items: center;
  background: none;
  border: none;
}

input.fs-p-searchForm__input {
  flex-grow: 1;
  width: calc(100% - 2.2em);
  color: #333333;
  font-size: 14px;
  border: none;
  border-radius: 5px;
  padding: 6px 31px 6px 10px;
}

@media screen and (min-width: 1024px) {
  input.fs-p-searchForm__input {
    width: 24vw;
    max-width: 280px;
    border: 1px solid #413027;
  }
}
.fs-p-inputGroup__button {
  position: absolute;
  right: 10px;
  background: url(https://www.ajfarm.com/images/renew/common/icon-search.svg) no-repeat;
  background-position: center;
  background-size: cover;
  width: 21px;
  height: 20px;
  text-indent: -999px;
  border: none;
  overflow: hidden;
}

.fs-p-inputGroup__button::before {
  content: none;
}

/* 右側メニュー・フリーダイヤル
----------------------------------------------*/
@media screen and (min-width: 1024px) {
  .header-info {
    margin-bottom: auto;
  }
}
.fs-p-headerUtilityMenu__list {
  display: flex;
  align-items: stretch;
  height: 100%;
}

@media screen and (min-width: 1024px) {
  .fs-p-headerUtilityMenu__list {
    gap: 0 8px;
    height: auto;
    margin-bottom: 14px;
  }
}
.fs-p-headerUtilityMenu__list > li + li {
  margin: 0;
}

.fs-p-headerUtilityMenu__list a::before {
  content: none;
  border: none;
}

.fs-pt-menu__heading {
  height: 100%;
}

.header-info .fs-pt-menu a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px 0;
  height: 100%;
  color: #A30000 !important;
  font-size: 1rem !important;
  line-height: 1;
  padding: 0;
  margin: 0;
}

@media screen and (min-width: 1024px) {
  .header-info .fs-pt-menu a {
    flex-direction: row;
    gap: 0 8px;
    background-color: #F5EFE3;
    font-size: 1.2rem !important;
    border-radius: 0 0 8px 8px;
    padding: 8px 12px;
    transition: opacity 0.3s;
  }
  .header-info .fs-pt-menu a:hover {
    opacity: 0.6;
  }
}
.fs-p-headerUtilityMenu__register, .fs-p-headerUtilityMenu__login {
  display: none;
}

@media screen and (min-width: 1024px) {
  .fs-p-headerUtilityMenu__register, .fs-p-headerUtilityMenu__login {
    display: block;
  }
}
.fs-p-headerUtilityMenu__list .fs-p-headerUtilityMenu__login a::before {
  content: "";
  width: 11px;
  height: 15px;
  background: url(https://www.ajfarm.com/images/renew/common/header-menu-icon-login.svg);
  background-size: contain;
}

.fs-p-headerUtilityMenu__list .fs-p-headerUtilityMenu__register a::before {
  content: "";
  width: 12px;
  height: 16px;
  background: url(https://www.ajfarm.com/images/renew/common/header-menu-icon-register.svg);
  background-size: contain;
}

.fs-p-headerUtilityMenu__list .my-page a::before {
  content: "";
  width: 30px;
  height: 28px;
  background: url(https://www.ajfarm.com/images/renew/common/header-menu-icon-mypage.svg);
  background-size: contain;
}

@media screen and (min-width: 1024px) {
  .fs-p-headerUtilityMenu__list .my-page a::before {
    width: 15px;
    height: 14px;
  }
}
.header-tel {
  max-width: 316px;
}

/* カートボタン
----------------------------------------------*/
.header-contents #fs_p_scrollingCartButton {
  position: unset;
  width: 62px;
  height: 100%;
  margin-left: 12px;
}

@media screen and (min-width: 1024px) {
  .header-contents #fs_p_scrollingCartButton {
    width: 104px;
    height: 104px;
    margin-left: 40px;
  }
}
.header-contents .fs-p-scrollingCartButton__button {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: #a5895e;
  line-height: 1;
  text-align: center;
  opacity: 1;
}

.fs-p-scrollingCartButton__icon {
  font-size: 3.2rem;
}

@media screen and (min-width: 1024px) {
  .fs-p-scrollingCartButton__icon {
    font-size: 5.4rem;
  }
}
.cart-img {
  width: 28px;
  height: auto;
  margin-left: 6px;
}

@media screen and (min-width: 1024px) {
  .cart-img {
    width: 40px;
    margin-left: 8px;
  }
}
.fs-p-scrollingCartButton__label {
  display: block;
  color: #fff;
  font-size: 1rem;
  margin-top: 6px;
}

@media screen and (min-width: 1024px) {
  .fs-p-scrollingCartButton__label {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 8px;
  }
}
.fs-p-cartItemNumber {
  background: #b2131a;
}

/* グロナビ
----------------------------------------------*/
.fs-p-headerNavBar {
  border-bottom: none;
  background: #A30000;
}

a.header__register-btn {
  display: block;
  width: 100%;
  background-color: #F1EEDB;
  color: #523E1E;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 10px 0;
}

@media screen and (min-width: 1024px) {
  a.header__register-btn {
    display: none;
  }
}
.header__register-btn span {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__register-btn span i {
  position: relative;
  display: flex;
  align-items: center;
  width: 18px;
  height: 18px;
  background-color: #523E1E;
  border-radius: 50%;
  margin-left: 8px;
}

.header__register-btn span i::after {
  position: absolute;
  left: 7px;
  content: "";
  width: 5px;
  height: 8px;
  background-color: #F1EEDB;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.fs-p-headerNavBar .fs-p-headerNavigation__search {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px;
}

@media screen and (min-width: 1024px) {
  .fs-p-headerNavBar .fs-p-headerNavigation__search {
    display: none;
  }
}
.fs-p-headerNavigation {
  max-width: 1280px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.fs-p-headerUtilityMenu__list a:link {
  font-weight: bold;
  font-size: 1.1rem;
}

@media screen and (min-width: 1024px) {
  .fs-p-headerUtilityMenu__list a:link {
    font-size: 1.3rem;
  }
}
.fs-p-headerNavigation__list {
  position: fixed;
  left: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  list-style: none;
  width: 100%;
  background: #A30000;
  margin: 0;
  padding: 0;
  z-index: 1;
}

@media screen and (min-width: 1024px) {
  .fs-p-headerNavigation__list {
    position: unset;
    gap: 0 32px;
    width: auto;
  }
}
.fs-p-headerNavigation__listItem {
  flex-grow: 1;
  min-width: auto;
}

a.fs-p-headerNavigation__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  padding: 8px;
}

@media screen and (min-width: 768px) {
  a.fs-p-headerNavigation__link {
    font-size: 1.4rem;
    font-weight: bold;
    padding: 12px;
  }
}
@media screen and (min-width: 1024px) {
  a.fs-p-headerNavigation__link {
    font-size: 1.6rem;
  }
  a.fs-p-headerNavigation__link span {
    letter-spacing: 0.1em;
    text-indent: 0.1em;
  }
}
a.fs-p-headerNavigation__link img {
  width: 24px;
  margin-bottom: 8px;
}

@media screen and (min-width: 768px) {
  a.fs-p-headerNavigation__link img {
    width: 30px;
  }
}
@media screen and (min-width: 768px) {
  .fs-l-header__utility {
    grid-template-rows: auto;
  }
  .fs-l-header__utility *:first-child {
    padding-bottom: 5px !important;
  }
}
/* ************************************************ 
 * サイドバー
 * ************************************************ */
.fs-l-sideArea {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
  width: 100%;
  margin-top: 56px;
}

@media screen and (min-width: 1024px) {
  .fs-l-sideArea {
    width: 22%;
    max-width: 280px;
    margin-top: 0;
  }
}
.side__ttl {
  font-size: 1.6rem;
  border-bottom: 1px solid rgba(65, 48, 39, 0.5);
  padding-bottom: 16px;
  margin: 0;
}

.side__post-category li {
  border-bottom: 1px solid rgba(65, 48, 39, 0.5);
}
.side__post-category li.current-cat a {
  color: #a5895e;
  font-weight: 700;
}
.side__post-category li .children {
  margin: 0 !important;
}

.side__post-category li a {
  display: block;
  padding: 8px;
}

@media print, screen and (min-width: 1024px) {
  .side__post-category li a {
    transition: opacity 0.3s;
  }
  .side__post-category li a:hover {
    text-decoration: none;
    opacity: 0.6;
  }
}
.side__post-category li .children li {
  border-top: 1px solid rgba(65, 48, 39, 0.5);
  border-bottom: none;
}
.side__post-category li .children li a {
  padding-left: calc(8px + 1em);
}
.side__post-category li .children li .children li a {
  padding-left: calc(8px + 2em);
}

.side__category li {
  border-bottom: 1px solid rgba(65, 48, 39, 0.5);
}

.side__category li a {
  display: block;
  color: #413027;
  font-weight: 700;
  padding: 16px 8px 16px 64px;
}

@media screen and (min-width: 768px) {
  .side__category li a {
    transition: opacity 0.3s;
  }
  .side__category li a:hover {
    text-decoration: none;
    opacity: 0.6;
  }
}
.side__category li a.side__item-osusume {
  background: url(https://www.ajfarm.com/images/renew/common/icon-side-osusume.svg) no-repeat;
  background-position: 16px center;
  background-size: 36px;
}

.side__category li a.side__item-sakuranbo {
  background: url(https://www.ajfarm.com/images/renew/common/icon-side-sakuranbo.webp) no-repeat;
  background-position: 16px center;
  background-size: 36px;
}

.side__category li a.side__item-melon {
  background: url(https://www.ajfarm.com/images/renew/common/icon-side-melon.webp) no-repeat;
  background-position: 16px center;
  background-size: 36px;
}

.side__category li a.side__item-suika {
  background: url(https://www.ajfarm.com/images/renew/common/icon-side-suika.webp) no-repeat;
  background-position: 16px center;
  background-size: 36px;
}

.side__category li a.side__item-dadacha {
  background: url(https://www.ajfarm.com/images/renew/common/icon-side-dadacha.webp) no-repeat;
  background-position: 16px center;
  background-size: 36px;
}

.side__category li a.side__item-momo {
  background: url(https://www.ajfarm.com/images/renew/common/icon-side-momo.webp) no-repeat;
  background-position: 16px center;
  background-size: 36px;
}

.side__category li a.side__item-sumomo {
  background: url(https://www.ajfarm.com/images/renew/common/icon-side-sumomo.webp) no-repeat;
  background-position: 16px center;
  background-size: 36px;
}

.side__category li a.side__item-wanashi {
  background: url(https://www.ajfarm.com/images/renew/common/icon-side-wanashi.webp) no-repeat;
  background-position: 16px center;
  background-size: 36px;
}

.side__category li a.side__item-budou {
  background: url(https://www.ajfarm.com/images/renew/common/icon-side-budou.webp) no-repeat;
  background-position: 16px center;
  background-size: 36px;
}

.side__category li a.side__item-lafrance {
  background: url(https://www.ajfarm.com/images/renew/common/icon-side-lafrance.webp) no-repeat;
  background-position: 16px center;
  background-size: 36px;
}

.side__category li a.side__item-ringo {
  background: url(https://www.ajfarm.com/images/renew/common/icon-side-ringo.webp) no-repeat;
  background-position: 16px center;
  background-size: 36px;
}

.side__category li a.side__item-shounaigaki {
  background: url(https://www.ajfarm.com/images/renew/common/icon-side-shounaigaki.webp) no-repeat;
  background-position: 16px center;
  background-size: 36px;
}

.side__category li a.side__item-tosabuntan {
  background: url(https://www.ajfarm.com/images/renew/common/icon-side-tosabuntan.webp) no-repeat;
  background-position: 16px center;
  background-size: 36px;
}

.side__category li a.side__item-yasaiset {
  background: url(https://www.ajfarm.com/images/renew/common/icon-side-yasaiset.webp) no-repeat;
  background-position: 16px center;
  background-size: 36px;
}

.side__category li a.side__item-asparagus {
  background: url(https://www.ajfarm.com/images/renew/common/icon-side-asparagus.webp) no-repeat;
  background-position: 16px center;
  background-size: 36px;
}

.side__category li a.side__item-gyuu {
  background: url(https://www.ajfarm.com/images/renew/common/icon-side-gyuu.webp) no-repeat;
  background-position: 16px center;
  background-size: 36px;
}

.side__category li a.side__item-okome {
  background: url(https://www.ajfarm.com/images/renew/common/icon-side-okome.webp) no-repeat;
  background-position: 16px center;
  background-size: 36px;
}

.side__category li a.side__item-omochi {
  background: url(https://www.ajfarm.com/images/renew/common/icon-side-omochi.webp) no-repeat;
  background-position: 16px center;
  background-size: 36px;
}

.side__category li a.side__item-soba {
  background: url(https://www.ajfarm.com/images/renew/common/icon-side-soba.webp) no-repeat;
  background-position: 16px center;
  background-size: 36px;
}

.side__category li a.side__item-sake {
  background: url(https://www.ajfarm.com/images/renew/common/icon-side-sake.webp) no-repeat;
  background-position: 16px center;
  background-size: 36px;
}

.side__category li a.side__item-juice {
  background: url(https://www.ajfarm.com/images/renew/common/icon-side-juice.webp) no-repeat;
  background-position: 16px center;
  background-size: 36px;
}

.side__category li a.side__item-tokusanhin {
  background: url(https://www.ajfarm.com/images/renew/common/icon-side-tokusanhin.webp) no-repeat;
  background-position: 16px center;
  background-size: 36px;
}

.side__category li a.side__item-kakouhin {
  background: url(https://www.ajfarm.com/images/renew/common/icon-side-kakouhin.webp) no-repeat;
  background-position: 16px center;
  background-size: 36px;
}

.side__category li a.side__item-sakura {
  background: url(https://www.ajfarm.com/images/renew/common/icon-side-sakura.webp) no-repeat;
  background-position: 16px center;
  background-size: 36px;
}

.side__bnr {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  margin-top: 40px;
}

.side__bnr img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  .side__bnr a {
    transition: 0.3s;
  }
  .side__bnr a:hover {
    opacity: 0.6;
  }
}
a.multiple-purchase-link {
  display: inline-block;
  text-decoration: underline;
  margin-top: 40px;
}

/* ************************************************
 * googlemap
 * ************************************************ */
.gmap {
  width: 100%;
  position: relative;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .gmap {
    padding-bottom: 33.78%;
  }
}
.gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ************************************************
 * 404
 * ************************************************ */
.notfound_txt {
  font-size: 1.6rem;
}
@media print, screen and (min-width: 1024px) {
  .notfound_txt {
    font-size: 2.2rem;
  }
}

/* ************************************************
 * reCAPTCHA
 * ************************************************ */
.grecaptcha-badge {
  visibility: hidden;
}

/* ************************************************
 *	パンくずリスト
 * ************************************************ */
.breadcrumbs_wrapper {
  width: 100%;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
}
.breadcrumbs_wrapper .bre {
  display: flex;
  flex-wrap: wrap;
  gap: 0 4px;
  max-width: 1344px;
  padding: 5px 5%;
  margin: 0 auto;
}
@media print, screen and (min-width: 1024px) {
  .breadcrumbs_wrapper .bre {
    gap: 0 6px;
    padding: 5px 32px;
  }
}
.breadcrumbs_wrapper span {
  display: inline-block;
  font-size: 1rem;
}
@media print, screen and (min-width: 768px) {
  .breadcrumbs_wrapper span {
    font-size: 1.2rem;
  }
}
.breadcrumbs_wrapper a {
  display: inline-block;
  font-size: 1rem;
}
@media print, screen and (min-width: 768px) {
  .breadcrumbs_wrapper a {
    font-size: 1.2rem;
  }
}

/* ************************************************ 
 * フッター 
 * ************************************************ */
.fs-l-footer {
  background-color: unset;
  font-size: 14px;
  line-height: 1.6em;
  border-top: none;
  padding-top: 20px;
  margin-top: 80px;
}

.fs-l-footer__contents {
  max-width: 100%;
}

.fs-l-footer__contents > * {
  padding: 0;
}

/* フッターナビゲーション
----------------------------------------------*/
.footer__nav {
  max-width: 1344px;
  padding: 0 5%;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  .footer__nav {
    padding: 0 32px;
  }
}
.footer__nav-inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  border-top: 1px solid rgba(65, 48, 39, 0.5);
}

@media screen and (min-width: 768px) {
  .footer__nav-inner {
    flex-direction: row;
    gap: 32px 0;
    border-top: none;
  }
}
@media screen and (min-width: 1024px) {
  .footer__nav-inner {
    gap: 0;
  }
}
.footer__nav-inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  border-top: 1px solid rgba(65, 48, 39, 0.5);
}

@media screen and (min-width: 768px) {
  .footer__nav-inner {
    flex-direction: row;
    gap: 32px 0;
    border-top: none;
  }
}
@media screen and (min-width: 1024px) {
  .footer__nav-inner {
    gap: 0;
  }
}
.footer__nav-child {
  padding: 24px 16px;
  border-bottom: 1px solid rgba(65, 48, 39, 0.5);
}

@media screen and (min-width: 768px) {
  .footer__nav-child {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50%;
    border-bottom: none;
  }
}
@media screen and (min-width: 1024px) {
  .footer__nav-child {
    width: 25%;
    border-right: 1px solid rgba(65, 48, 39, 0.5);
    padding: 24px 32px;
  }
  .footer__nav-child:first-child {
    border-left: 1px solid rgba(65, 48, 39, 0.5);
  }
}
.footer__nav-icon {
  display: grid;
  place-items: center;
  height: 68px;
  margin: 0;
}

.footer__nav-icon img {
  width: auto;
  height: 100%;
}

.footer__nav-ttl {
  font-size: 16px;
  text-align: center;
  margin: 24px 0;
}

.footer__nav-text {
  line-height: 1.8;
  margin-top: 24px;
}

@media screen and (min-width: 1024px) {
  .footer__nav-text {
    font-size: 1.6rem;
  }
}
.footer__nav-text p {
  margin: 0;
}

.footer__nav-text li {
  text-indent: -1em;
  margin-left: 1em;
}

.footer__nav-text .muryou {
  display: block;
  background-color: #A30000;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  padding: 12px;
  margin: 12px 0;
}

.footer__nav-btn {
  text-align: center;
  margin-top: 24px;
}

.footer__nav-btn a {
  display: inline-block;
  color: #A30000;
  font-size: 1.2rem;
  line-height: 1;
  border: 1px solid #A30000;
  border-radius: 9999px;
  padding: 10px 20px;
}

@media screen and (min-width: 1024px) {
  .footer__nav-btn a {
    transition: 0.3s;
  }
  .footer__nav-btn a:hover {
    background-color: #A30000;
    color: #fff;
    text-decoration: none;
  }
}
.footer__nav-btn span {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  padding-right: 2em;
}

.footer__nav-btn span::after {
  position: absolute;
  right: 0;
  content: "→";
}

/* フッター会社情報
----------------------------------------------*/
.footer__info {
  background-color: #F5EFE3;
  padding: 40px 0;
  margin-top: 56px;
}

@media screen and (min-width: 768px) {
  .footer__info {
    padding: 56px 0;
  }
}
.footer__logo {
  width: 277px;
  margin: 0 auto 24px;
}

@media screen and (min-width: 768px) {
  .footer__logo {
    margin: 0 auto 32px;
  }
}
@media screen and (min-width: 1024px) {
  .footer__logo {
    margin: 0 0 16px;
  }
}
.footer__info-inner {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
  color: #413027;
}

@media screen and (min-width: 768px) {
  .footer__info-inner {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 32px 64px;
  }
}
@media screen and (min-width: 1024px) {
  .footer__info-inner {
    justify-content: space-between;
    gap: 0;
  }
}
.footer__info-address {
  line-height: 1.8;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .footer__info-address {
    text-align: left;
  }
}
@media screen and (min-width: 1024px) {
  .footer__info-address {
    font-size: 1.5rem;
  }
}
.footer__info-address p {
  margin: 0;
}

.footer__info-address p span {
  display: block;
}

@media screen and (min-width: 1280px) {
  .footer__info-address p span {
    display: inline-block;
  }
}
a.footer__instagram-btn {
  display: inline-block;
  background: url(https://www.ajfarm.com/images/renew/common/icon-instagram-red.svg) no-repeat;
  background-position: left center;
  background-size: 18px auto;
  color: #A30000;
  padding-left: 24px;
  margin-top: 8px;
}

.footer__info-tel {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .footer__info-tel {
    text-align: left;
  }
}
.footer__info-ttl {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 5px;
}

.footer__info-ttl span {
  display: block;
  color: #A30000;
  font-size: 1.6rem;
}

@media screen and (min-width: 1280px) {
  .footer__info-ttl span {
    display: inline-block;
  }
}
.footer__tel-btn {
  display: block;
  width: 269px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .footer__tel-btn {
    margin: 0;
  }
}
@media screen and (min-width: 1024px) {
  .footer__tel-btn {
    pointer-events: none;
  }
}
.footer__contact-btn {
  display: inline-block;
  background-color: #a5895e;
  line-height: 1;
  border-radius: 10px;
  padding: 10px 40px;
  transition: 0.3s;
}

@media screen and (min-width: 1024px) {
  .footer__contact-btn:hover {
    text-decoration: none;
    opacity: 0.6;
  }
}
.footer__contact-btn span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 1.6rem;
}

.footer__contact-btn span img {
  margin-right: 10px;
}

.footer__info-point {
  width: 100%;
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .footer__info-point {
    max-width: 640px;
  }
}
@media screen and (min-width: 1024px) {
  .footer__info-point {
    width: 40%;
    max-width: 512px;
  }
}
.footer__info-point-list {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
}

@media screen and (min-width: 768px) {
  .footer__info-point-list {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}
.footer__info-point-list li {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  padding: 16px 24px;
}

@media screen and (min-width: 768px) {
  .footer__info-point-list li {
    width: 48%;
    padding: 16px;
  }
}
.footer__info-point-icon {
  position: absolute;
  top: -8px;
  left: -8px;
}

.footer__info-point-ttl {
  color: #A30000;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 10px;
}

/* フッターリンク
----------------------------------------------*/
.footer__link-area {
  background-color: #A30000;
  padding: 16px 0;
}

@media screen and (min-width: 1024px) {
  .footer__link-area {
    padding: 24px 0;
  }
}
.footer__link-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1em 0;
}

@media screen and (min-width: 1024px) {
  .footer__link-menu ul {
    flex-direction: row;
    justify-content: center;
    gap: 0;
    line-height: 1;
  }
}
@media screen and (min-width: 1024px) {
  .footer__link-menu li:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.5);
  }
}
.footer__link-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
}

@media screen and (min-width: 1024px) {
  .footer__link-menu li a {
    padding: 0 16px;
    transition: opacity 0.3s;
  }
  .footer__link-menu li a:hover {
    text-decoration: none;
    opacity: 0.6;
  }
}
.footer__link-menu li a::after {
  position: absolute;
  right: 0;
  content: "";
  width: 5px;
  height: 5px;
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(135deg);
}

@media screen and (min-width: 1024px) {
  .footer__link-menu li a::after {
    content: none;
  }
}
/* コピーライト
----------------------------------------------*/
.fs-p-footerCopyright {
  background-color: #A30000;
  color: #fff;
  text-align: center;
  padding: 12px 0;
  margin-bottom: 58px;
}

.fs-p-footerCopyright__text {
  font-size: 1.2rem;
}

@media screen and (min-width: 1024px) {
  .fs-p-footerCopyright {
    margin-bottom: 0;
  }
}/*# sourceMappingURL=style.css.map */