@charset "UTF-8";
/*********************************************************************
* ブレークポイント定義
**********************************************************************/
/*********************************************************************
* メディアクエリー定義
**********************************************************************/
/*********************************************************************
  フォントサイズ
    $font-size: フォントサイズ(必須)
    $line-height: ラインハイト or 空
    $letter-spacing: レタースペーシング or 空
**********************************************************************/
/* ************************************************
 *	共通
 * ************************************************ */
.page__content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 48px 0;
}
@media print, screen and (min-width: 768px) {
  .page__content-wrapper {
    gap: 56px 0;
  }
}
@media print, screen and (min-width: 1024px) {
  .page__content-wrapper {
    gap: 80px 0;
  }
}
.page__content-wrapper.short {
  gap: 40px 0;
}
@media print, screen and (min-width: 768px) {
  .page__content-wrapper.short {
    gap: 48px 0;
  }
}
@media print, screen and (min-width: 1024px) {
  .page__content-wrapper.short {
    gap: 64px 0;
  }
}

/* ************************************************
 *	会社概要（味の農園について）
 * ************************************************ */
.about__page-ttl img {
  margin: 0 auto;
}

.about__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 40px 0;
  margin-top: 40px;
}
@media print, screen and (min-width: 768px) {
  .about__list {
    flex-direction: row;
    gap: 40px 30px;
  }
}
@media print, screen and (min-width: 1024px) {
  .about__list {
    gap: 48px;
  }
}
.about__list li {
  display: flex;
  flex-direction: column;
}
@media print, screen and (min-width: 768px) {
  .about__list li {
    width: calc(33.3333333333% - 20px);
  }
}
@media print, screen and (min-width: 1024px) {
  .about__list li {
    width: calc(33.3333333333% - 32px);
  }
}
.about__list .about__list-text {
  flex-grow: 1;
  margin-bottom: 1em;
}
.about__list .about__list-ttl {
  background-color: #a5895e;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  text-align: center;
  padding: 12px 0;
}
.about__list p {
  margin-top: 8px;
}

/* ************************************************
 *	ごあいさつ
 * ************************************************ */
.goaisatu__main-text-wrapper > p:not(.head) {
  margin-top: 1em;
}

.goaisatu__ceo {
  max-width: 300px;
  margin: 0 auto 24px;
}
@media print, screen and (min-width: 768px) {
  .goaisatu__ceo {
    float: left;
    width: 36%;
    margin: 0 32px 16px 0;
  }
}
@media print, screen and (min-width: 1024px) {
  .goaisatu__ceo {
    margin: 0 56px 16px 0;
  }
}
.goaisatu__ceo figcaption {
  background-color: #F4F3EF;
  color: #5D5B5B;
  font-size: 1.2rem;
  line-height: 1.6;
  padding: 12px;
  margin: 12px 0;
}
@media print, screen and (min-width: 1024px) {
  .goaisatu__ceo figcaption {
    font-size: 1.3rem;
  }
}
.goaisatu__ceo p {
  text-align: center;
}
.goaisatu__ceo .ceo-name {
  margin: 0 auto;
}

.goaisatu__sub-text {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
  background-color: #F5EFE3;
  padding: 24px;
}
@media print, screen and (min-width: 768px) {
  .goaisatu__sub-text {
    gap: 32px 0;
    padding: 40px;
  }
}
.goaisatu__sub-text p {
  padding-top: 8px;
}

/* ************************************************
 *	会社概要
 * ************************************************ */
.office__table {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  line-height: 1.6;
}
@media print, screen and (min-width: 768px) {
  .office__table {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
.office__table dt {
  background-color: #F5EFE3;
  font-weight: 700;
  padding: 12px;
}
@media print, screen and (min-width: 768px) {
  .office__table dt {
    width: 136px;
    background-color: unset;
    border-bottom: 1px solid rgba(40, 38, 38, 0.5);
    padding: 16px;
  }
}
.office__table dd {
  padding: 12px;
}
@media print, screen and (min-width: 768px) {
  .office__table dd {
    width: calc(100% - 136px);
    border-bottom: 1px solid rgba(40, 38, 38, 0.5);
    padding: 16px;
  }
}

.history__table {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  line-height: 1.6;
}
.history__table dt {
  width: 136px;
  font-weight: 700;
  border-bottom: 1px solid rgba(40, 38, 38, 0.5);
  padding: 12px;
}
@media print, screen and (min-width: 768px) {
  .history__table dt {
    width: 160px;
    padding: 16px;
  }
}
.history__table dd {
  width: calc(100% - 136px);
  border-bottom: 1px solid rgba(40, 38, 38, 0.5);
  padding: 12px;
}
@media print, screen and (min-width: 768px) {
  .history__table dd {
    width: calc(100% - 160px);
    padding: 16px;
  }
}

.history__img {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px 0;
  margin-top: 24px;
}
@media print, screen and (min-width: 768px) {
  .history__img {
    flex-direction: row;
    justify-content: center;
    gap: 0 32px;
  }
}
@media print, screen and (min-width: 768px) {
  .history__img img {
    width: 50%;
    max-width: 380px;
  }
}

.production-base dt {
  font-size: 1.6rem;
  font-weight: 700;
  padding: 1.4rem 1.4rem 0;
}
@media print, screen and (min-width: 1024px) {
  .production-base dt {
    font-size: 1.8rem;
  }
}
.production-base dd {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding: 0 1.4rem 1.4rem;
}
.production-base .kankitsu-list li {
  text-indent: -1em;
  margin-left: 1em;
}

.production-base-note {
  margin-top: 1.4rem;
}

/* ************************************************
 *	店長紹介
 * ************************************************ */
.ceo-message {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
}
@media print, screen and (min-width: 768px) {
  .ceo-message {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
  }
}
@media print, screen and (min-width: 768px) {
  .ceo-message .ceo-message-text {
    width: calc(73.9% - 40px);
  }
}
.ceo-message .ceo-message-img {
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .ceo-message .ceo-message-img {
    width: 26.1%;
    max-width: 250px;
    margin: 0;
  }
}

/* ************************************************
 *	味の農園の特徴とは
 * ************************************************ */
.feature-lead {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
}
@media print, screen and (min-width: 768px) {
  .feature-lead {
    display: block;
  }
}
.feature-lead .feature-lead-img {
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .feature-lead .feature-lead-img {
    float: right;
    width: 35.5%;
    max-width: 340px;
    margin: 0 0 16px 40px;
  }
}

.feature-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
  margin-bottom: 16px;
}
@media print, screen and (min-width: 1024px) {
  .feature-list-wrapper {
    gap: 56px 0;
  }
}
.feature-list-wrapper .page__section-ttl {
  margin-bottom: 12px;
}
.feature-list-wrapper .page__section-ttl .--red {
  color: #A30000;
}

/* ************************************************
 *	味の農園コラム
 * ************************************************ */
.column-ttl-small {
  display: inline-block;
  font-size: 1.2rem;
  margin-left: 1em;
}
@media print, screen and (min-width: 1024px) {
  .column-ttl-small {
    font-size: 1.4rem;
  }
}

.beige-box {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
  background-color: #F5EFE3;
  padding: 20px;
  margin-top: 40px;
}
@media print, screen and (min-width: 1024px) {
  .beige-box {
    padding: 24px;
  }
}
.beige-box a {
  display: inline-block;
  text-decoration: underline;
}
@media print, screen and (min-width: 1024px) {
  .beige-box a {
    transition: opacity 0.3s;
  }
  .beige-box a:hover {
    opacity: 0.6;
  }
}
.beige-box a span {
  position: relative;
  display: inline-block;
  text-decoration: underline;
  padding-left: 18px;
}
.beige-box a span::before {
  position: absolute;
  top: 6px;
  left: 0;
  content: "";
  width: 8px;
  height: 14px;
  background-color: #a5895e;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media print, screen and (min-width: 1024px) {
  .beige-box a span::before {
    top: 10px;
  }
}

/* ************************************************
 *	複数ご注文方法
 * ************************************************ */
.multiple-purchase-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px 0;
  margin-top: 48px;
}

.multiple-purchase-content-child .red {
  color: #A30000;
}
.multiple-purchase-content-child .beige-box {
  margin-top: 16px;
}
.multiple-purchase-content-child .beige-box li {
  text-indent: -1em;
  margin-left: 1em;
}
.multiple-purchase-content-child .multiple-purchase-caution {
  text-indent: -1em;
  margin-left: 1em;
}
.multiple-purchase-content-child .multiple-purchase-flow {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
  margin-top: 40px;
}
.multiple-purchase-content-child .multiple-purchase-flow h4 {
  font-size: 1.8rem;
  border-bottom: 1px solid #ccc;
  padding: 0 12px;
  margin-bottom: 8px;
}
@media print, screen and (min-width: 1024px) {
  .multiple-purchase-content-child .multiple-purchase-flow h4 {
    font-size: 2rem;
  }
}
.multiple-purchase-content-child .multiple-purchase-flow h4::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 16px;
  background-color: #a5895e;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  margin-right: 8px;
}
.multiple-purchase-content-child .multiple-purchase-flow p {
  padding: 0 12px;
}

/* ************************************************
 *	お買い物ガイド
 * ************************************************ */
.beginner-guide-index-wrapper {
  display: flex;
  flex-direction: column;
  gap: 56px 0;
  margin-top: 40px;
}
.beginner-guide-index-wrapper a {
  text-decoration: underline;
}

/* ************************************************
 *	ご注文の流れ
 * ************************************************ */
.flow-wrapper {
  display: flex;
  flex-direction: column;
  gap: 56px 0;
  margin-top: 40px;
}
.flow-wrapper p {
  text-indent: -1.25em;
  margin-left: 1.25em;
}
.flow-wrapper p::before {
  content: "●";
  color: #a5895e;
  margin-right: 0.25em;
}

.flow-child-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
  margin-top: 24px;
}
.flow-child-content-wrapper h4 {
  font-size: 1.6rem;
  border-bottom: 1px solid #ccc;
  margin-bottom: 16px;
}
@media print, screen and (min-width: 1024px) {
  .flow-child-content-wrapper h4 {
    font-size: 1.8rem;
  }
}

.flow-img-box figure, .flow-img-box picture {
  display: inline-block;
  width: auto;
  max-width: 440px;
  border: 1px solid #ccc;
  margin-top: 4px;
}
@media print, screen and (min-width: 1024px) {
  .flow-img-box figure, .flow-img-box picture {
    max-width: 834px;
  }
}
.flow-img-box figure.pd, .flow-img-box picture.pd {
  padding: 12px;
}
@media print, screen and (min-width: 1024px) {
  .flow-img-box figure.pd, .flow-img-box picture.pd {
    padding: 16px;
  }
}

/* ************************************************
 *	味の農園のお約束
 * ************************************************ */
.promise-content {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
}
@media print, screen and (min-width: 768px) {
  .promise-content {
    display: block;
  }
}
.promise-content img {
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .promise-content img {
    float: right;
    margin: 0 0 1em 32px;
  }
}

/* ************************************************
 *	プライバシーポリシー
 * ************************************************ */
.policy_lead {
  margin-bottom: 2.5em;
}

.policy_area dt {
  font-weight: 500;
}
.policy_area dd {
  margin-bottom: 2.5em;
}
.policy_area li {
  list-style: disc;
  margin-left: 1em;
}/*# sourceMappingURL=page.css.map */