/* カスタマイズ用CSS */

/* -------------------
 * 基本スタイル 
---------------------- */
html {
  scroll-behavior: initial !important;
}
body {
  font-size: 16px;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #404040;
  line-height: normal;
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}
main {
  padding-top: 120px;
}
.inner {
  margin: 0 auto;
  padding: 0 20px;
}
a,
a:hover {
  color: inherit;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    color: inherit;
  }
}
img {
  max-width: 100%;
}
ul,
ol {
  padding-left: 0;
  margin: 0;
}
ul li,
ol li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: 16px;
}
span.ib {
  display: inline-block;
}
p {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  main {
    padding-top: 150px;
  }
}

button {
  border: none;
}

/* -------------------
 * 共通スタイル 
---------------------- */
/* section */
.p-section {
  padding: 100px 0;
}
.p-section.bg-gray {
  background-color: #f8f8f5;
}
.p-section.bg-dot {
  background: url(/html/user_data/assets/img/top/bg.png) no-repeat top center / cover;
}
.p-section .inner {
  max-width: 1090px;
}
@media screen and (max-width: 768px) {
  .p-section {
    padding: 80px 0;
  }
  .p-section.bg-dot {
    background-image: url(/html/user_data/assets/img/top/sp/bg.jpg);
  }
}

/* title */
.p-title {
  font-size: 28px;
  color: #569450;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  letter-spacing: 1.4px;
  text-align: center;
  font-weight: 700;
  margin: 0;
  line-height: normal;
}
.p-title span {
  position: relative;
}
.p-title.icon-top span {
  padding-top: 35px;
}
.p-title.icon-top span::before {
  position: absolute;
  content: "";
  width: 42px;
  height: 31px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(/html/user_data/assets/img/common/icon-title01.png) no-repeat center center / contain;
}
.p-title.icon-side span {
  padding: 0 48px;
}
.p-title.icon-side span::before,
.p-title.icon-side span::after {
  position: absolute;
  content: "";
  width: 48px;
  height: 35px;
  top: 50%;
  background: url(/html/user_data/assets/img/common/icon-title02.png) no-repeat center center / contain;
}
.p-title.icon-side span::before {
  left: 0;
  transform: translateY(-50%);
}
.p-title.icon-side span::after {
  right: 0;
  transform: translateY(-50%) scale(-1, 1);
}
@media screen and (max-width: 768px) {
  .p-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 576px) {
  .p-title.icon-side span {
    padding: 0 40px;
  }
  .p-title.icon-side span::before,
  .p-title.icon-side span::after {
    width: 40px;
    height: 30px;
  }
}

/* text */
.p-text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.16px;
  font-family: "zen-kaku-gothic-antique", sans-serif;
  text-align: center;
}
.p-text br {
  display: none;
}
.p-text br.db {
  display: block;
}
@media screen and (max-width: 768px) {
  .p-text {
    line-height: calc(28 / 16);
  }
  .p-text br {
    display: block;
  }
}

/* button */
.p-button {
  max-width: 240px;
  margin: 60px auto 0;
}
.p-button a,
.p-button button {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 700;
  position: relative;
  transition: opacity 0.3s;
}
.p-button:not(.form) a {
  padding: 16px 0;
  font-size: 18px;
  letter-spacing: 0.18px;
  border-radius: 100px;
}
.p-button:not(.form) a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 10px solid #ffffff;
  border-right: 0;
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
}
.p-button.green a,
.p-button.green button {
  background-color: #477a00;
  color: #fff;
}
.p-button.green.-light a,
.p-button.green.-light button {
  background-color: #8cac34;
  color: #fff;
}
.p-button.gray a,
.p-button.gray button {
  background-color: #b2b2b0;
}
.p-button.orange a,
.p-button.orange button {
  background-color: #edb348;
  color: #fff;
}
.p-button.white a,
.p-button.white button {
  background-color: #fff;
  color: #569450;
  border: solid 1px #569450;
}
.p-button.white a::after {
  border-left: 10px solid #569450;
}
@media (hover: hover) and (pointer: fine) {
  .p-button a:hover,
  .p-button button:hover {
    opacity: 0.8;
    transition: opacity 0.3s;
  }
}
.p-button.form {
  max-width: 240px;
  border-radius: 7px;
  margin: 50px auto 0;
}
.p-button.form a,
.p-button.form button {
  border-radius: 7px;
  font-size: 16px;
  padding: 13px 0;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 576px) {
  .p-button {
    max-width: 208px;
    margin: 40px auto 0;
  }
  .p-button a,
  .p-button button {
    font-size: 16px;
    padding: 16px 0;
  }
}

/* lower-mv */
.p-lower-mv .inner {
  max-width: 1210px;
}
.p-lower-mv-title {
  font-size: 28px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: #569450;
  text-align: center;
  padding: 54px 0 30px;
  border-bottom: dashed 1px #c5d599;
  line-height: normal;
}
.p-lower-mv-title span {
  position: relative;
  padding-right: 40px;
}
.p-lower-mv-title span::after {
  position: absolute;
  content: "";
  width: 43px;
  height: 32px;
  bottom: -7px;
  right: 0;
  transform: scale(-1, 1);
  background: url(/html/user_data/assets/img/common/icon-title02.png) no-repeat center center / contain;
}
@media screen and (max-width: 576px) {
  .p-lower-mv-title {
    font-size: 24px;
    letter-spacing: 0.24px;
    padding: 20px 0;
  }
  .p-lower-mv-title span::after {
    width: 40px;
    height: 30px;
  }
}

/* product */
.p-product-list {
  display: flex;
  gap: 65px 26px;
  flex-wrap: wrap;
}
.p-product-item {
  width: calc((100% / 4) - 26px * 3 / 4);
}
.p-product-item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  padding: 30px 12px 20px;
  background-color: #fff;
  border-radius: 20px;
  transition: opacity 0.3s;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .p-product-item a:hover {
    opacity: 0.7;
    transition: opacity 0.3s;
  }
}
.p-product-item .product-item-head {
  aspect-ratio: 1 / 1;
  max-width: 200px;
  width: 100%;
  margin: 0 auto;
}
.p-product-item .product-item-head img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 1 / 1;
}
.p-product-item .product-item-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-top: 10px;
}
.p-product-item .product-item-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: normal;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
}
.p-product-item .product-item-desc {
  font-size: 12px;
  letter-spacing: 0.12px;
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 5px 0 13px;
}
.p-product-item .product-item-price {
  font-size: 20px;
  color: #ba8d39;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-top: auto;
}
.p-product-item .product-item-price span {
  font-size: 10px;
  margin-left: 3px;
}
.p-product-item .product-item-badge {
  position: absolute;
  content: "";
  width: 70px;
  height: 70px;
  left: -13px;
  top: -14px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-product-item .product-item-badge.orange {
  background: url(/html/user_data/assets/img/common/icon-badge_orange.svg) no-repeat center center / contain;
}
.p-product-item .product-item-badge.green {
  background: url(/html/user_data/assets/img/common/icon-badge_green.svg) no-repeat center center / contain;
}
@media screen and (max-width: 1024px) {
  .p-product-item .product-item-name {
    font-size: 14px;
  }
  .p-product-item .product-item-badge {
    width: 55px;
    height: 55px;
    font-size: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-product-list {
    gap: 40px 10px;
  }
  .p-product-item {
    width: calc(50% - 10px / 2);
  }
  .p-product-item .product-item-badge {
    width: 47px;
    height: 47px;
    top: -8px;
    left: -8px;
  }
}
@media screen and (max-width: 576px) {
  .p-product-item a {
    padding: 18px 12px 20px;
  }
  .product-badge {
    width: 47px;
    height: 47px;
    font-size: 10px;
    top: -8px;
    left: -8px;
  }
  .p-product-item .product-item-head {
    max-width: 140px;
  }
  .p-product-item .product-item-body {
    margin-top: 12px;
  }
  .p-product-item .product-item-name {
    font-size: 14px;
  }
  .p-product-item .product-item-desc {
    font-size: 10px;
    margin: 8px 0 10px;
  }
  .p-product-item .product-item-price {
    font-size: 14px;
  }
  .p-product-item .product-item-price span {
    font-size: 10px;
  }
}
/* エラー文言スタイル */
.p-error-wrap {
  display: flex;
  align-items: center;
  padding: 10px 66px;
  background-color: #d9d9d9;
  justify-content: center;
  gap: 15px;
  margin: 0 auto;
}
.p-error-wrap:not(:first-of-type) {
  margin-top: 20px;
}
.p-error-icon {
  min-width: 30px;
  width: 30px;
  height: 30px;
}
.p-error-icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.p-error-text {
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: calc(29 / 16);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-error-wrap {
    padding: 10px 16px;
  }
  .p-error-icon {
    min-width: 20px;
    width: 20px;
    height: 20px;
  }
  .p-error-text {
    font-size: 14px;
  }
}

/* bread */
.bread_wrap {
  margin-top: 25px;
  font-size: 14px;
}
.bread_wrap ol {
  display: flex;
  gap: 10px;
}
.bread_wrap li {
  list-style-type: none;
  display: inline-block;
  color: #404040;
  letter-spacing: 0.7px;
  position: relative;
  font-weight: 500;
}
.bread_wrap li:not(:last-child) {
  padding-right: 16px;
}
.bread_wrap li:not(:last-child)::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  top: 50%;
  right: 2px;
  transform: translateY(-50%) rotate(-45deg);
  border-bottom: solid 2px #c4d498;
  border-right: solid 2px #c4d498;
}
@media screen and (max-width: 576px) {
  .bread_wrap {
    margin-top: 20px;
  }
  .bread_wrap li {
    font-size: 12px;
  }
  .bread_wrap li:not(:last-child)::after {
    top: 53%;
  }
}

/* pagination */
.pager-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pager-item {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #cccccc;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
}
.pager-item.-active {
  color: #8cac34;
}
.pager-item.-next span,
.pager-item.-prev span {
  position: relative;
  width: 10px;
  height: 10px;
  display: block;
}
.pager-item.-next span::before,
.pager-item.-prev span::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 50%;
  left: 0;
  border-bottom: solid 2px #c5d599;
  border-right: solid 2px #c5d599;
}
.pager-item.-prev span::before {
  transform: translateY(-50%) rotate(135deg);
}
.pager-item.-next span::before {
  transform: translateY(-50%) rotate(-45deg);
}
@media screen and (max-width: 576px) {
  .pager-item {
    width: 40px;
    height: 40px;
  }
}

/* help */
.p-help-title {
  font-size: 20px;
  line-height: calc(24 / 20);
  font-weight: 700;
  color: #5e743e;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .p-help-title {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

/* フォーム */
.p-form-list {
  display: flex;
  margin-bottom: 0;
}
.p-form-list:last-of-type dt,
.p-form-list:last-of-type dd {
  border-bottom: dashed 1px rgba(196, 212, 152, 0.9);
}
.p-form-list dt,
.p-form-list dd {
  border-top: dashed 1px rgba(196, 212, 152, 0.9);
  letter-spacing: 0.8px;
  line-height: calc(30 / 16);
}
.p-form-list dt {
  max-width: 265px;
  width: 29%;
  padding: 25px 0;
  display: flex;
}
.p-form-list:not(.-address) dt {
  align-items: center;
}
.p-form-list.-address dt {
  align-items: start;
}
.p-form-list dt .ec-label {
  margin-bottom: 0;
}
.p-form-list dd {
  width: 72%;
  padding: 25px 35px 25px 25px;
  margin-bottom: 0;
}
.p-form-list .caution {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.6px;
  line-height: calc(30 / 12);
  margin-left: 4px;
  color: #e50012;
}
.p-form-list .form-error-wrap {
  display: flex;
  gap: 20px;
}
.p-form-list .ec-errorMessage {
  font-size: 12px;
  color: #e50012;
  font-weight: 500;
  margin-top: 5px;
}
.p-form-list .form-error-wrap .ec-errorMessage {
  width: 50%;
}
.p-form-list .form-half-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
.p-form-list input[type="text"],
.p-form-list input[type="tel"],
.p-form-list input[type="password"],
.p-form-list input[type="email"],
.p-form-list textarea {
  border: none;
  border-radius: 7px;
  background-color: #f3f1f1;
  font-size: 16px;
  padding: 7px 12px;
  width: 100%;
}
.p-form-list input[type="text"],
.p-form-list input[type="tel"],
.p-form-list input[type="password"],
.p-form-list input[type="email"] {
  height: 45px;
}
.p-form-list textarea {
  height: 160px;
  resize: none;
}
.p-form-list input[type="text"]::placeholder,
.p-form-list input[type="tel"]::placeholder,
.p-form-list input[type="password"]::placeholder,
.p-form-list input[type="email"]::placeholder {
  color: #999;
}
.p-form-list .form-half-wrap input[type="text"] {
  max-width: 300px;
  width: 100%;
}
.p-form-list .form-zip {
  margin-bottom: 20px;
}
.p-form-list .form-zip input[type="tel"] {
  max-width: 140px;
}
.p-form-list .form-select-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-form-list .form-select {
  border: none;
  background-color: transparent;
  appearance: none;
  background-image: none;
  padding: 0;
  width: auto;
  font-size: 16px;
  line-height: normal;
  color: #404040;
  font-weight: 500;
}
.p-form-list .form-select select {
  border: solid 1px #ccc;
  background-color: #f3f1f1;
  height: 45px;
  padding: 7px 25px 7px 12px;
  border-radius: 7px;
  background: #f3f1f1 url(/html/user_data/assets/img/common/icon-arrow_select.svg) no-repeat right 12px center / 10px
    12px;
  appearance: none;
  color: #404040;
}
.p-form-list .form-address-select {
  margin-bottom: 20px;
}
.p-form-list .form-address-select select {
  border: none;
  max-width: 170px;
  width: 100%;
}
.p-form-list .form-address-input.-first {
  margin-bottom: 20px;
}
.p-form-list .form-tel input[type="tel"] {
  max-width: 170px;
}
.p-form-list .form-email.-input,
.p-form-list .form-password.-input {
  margin-bottom: 20px;
}
.p-form-list .form-birth-select select {
  max-width: 120px;
  width: 100%;
}
.p-form-list .form-birth-select span {
  margin: 0 10px;
}
.p-form-list .form-radio input[type="radio"] {
  opacity: 0;
  position: absolute;
}
.p-form-list .form-radio #entry_sex {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
}
.p-form-list .form-radio label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
}
.p-form-list .form-radio label::before,
.p-form-list .form-radio label::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100px;
}
.p-form-list .form-radio label::before {
  width: 18px;
  height: 18px;
  left: 0;
  border: solid 1px #4f4f4f;
  background-color: #fff;
}
.p-form-list .form-radio label::after {
  width: 12px;
  height: 12px;
  left: 3px;
  background-color: #005cc8;
  opacity: 0;
}
.p-form-list .form-radio input[type="radio"]:focus-visible + label::before {
  outline: auto -webkit-focus-ring-color;
}
.p-form-list .form-radio input[type="radio"]:checked + label::after {
  opacity: 1;
}
.p-form-list .form-job-select select {
  border: none;
}
.p-form-privacy {
  text-align: center;
  margin-top: 50px;
  position: relative;
}
.p-form-privacy input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}
.p-form-privacy label {
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: normal;
  padding-left: 25px;
  position: relative;
  cursor: pointer;
  display: inline;
}
.p-form-privacy label::before,
.p-form-privacy label::after {
  position: absolute;
  content: "";
  top: 50%;
}
.p-form-privacy label::before {
  width: 18px;
  height: 18px;
  border-radius: 2px;
  border: solid 1px #4f4f4f;
  left: 0;
  transform: translateY(-50%);
}
.p-form-privacy label::after {
  width: 7px;
  height: 12px;
  border-bottom: solid 2px #4f4f4f;
  border-right: solid 2px #4f4f4f;
  left: 6px;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0;
}
.p-form-privacy input[type="checkbox"]:focus-visible + label::before {
  outline: auto -webkit-focus-ring-color;
}
.p-form-privacy input[type="checkbox"]:checked + label::after {
  opacity: 1;
}
.p-form-privacy a {
  color: #7fb7ca;
  font-weight: 700;
  display: inline-block;
}
@media (hover: hover) and (pointer: fine) {
  .p-form-privacy a:hover {
    opacity: 0.8;
    transition: opacity 0.3s;
    color: #7fb7ca;
  }
}

.-confirm .p-form-list dd p {
  border-radius: 7px;
  background-color: #f3f1f1;
  color: #999;
  padding: 7px 12px 8px;
}
@media screen and (max-width: 768px) {
  .p-form-list {
    display: block;
  }
  .p-form-list dt,
  .p-form-list dd {
    max-width: 100%;
    width: 100%;
  }
  .p-form-list dt {
    padding: 20px 0 0 0;
  }
  .p-form-list dd {
    border: none;
    padding: 20px 0;
  }
  .p-form-list .form-half-wrap input[type="text"] {
    max-width: 100%;
  }
  .p-form-list .form-tel input[type="tel"] {
    max-width: 50%;
  }
  .p-form-list:last-of-type dt {
    border-bottom: none;
  }
}
@media screen and (max-width: 576px) {
  .entry-message {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .p-form-list dt,
  .p-form-list dd {
    font-size: 14px;
  }
  .p-form-list .form-half-wrap,
  .p-form-list .form-error-wrap {
    gap: 10px;
  }
  .p-form-list input[type="text"],
  .p-form-list input[type="tel"],
  .p-form-list input[type="password"],
  .p-form-list .form-select {
    font-size: 14px;
  }
  .p-form-list .form-zip,
  .p-form-list .form-address-select,
  .p-form-list .form-address-input.-first,
  .p-form-list .form-email.-input,
  .p-form-list .form-password.-input {
    margin-bottom: 10px;
  }
  .p-form-list .form-birth-select select {
    width: calc((100% - 69px) / 3);
  }
  .p-form-list .form-radio #entry_sex {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
  .p-form-privacy {
    margin-top: 40px;
  }
  .p-form-privacy label {
    font-size: 14px;
  }
  .p-form-privacy label span.ib {
    display: inline-block;
  }
  .p-button.form {
    margin: 40px auto 0;
  }
}

/* progress */
.p-progress.ec-progress {
  margin-bottom: 40px;
  padding: 0;
}
.p-progress.ec-progress.ec-progress .is-complete .ec-progress__number {
  background-color: #5e743e;
  color: #fff;
}
.p-progress.ec-progress.ec-progress .ec-progress__number {
  background-color: #d4dfb5;
  color: #8cac34;
}
.p-progress.ec-progress.ec-progress .ec-progress__item:after {
  background: #c5d599;
  height: 2px;
}
.p-progress.ec-progress.ec-progress .is-complete .ec-progress__label {
  color: #5e743e;
}
.p-progress.ec-progress .ec-progress__label {
  color: #8cac34;
  font-size: 14px;
  letter-spacing: 0.7px;
}
.p-progress.ec-progress .ec-progress__label br {
  display: none;
}
@media screen and (max-width: 576px) {
  .p-progress.ec-progress .ec-progress__label {
    font-size: 12px;
  }
  .p-progress.ec-progress .ec-progress__label br {
    display: block;
  }
}

/* 注文手続き */
.p-shopping-head {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #5e743e;
  line-height: normal;
  padding: 11px 15px 12px;
  border: solid 1px #5e743e;
  margin-bottom: 20px;
}
/* -------------------
 * ヘッダー 
---------------------- */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 20;
}
.header-top .inner,
.header-bottom > .inner {
  display: flex;
  max-width: 1210px;
  align-items: center;
  justify-content: space-between;
}
.header-top .inner {
  padding: 10px 20px;
}
.header-top {
  background-color: #8cac34;
}
.header-text {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.72px;
  font-weight: 700;
}
.header-nav,
.header-top-list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-top-list {
  margin-bottom: 0;
  padding-left: 0;
}
.header-top-item a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-top-item a,
.header-item-name {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
}
.header-cart a {
  display: flex;
  position: relative;
  align-items: center;
  gap: 8px;
}
.header-cart-icon {
  position: relative;
}
.header-cart-badge {
  position: absolute;
  display: block;
  text-align: center;
  font-size: 10px;
  color: #fff;
  background-color: #e50012;
  border-radius: 100px;
  aspect-ratio: 1/1;
  min-width: 14px;
  top: -3px;
  right: -7px;
}

.header-bottom {
  background-color: #f8f8f5;
  height: 80px;
}
.header-bottom > .inner {
  padding: 0 20px;
  height: inherit;
}
.header-bottom-left {
  display: flex;
  align-items: center;
}
.header-logo {
  position: relative;
  max-width: 255px;
  width: 100%;
}
.header-logo a {
  transition: opacity 0.3s;
}
.header-logo img {
  width: 100%;
}
.header-logo .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
@media (hover: hover) and (pointer: fine) {
  .header-logo a:hover {
    opacity: 0.7;
    transition: opacity 0.3s;
  }
}
.header-search {
  position: relative;
  margin-left: 40px;
}
.header-search-button {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  padding: 0;
  width: 13px;
  height: 14px;
  background-color: transparent;
  border: none;
}
.header-search-button .ec-icon img {
  display: block;
}
.header-search .ec-input input {
  padding: 6px 10px 7px 30px;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 500;
  border: none;
  border-bottom: solid 2px #8cac34;
  border-radius: 0;
}
.header-search .ec-input input::placeholder {
  color: #adadad;
}
.header-bottom-list {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header-bottom-right,
.header-nav,
.header-bottom-list,
.header-bottom-item {
  height: inherit;
}
.header-bottom-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.header-bottom-item > a,
.header-bottom-item > span {
  color: #476023;
  font-weight: 500;
  letter-spacing: 0.8px;
}
.header-bottom-item > a {
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .header-bottom-item > a:hover {
    opacity: 0.7;
    transition: opacity 0.3s;
  }
}
.header-bottom-item.has-child > span {
  position: relative;
  padding-right: 18px;
  cursor: pointer;
}
.header-bottom-item.has-child > span::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 50%;
  right: 1px;
  transform: translateY(-50%) rotate(135deg);
  border-top: solid 2px #c4d498;
  border-right: solid 2px #c4d498;
}
.header-child {
  width: 100%;
  position: fixed;
  top: 118px;
  left: 0;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 60px 0 50px;
  display: none;
}
.header-child .inner {
  max-width: 1090px;
  display: flex;
  justify-content: space-between;
}
.header-child-title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.28px;
}
.header-child .p-button {
  max-width: 240px;
  width: 100%;
}
.header-child-head {
  max-width: 240px;
  width: 22.9%;
}
.header-child-body {
  max-width: 750px;
  width: 72%;
}
.header-child-button a {
  padding: 13px 0;
  font-size: 16px;
}
.header-child-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.header-child-item {
  width: calc((100% / 3) - 14px * 2 / 3);
}
.header-child-item a {
  width: 100%;
  display: flex;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .header-child-item a:hover {
    opacity: 0.7;
    transition: opacity 0.3s;
  }
}
.header-child-item-head {
  width: 33.33%;
  background-color: #f8f8f5;
  border-radius: 10px 0 0 10px;
  padding: 13px 17px;
}
.header-child-item-body {
  width: 66.66%;
  border-radius: 0 10px 10px 0;
  background-color: #dde7c2;
  font-weight: 700;
  letter-spacing: 0.16px;
  line-height: normal;
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.header-bottom-cart {
  display: none;
  position: relative;
}
.header-bottom-search {
  position: fixed;
  width: 100%;
  top: 94px;
  left: 0;
  background-color: #f8f8f5;
  padding: 0 20px 20px;
  display: none;
}
.header-bottom-search .header-search {
  max-width: 335px;
  margin: 0 auto;
}

.burger {
  width: 30px;
  height: 22px;
  background-color: transparent;
  border: none;
  padding: 0;
  position: relative;
  display: none;
}
.burger-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #476023;
  display: block;
  margin: auto;
}
.burger-line::before,
.burger-line::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #476023;
  left: 0;
}
.burger-line::before {
  top: -10px;
  -webkit-transition:
    transform 0.3s,
    top 0.3s;
  transition:
    transform 0.3s,
    top 0.3s;
}
.burger-line::after {
  top: 10px;
  -webkit-transition:
    transform 0.3s,
    top 0.3s;
  transition:
    transform 0.3s,
    top 0.3s;
}
.burger.is-active .burger-line {
  background-color: transparent;
  transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
}
.burger.is-active .burger-line::before {
  -webkit-transform: rotate(45deg);
  -webkit-transition:
    transform 0.3s,
    top 0.3s;
  top: 0;
  transform: rotate(45deg);
  transition:
    transform 0.3s,
    top 0.3s;
}
.burger.is-active .burger-line::after {
  -webkit-transform: rotate(-45deg);
  -webkit-transition:
    transform 0.3s,
    top 0.3s;
  top: 0;
  transform: rotate(-45deg);
  transition:
    transform 0.3s,
    top 0.3s;
}

.burger-content {
  position: fixed;
  background-color: #f8f8f5;
  top: 94px;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 19;
  padding: 30px 0 60px;
  opacity: 0;
  transition:
    opacity 0.3s,
    visibility 0.3s;
  -webkit-transition:
    opacity 0.3s,
    visibility 0.3s;
  visibility: hidden;
}
.burger-content.is-active {
  -webkit-transition: all 0.3s ease 0s;
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease 0s;
}
.burger-content .inner {
  overflow-y: scroll;
  height: 100%;
}
.burger-login-list {
  display: flex;
  gap: 60px;
  justify-content: center;
}
.burger-login-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.burger-login-icon {
  width: 46px;
  height: 46px;
  position: relative;
}
.burger-login-icon .header-cart-badge {
  top: 8px;
  right: 4px;
}
.burger-login-name {
  font-size: 10px;
  font-weight: 700;
  color: #476023;
  margin-top: 7px;
}
.burger-content .header-search {
  margin-left: 0;
  max-width: 334px;
  margin: 30px auto 0;
}
.burger-nav-bottom {
  margin-top: 10px;
}
.burger-nav-item {
  border-bottom: solid 1px #e5e5e5;
}
.burger-nav-item.has-child span {
  position: relative;
}
.burger-nav-item.has-child span::before,
.burger-nav-item.has-child span::after {
  position: absolute;
  content: "";
  width: 13px;
  height: 1px;
  background-color: #526a30;
  top: 50%;
  right: 0;
}
.burger-nav-item.has-child span::after {
  transform: rotate(90deg);
  transition: transform 0.3s;
}
.burger-nav-item.has-child span.is-open::after {
  transform: rotate(0deg);
  transition: transform 0.3s;
}
.burger-nav-item > a,
.burger-nav-item > span {
  padding: 17px 0;
  display: block;
  width: 100%;
  font-size: 14px;
  color: #526a30;
  font-weight: 700;
}
.burger-child-list {
  display: none;
  padding-bottom: 10px;
}
.burger-child-item a {
  display: block;
  width: 100%;
  padding: 10px 0;
  font-size: 12px;
  color: #526a30;
}
.burger-child-item:first-child a {
  padding: 0 0 10px;
}
.burger-link-wrap {
  display: flex;
  justify-content: center;
  margin-top: 27px;
  gap: 30px;
}
.burger-link-wrap a {
  font-size: 10px;
  font-weight: 700;
  line-height: calc(14 / 10);
  color: #526a30;
}
.burger-content .p-button {
  margin: 40px auto 0;
}
@media screen and (max-width: 1024px) {
  .header-logo {
    max-width: 200px;
  }
  .header-nav,
  .ec-headerNaviRole__search {
    display: none;
  }
  .header-top .inner {
    padding: 5px 20px;
  }
  .header-bottom {
    height: 67px;
  }
  .header-bottom > .inner {
    justify-content: initial;
  }
  .header-bottom-right {
    margin-left: auto;
    height: auto;
  }
  .header-bottom-right.is-active {
    display: none;
  }
  .header-bottom-cart {
    display: block;
  }
  .header-search {
    margin-left: 20px;
  }
  .header-bottom-search {
    display: block;
  }

  .burger {
    display: block;
    margin-left: 28px;
  }
  .burger.is-active {
    margin-left: auto;
  }
}

/* -------------------
 * フッター
---------------------- */
.footer {
  background-color: #8cac34;
  padding: 80px 0 40px;
  position: relative;
}
.footer .inner {
  max-width: 1210px;
}
.footer-wrap {
  display: flex;
  gap: 22px;
}
.footer-nav {
  width: calc((100% / 4) - 22px * 3 / 4);
}
.footer-nav-item {
  color: #fff;
  font-weight: 700;
}
.footer-child-item.-head {
  display: none;
}
.footer-child-item:not(:first-child),
.footer-nav-item:not(:first-child) {
  margin-top: 10px;
}
.footer-child-item {
  color: #dce6c2;
  font-size: 14px;
  margin-top: 9px;
  font-weight: 400;
}
.footer-nav-item a {
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .footer-nav-item a:hover {
    opacity: 0.7;
    transition: opacity 0.3s;
  }
}
.footer-bottom {
  padding-top: 30px;
  margin-top: 65px;
  border-top: solid 1px rgba(196, 212, 152, 0.9);
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}
.footer-logo {
  max-width: 270px;
  width: 100%;
}
.footer-logo a {
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .footer-logo a:hover {
    opacity: 0.7;
    transition: opacity 0.3s;
  }
}
.footer-text {
  display: flex;
  font-size: 14px;
  color: #dce6c2;
  margin-left: auto;
}
.footer-text address {
  margin-bottom: 0;
}
.footer-text p {
  margin-left: 1em;
}
@media screen and (max-width: 1024px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
  .footer-text {
    margin-left: 0;
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .footer-wrap {
    flex-direction: column;
    gap: 0px;
  }
  .footer-nav {
    width: 100%;
  }
  .footer-child-item.-head {
    display: block;
  }
  .footer-nav-item span,
  .footer-nav-item > a {
    display: block;
    width: 100%;
    padding: 17px 0;
    position: relative;
  }
  .footer-nav-item.has-child span,
  .footer-nav-item.has-child > a {
    pointer-events: none;
  }
  .footer-nav-item.has-child > a::before,
  .footer-nav-item.has-child > a::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 1px;
    background-color: #fff;
    top: 50%;
    right: 0;
  }
  .footer-nav-item.has-child > a::before {
    transform: translateY(-50%);
  }
  .footer-nav-item.has-child > a::after {
    transform: translateY(-50%) rotate(90deg);
    transition: transform 0.3s;
  }
  .footer-nav-item.has-child.is-open > a::after {
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s;
  }
  .footer-nav-item {
    border-bottom: solid 1px #e5e5e5;
    font-size: 14px;
  }
  .footer-nav-item:not(:first-child) {
    margin-top: 0;
  }
  .footer-child-list {
    margin-bottom: 20px;
    display: none;
  }
  .footer-child-item:not(:first-child) {
    margin-top: 15px;
  }
  .footer-child-item:first-child {
    margin-top: 0;
  }
  .footer-bottom {
    margin-top: 40px;
    margin-top: 0;
    border-top: none;
  }
  .footer-text {
    flex-wrap: wrap;
    font-size: 14px;
    justify-content: center;
  }
  .footer-text address {
    width: 100%;
    text-align: center;
  }
}

.page-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 85px;
  height: 85px;
  color: #569450;
  z-index: 10;
}
.page-top a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 100px;
  border: solid 3px #569450;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .page-top a:hover {
    opacity: 0.8;
    transition: opacity 0.3s;
  }
}
.page-top span {
  padding-top: 40px;
  position: relative;
  display: block;
  font-weight: 700;
}
.page-top span::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) rotate(-135deg);
  border-bottom: solid 2px #569450;
  border-right: solid 2px #569450;
}
@media screen and (max-width: 1024px) {
  .page-top {
    width: 70px;
    height: 70px;
  }
  .page-top span {
    padding-top: 35px;
    font-size: 12px;
  }
  .page-top span::before {
    width: 13px;
    height: 13px;
  }
}
@media screen and (max-width: 576px) {
  .page-top {
    width: 60px;
    height: 60px;
    right: 15px;
  }
  .page-top span {
    font-size: 10px;
    padding-top: 30px;
  }
  .page-top span::before {
    width: 10px;
    height: 10px;
  }
}

/* -------------------
 * トップページ 
---------------------- */
/* mv */
.slider {
  position: initial;
}
.slider .swiper-slide img {
  width: 100%;
}
.swiper-button-next,
.swiper-button-prev {
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  width: 30px;
  height: 30px;
  background-color: #bdcf8e;
  border-radius: 100px;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  top: 50%;
  left: 50%;
  border-bottom: solid 2px #fff;
  border-right: solid 2px #fff;
}
.swiper-button-prev {
  left: -50px;
  right: initial;
}
.swiper-button-next {
  right: -50px;
  left: initial;
}
.swiper-button-prev::after {
  transform: translate(-40%, -50%) rotate(135deg);
}
.swiper-button-next::after {
  transform: translate(-60%, -50%) rotate(-45deg);
}
.slider-thumbnail-wrap {
  max-width: 81%;
  margin: 20px auto 0;
  position: relative;
}
.slider-thumbnail .swiper-wrapper {
  gap: 20px;
}
.slider-thumbnail .swiper-slide {
  opacity: 0.4;
  transition: opacity 0.3s;
  width: calc((100% / 4) - 20px * 3 / 4) !important;
  aspect-ratio: 277 / 135;
  cursor: pointer;
}
.slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .slider-thumbnail .swiper-slide {
    width: calc(50% - 10px / 2) !important;
  }
  .slider-thumbnail .swiper-wrapper {
    gap: 10px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    width: 17px;
    height: 17px;
  }
  .swiper-button-prev {
    left: -20px;
  }
  .swiper-button-next {
    right: -20px;
  }
  .swiper-button-next::after,
  .swiper-button-prev::after {
    width: 6px;
    height: 6px;
  }
}

/* notice */
.notice {
  margin-top: 20px;
  padding: 60px 0 0;
}
.notice .inner {
  max-width: 1090px;
}
.notice-wrapper {
  background-color: #ffe7e7;
  padding: 40px 20px;
  border-radius: 20px;
}
.news-notice-heading {
  font-size: 28px;
  letter-spacing: 1.4px;
  line-height: normal;
  font-weight: 700;
  text-align: center;
  color: #ff0000;
  font-family: "fot-tsukuardgothic-std", sans-serif;
}
.news-notice-heading span {
  display: inline-block;
}
.news-notice-text {
  margin-top: 30px;
  line-height: 2;
  font-size: 16px;
  letter-spacing: 0.16px;
  text-align: center;
}
.news-notice-text .bold {
  font-weight: 700;
}
.news-notice-text .sp {
  display: none;
}
.news-notice-link {
  display: grid;
  grid-template-columns: auto 10px;
  column-gap: 6px;
  align-items: center;
  margin: 30px auto 0;
  border-radius: 100px;
  background-color: #ff0000;
  color: #fff;
  justify-content: center;
  width: 100%;
  max-width: 280px;
  padding: 17px 24px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.18px;
  transition: opacity 0.3s;
}
.news-notice-link:hover {
  color: #fff;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.news-notice-link::after {
  content: "";
  width: 10px;
  aspect-ratio: 1;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .notice {
    padding-top: 40px;
  }
  .notice-wrapper {
    padding: 40px 20px;
  }
  .news-notice-heading {
    font-size: 24px;
    letter-spacing: 1.2px;
    line-height: 1.3;
  }
  .news-notice-text {
    font-size: 14px;
    letter-spacing: 0.14px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 630px) {
  .news-notice-text .sp {
    display: block;
  }
}

/* news */
.news {
  /* margin-top: 20px; */
  padding: 80px 0 70px;
}
.news-item {
  border-bottom: solid 1px #a0ad7c;
  padding: 24px 0;
}
.news-head {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.news-date {
  font-size: 16px;
  font-weight: 700;
  color: #a0ad7c;
  margin-right: 37px;
}
.news-title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.16px;
  margin: 0;
  flex-grow: 1;
  padding-right: 30px;
}
.news-close {
  margin-left: auto;
  width: 15px;
  height: 15px;
  position: relative;
}
.news-close-button {
  position: relative;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  border-bottom: solid 3px #a0ad7c;
  border-right: solid 3px #a0ad7c;
  transform: translate(-50%, -60%) rotate(45deg);
  display: block;
  transition: transform 0.3s;
}
.news-item.is_active .news-close-button {
  transform: translate(-50%, -40%) rotate(-135deg);
  transition: transform 0.3s;
}
.news-body {
  padding: 0 30px 0 125px;
  margin-top: 9px;
  font-size: 14px;
  letter-spacing: 0.14px;
}
@media screen and (max-width: 768px) {
  .news-list {
    margin-top: 4px;
  }
  .news-item {
    padding: 16px 0;
  }
  .news-head {
    flex-wrap: wrap;
  }
  .news-date {
    width: 100%;
    margin-bottom: 5px;
    font-size: 14px;
  }
  .news-body {
    padding: 0;
    margin-top: 18px;
  }
}

/* about */
.about-list {
  display: flex;
  margin-top: 60px;
  gap: 50px;
}
.about-item {
  width: calc(33.33% - 50px * 2 / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  background-color: rgba(140, 172, 52, 0.3);
  padding: 40px 10px 50px;
}
.about-image {
  padding: 0 20px;
}
.about-text {
  text-align: center;
  margin-top: 30px;
  color: #476023;
  font-weight: 700;
  font-family: "zen-kaku-gothic-antique", sans-serif;
}
@media screen and (max-width: 1024px) {
  .about-list {
    gap: 20px;
  }
  .about-item {
    width: calc(33.33% - 20px * 2 / 3);
    padding: 30px 10px 40px;
  }
  .about-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .about-list {
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
  }
  .about-item {
    max-width: 65.6%;
    min-width: 245px;
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .about .p-title {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    font-size: 22px;
  }
}

/* おすすめ商品 */
.recommend-product .p-product-list {
  margin-top: 60px;
}
.recommend-product .p-product-item a {
  position: relative;
  border-radius: 20px;
}
.recommend-product .p-product-item .product-item-name {
  min-height: 41px;
}

/* category */
.category-list {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.category-item {
  width: calc((100% / 3) - 18px * 2 / 3);
}
.category-item a {
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .category-item a:hover {
    opacity: 0.7;
    transition: opacity 0.3s;
  }
}
.category-head {
  background-color: #f8f8f5;
  text-align: center;
  padding: 40px 20px 20px;
  border-radius: 20px 20px 0 0;
}
.category-head img {
  max-width: 160px;
  width: 100%;
}
.category-body {
  border-radius: 0 0 20px 20px;
  background-color: #dde7c2;
  padding: 17px 10px;
  text-align: center;
  font-family: "zen-kaku-gothic-antique", sans-serif;
}
.category-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.16px;
  color: #476023;
}
.category-text {
  font-size: 12px;
  font-weight: 500;
  color: #476023;
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .category-list {
    flex-direction: column;
  }
  .category-item {
    width: 100%;
  }
  .category-item a {
    display: flex;
  }
  .category-head {
    border-radius: 20px 0 0 20px;
    width: 40.3%;
    padding: 20px 30px;
  }
  .category-body {
    border-radius: 0 20px 20px 0;
    width: 59.7%;
    display: grid;
    place-content: center flex-start;
    padding: 20px;
  }
  .category-name,
  .category-text {
    text-align: left;
  }
  .category-text {
    margin-top: 5px;
  }
}

/* company */
.company .inner {
  max-width: 980px;
}
.company .p-title {
  text-align: left;
  line-height: calc(50 / 28);
}
.company .p-title span::after {
  position: absolute;
  content: "";
  width: 52px;
  height: 38px;
  bottom: -5px;
  right: -60px;
  background: url(/html/user_data/assets/img/common/icon-title01.png) no-repeat center center / contain;
}
.company-wrap {
  display: flex;
  justify-content: space-between;
}
.company-image {
  max-width: 420px;
  width: 44.7%;
}
.company-image img {
  width: 100%;
}
.company-info {
  max-width: 480px;
  width: 51.1%;
  position: relative;
  padding: 40px 0;
}
.company-text {
  line-height: calc(40 / 16);
  font-weight: 500;
  margin-top: 20px;
}
.company-text span.text-parts:nth-child(2) {
  display: inline-block;
  margin-top: 20px;
}
.company-map {
  position: absolute;
  width: 160px;
  height: 155px;
  bottom: 0;
  right: 0;
}
.company .p-button {
  margin: 50px 0 0;
}
@media screen and (max-width: 1024px) {
  .company-info {
    padding-top: 20px;
  }
  .company-text {
    font-size: 14px;
  }
  .company-map {
    width: 120px;
    height: 120px;
    bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .company .inner {
    padding: 0;
  }
  .company .p-title {
    order: 1;
    width: max-content;
    margin: 0 auto;
  }
  .company-wrap {
    flex-direction: column;
    align-items: center;
  }
  .company-image {
    max-width: 100%;
    order: 2;
    width: 100%;
    margin-top: 50px;
  }
  .company-info,
  .company-text {
    display: contents;
  }
  .company-text {
    font-size: 14px;
    line-height: calc(30 / 14);
  }
  .company-text span.text-parts {
    padding: 0 40px;
    margin-top: 40px;
  }
  .company-text span.text-parts:nth-child(1) {
    order: 3;
  }
  .company-text span.text-parts:nth-child(2) {
    order: 5;
    margin-top: 40px;
  }
  .company-map {
    order: 4;
    position: static;
    max-width: 256px;
    width: 100%;
    height: 100%;
    margin: 40px auto 0;
    text-align: center;
  }
  .company .p-button {
    order: 6;
    margin: 40px auto 0;
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .company-text span.text-parts br.sm {
    display: none;
  }
}

/* hometown */
.hometown-slider-wrapper {
  margin-top: 60px;
  position: relative;
  padding: 0 60px;
}
.hometown-slider-wrapper .swiper-slide a {
  transition: opacity 0.3s;
  display: block;
}
@media (any-hover: hover) {
  .hometown-slider-wrapper .swiper-slide a:hover {
    opacity: 0.8;
  }
}
.hometown-button-next,
.hometown-button-prev {
  background-color: #f4d193;
}
.hometown-button-next {
  right: 0;
}
.hometown-button-prev {
  left: 0;
}
@media screen and (max-width: 768px) {
  .hometown-button-next,
  .hometown-button-prev {
    width: 22px;
    height: 22px;
  }
  .hometown-button-next::after,
  .hometown-button-prev::after {
    width: 6px;
    height: 6px;
  }
}
@media screen and (max-width: 576px) {
  .hometown-slider-wrapper {
    padding: 0 30px;
  }
}

/* help */
.help {
  background-color: #e8eed9;
}
.help-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
  margin-top: 60px;
}
.help-item {
  width: calc(50% - 20px / 2);
}
.help-item a {
  display: block;
  background-color: #fff;
  border-radius: 20px;
  height: 100%;
  padding: 36px 0;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2px;
  position: relative;
  color: #4d5e1c;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .help-item a:hover {
    opacity: 0.8;
    transition: opacity 0.3s;
  }
}
.help-item a span {
  position: absolute;
  width: 25px;
  height: 25px;
  top: 50%;
  right: 37px;
  transform: translateY(-50%);
  border-radius: 100px;
  background-color: #569450;
}
.help-item a span::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 50%;
  left: 50%;
  transform: translate(-65%, -45%) rotate(-45deg);
  border-right: solid 2px #fff;
  border-bottom: solid 2px #fff;
}
@media screen and (max-width: 1024px) {
  .help-item a {
    font-size: 18px;
    padding: 30px 0;
  }
  .help-item a span {
    right: 25px;
  }
}
@media screen and (max-width: 768px) {
  .help-list {
    gap: 10px;
    margin-top: 30px;
  }
  .help-item {
    width: 100%;
    max-width: 89%;
    margin: 0 auto;
  }
  .help-item a {
    font-size: 16px;
    padding: 18px 0;
    border-radius: 10px;
  }
  .help-item a span {
    width: 20px;
    height: 20px;
    right: 20px;
  }
}
@media screen and (max-width: 576px) {
  .help-item {
    max-width: 100%;
  }
  .help-item a span {
    width: 18px;
    height: 18px;
    right: 35px;
  }
  .help-item a span::before {
    width: 6px;
    height: 6px;
  }
}

/* -------------------
 * 商品一覧 
---------------------- */
.product-search {
  margin-top: 80px;
}
.product-search .inner {
  max-width: 1090px;
}
.product-search-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-search-count {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.16px;
}
.product-search-count .number {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.32px;
  color: #8cac34;
  margin-right: 5px;
  font-family: "lato", sans-serif;
}
.product-search-select {
  display: flex;
  gap: 10px;
}
.product-search-select .form-select {
  border: none;
  background-color: #f5f3f3;
  color: #2b3b15;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 700;
  min-width: 148px;
  border-radius: 7px;
}
.product-search-select .form-select:focus {
  box-shadow: none;
}
@media screen and (max-width: 768px) {
  .product-search {
    margin-top: 40px;
  }
  .product-search-count {
    font-size: 14px;
  }
  .product-search-count .number {
    font-size: 28px;
  }
}
@media screen and (max-width: 576px) {
  .product-search {
    margin-top: 30px;
  }
  .product-search-wrap {
    flex-direction: column;
    align-items: start;
  }
  .product-search-select {
    margin-left: auto;
    margin-top: 10px;
  }
  .product-search-count {
    font-size: 12px;
  }
  .product-search-count .number {
    font-size: 24px;
  }
  .product-search-select .form-select {
    font-size: 12px;
    min-width: 125px;
    padding: 10px 15px;
  }
}

.product {
  margin-top: 44px;
  padding-bottom: 100px;
}
.product .inner {
  max-width: 1090px;
}
.product-list {
  gap: 65px 26px;
}
.product .p-product-item .product-item a {
  padding: 0 12px 20px;
}
.product .p-product-item .product-item-head {
  padding-bottom: 15px;
}
.product .p-product-item .product-item-name {
  min-height: 48px;
}
.product .pager-list {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .product .p-product-item .product-item-name {
    min-height: 40px;
  }
}
@media screen and (max-width: 768px) {
  .product {
    padding-bottom: 80px;
  }
  .product .p-product-item .product-item-head {
    padding-bottom: 0;
  }
}

#page_product_list .category .p-button {
  display: none;
}

/* -------------------
 * 商品詳細
---------------------- */
#page_product_detail .bread_wrap {
  margin-top: 50px;
}
.product-detail {
  padding-bottom: 100px;
  margin-top: 25px;
}
.product-detail .inner {
  max-width: 1090px;
}
.product-detail-wrap {
  display: flex;
  justify-content: space-between;
}
.product-slider,
.product-info {
  max-width: 500px;
  width: 48%;
}
.product-slider .slick-slide {
  height: 100%;
  width: 100%;
  aspect-ratio: 1 / 1;
}
.product-slider .slick-slider {
  margin-bottom: 0;
}
.product-slider .slick-slide img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
.product-slider .slick-dots {
  bottom: -20px;
  position: absolute;
  display: block;
  width: 100%;
  padding: 0;
  list-style: none;
  text-align: center;
}
.product-slider .slick-dots li {
  margin: 0;
  width: 10px;
  height: 10px;
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.product-detail .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
  font-size: 0;
  line-height: 0;
  display: block;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #404040;
  border-radius: 100px;
  opacity: 0.3;
}
.product-slider .slick-dots li.slick-active button {
  opacity: 1;
}
.slick-dots li button:before,
.slick-dots li.slick-active button:before {
  display: none;
}
.product-thumb {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.product-slider .product-thumb .slick-slide {
  max-width: 120px;
}
.product-thumb .slick-track {
  transform: unset !important;
}
.product-thumb .slick-slide.slick-current .product-thumb-item {
  opacity: 1;
}
.product-thumb-item {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  width: calc((100% / 4) - 10px * 3 / 4);
  opacity: 0.65;
  cursor: pointer;
}
.product-thumb-item.is-active {
  opacity: 1;
}
.product-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
}
.product-name {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2.8px;
  line-height: normal;
}
.product-name .contents {
  display: block;
  font-size: 20px;
  letter-spacing: 1.4px;
  font-weight: 500;
  line-height: normal;
  margin-top: 7px;
}
.product-free-text {
  font-size: 18px;
  line-height: calc(32 / 18);
  letter-spacing: 1.44px;
  color: #5e743e;
  margin-top: 30px;
  font-weight: 500;
}
.product-text {
  line-height: calc(28 / 14);
  letter-spacing: 1.4px;
  font-weight: 500;
  margin-top: 25px;
  font-size: 14px;
}
.product-text table {
  border-collapse: collapse;
  table-layout: fixed;
  border-left: solid 1px #d9d9d9;
  border-bottom: solid 1px #d9d9d9;
  border-top: none;
  border-right: none;
}
.product-text table th,
.product-text table td {
  padding: 15px 18px;
  line-height: normal;
  border-top: solid 1px #d9d9d9;
  border-right: solid 1px #d9d9d9;
  font-size: 14px;
}
.product-text table th,
.product-text table td:first-child {
  max-width: 170px;
  width: 10%;
  background-color: #f8f8f5;
  text-align: center;
  font-weight: 500;
}
.product-text table td:not(:first-child) {
  width: calc(100% - 10%);
}
.product-price-wrap {
  margin-top: 40px;
}
.product-regular-price .price,
.product-price .price {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1.96px;
  line-height: 1;
}
.product-regular-price .tax,
.product-price .tax {
  font-size: 14px;
  font-weight: 500;
  margin-left: 3px;
}
.product-regular-price {
  margin-bottom: 10px;
}
.product-cart-wrap {
  display: flex;
  margin-top: 40px;
  align-items: center;
  justify-content: end;
}
.product-cart-amount {
  margin-right: auto;
}
.product-cart-amount .ec-numberInput input[type="number"] {
  margin-bottom: 0;
  border: none;
  background-color: #f5f3f3;
  border-radius: 7px;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18px;
  padding: 12px 15px;
}
.product-cart-amount .ec-numberInput span {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.6px;
  margin-right: 25px;
  line-height: calc(28 / 16);
}
.product-cart-button,
.favorite-button,
.modal-button-cancel {
  display: block;
  max-width: 260px;
  width: 100%;
  border-radius: 100px;
  padding: 16px 10px;
  text-align: center;
  border: none;
  transition: opacity 0.3s;
}
.modal-button-cart {
  max-width: 260px;
  width: 100%;
}
.modal-button-cart a {
  display: block;
  width: 100%;
  border-radius: 100px;
  padding: 16px 10px;
  text-align: center;
  border: none;
  background-color: #477a00;
  color: #fff;
  transition: opacity 0.3s;
}
.product-cart-button {
  background-color: #477a00;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .product-cart-button:hover,
  .favorite-button:hover,
  .modal-button-cart a:hover,
  .modal-button-cancel:hover {
    opacity: 0.8;
    transition: opacity 0.3s;
  }
}
.product-cart-button span,
.favorite-button span {
  font-weight: 700;
  letter-spacing: 1.12px;
  padding-left: 26px;
  position: relative;
}
.product-cart-button span::before,
.favorite-button span::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.product-cart-button span::before {
  background: url(/html/user_data/assets/img/common/icon-cart_wh.svg) no-repeat center center / contain;
}
.favorite-button {
  background-color: #f5f3f3;
  color: #2b3b15;
  margin: 20px 0 0 auto;
}
.favorite-button span::before {
  background: url(/html/user_data/assets/img/common/icon-favo.svg) no-repeat center center / contain;
}
.favorite-button.is-active span::before {
  background-image: url(/html/user_data/assets/img/common/icon-favo_red.svg);
}
.product-detail-list {
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  border-bottom: solid 1px #d9d9d9;
  border-left: solid 1px #d9d9d9;
}
.product-detail-title,
.product-detail-desc {
  padding: 18px 25px;
  line-height: normal;
  border-top: solid 1px #d9d9d9;
  border-right: solid 1px #d9d9d9;
  font-size: 14px;
  display: flex;
  align-items: center;
}
.product-detail-title {
  max-width: 240px;
  width: 22.85%;
  background-color: #f8f8f5;
  text-align: center;
  font-weight: 500;
  justify-content: center;
}
.product-detail-desc {
  width: calc(100% - 22.85%);
  margin-bottom: 0;
}
.product-detail .ec-modal .ec-modal-wrap {
  border: none;
  width: 100%;
  max-width: 700px;
}
.modal-button-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.modal-button-cart,
.modal-button-cancel {
  font-weight: 700;
  letter-spacing: 1.12px;
}
.modal-button-cancel {
  background-color: #f5f3f3;
  color: #2b3b15;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .product-name {
    font-size: 24px;
  }
  .product-free-text {
    font-size: 16px;
    margin-top: 25px;
  }
  .product-text {
    margin-top: 20px;
  }
  .product-price-wrap {
    margin-top: 30px;
  }
  .product-cart-wrap {
    margin-top: 30px;
    flex-direction: column;
    align-items: start;
  }
  .product-cart-button,
  .favorite-button {
    margin: 20px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .product-detail {
    padding-bottom: 80px;
  }
  .product-name .contents {
    font-size: 18px;
  }
  .product-detail-wrap {
    flex-direction: column;
  }
  .product-slider,
  .product-info {
    max-width: 100%;
    width: 100%;
  }
  .product-thumb {
    display: none;
  }
  .product-regular-price .price,
  .product-price .price {
    font-size: 24px;
  }
  .product-info {
    margin-top: 70px;
  }
}
@media screen and (max-width: 576px) {
  .product-thumb {
    display: none;
  }
  .product-name {
    font-size: 22px;
  }
  .product-name .contents {
    font-size: 16px;
  }
  .product-free-text {
    font-size: 14px;
    margin-top: 20px;
  }
  .product-text {
    font-size: 12px;
  }
  .product-text table {
    display: block;
  }
  .product-text table colgroup {
    display: none;
  }
  .product-text table,
  .product-text tbody,
  .product-text tr,
  .product-text th,
  .product-text td {
    height: auto !important;
    display: block;
    width: 100%;
  }
  .product-text table th,
  .product-text table td {
    font-size: 12px;
  }
  .product-text table th,
  .product-text table td:first-child {
    max-width: 100%;
    width: 100%;
  }
  .product-text table td:not(:first-child) {
    width: 100%;
  }
  .product-price-wrap {
    margin-top: 20px;
  }
  .product-regular-price .price,
  .product-price .price {
    font-size: 20px;
  }
  .product-regular-price .tax,
  .product-price .tax {
    font-size: 12px;
  }
  .product-cart-amount .ec-numberInput span {
    font-size: 14px;
    margin-right: 15px;
  }
  .product-cart-amount .ec-numberInput input[type="number"] {
    font-size: 14px;
  }
  .product-cart-button,
  .favorite-button {
    font-size: 14px;
  }
  .product-detail-list {
    display: block;
    margin-top: 50px;
  }
  .product-detail-title,
  .product-detail-desc {
    font-size: 12px;
    padding: 15px 20px;
  }
  .product-detail-title,
  .product-detail-desc {
    width: 100%;
    max-width: 100%;
  }
  .modal-button-wrap {
    flex-direction: column;
  }
}

/* -------------------
 * 手造りひろたのぽんずとは 
---------------------- */
.about {
  margin-top: 60px;
}
.about .inner {
  max-width: 1210px;
}
.about-container {
  background-color: #f8f8f5;
  padding: 80px 65px 100px 80px;
  border-radius: 20px;
}
.about-title {
  text-align: center;
  font-size: 24px;
  letter-spacing: 1.2px;
  line-height: calc(43 / 24);
  font-family: serif;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  color: #5e743e;
  position: relative;
}
.about-title br.tab {
  display: none;
}
.about-title::before,
.about-title::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle farthest-side, #8cac34, #8cac34 20%, transparent 30%, transparent);
  background-size: 11px;
  display: inline-block;
  height: 15px;
  width: 100%;
}
.about-title::after {
  display: none;
}

.about-title span {
  padding: 0 25px;
  background-color: #f8f8f5;
  display: inline-block;
  position: relative;
}
.about-subtitle {
  text-align: center;
  letter-spacing: 1.6px;
  line-height: calc(30 / 16);
  font-weight: 500;
  margin-top: 15px;
  color: #5e743e;
  margin-bottom: 0;
}
.about-box {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
}
.about-box.-first {
  position: relative;
}
.about-box.-first::after {
  position: absolute;
  content: "";
  width: 52%;
  height: 170px;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  background: url(/html/user_data/assets/img/about/bg-line01.png) no-repeat center center / contain;
}
.about-box.-second {
  flex-direction: row-reverse;
  position: relative;
}
.about-box.-second::after {
  position: absolute;
  content: "";
  width: 52%;
  height: 170px;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  background: url(/html/user_data/assets/img/about/bg-line02.png) no-repeat center center / contain;
}
.about-box.-third {
  position: relative;
}
.about-box.-third::before,
.about-box.-third::after {
  position: absolute;
  content: "";
}
.about-box.-third::before {
  width: 124px;
  height: 124px;
  bottom: 50px;
  right: 0;
  background: url(/html/user_data/assets/img/about/bg-dot_circle.png) no-repeat center center / contain;
}
.about-box.-third::after {
  width: 170px;
  height: 126px;
  right: 75px;
  bottom: 15px;
  background: url(/html/user_data/assets/img/about/img-illust01.png) no-repeat center center / contain;
  transform: scale(-1, 1);
}
.about-box {
  margin-top: 90px;
}
.about-box-image {
  max-width: 400px;
  width: 40%;
}
.about-box-info {
  max-width: 570px;
  width: 56%;
}
.about-box-title {
  font-size: 18px;
  letter-spacing: 1.44px;
  line-height: calc(36 / 18);
  color: #5e743e;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.about-box-title br.tab {
  display: none;
}
.about-box-title::after {
  position: absolute;
  content: "";
}
.about-box-text {
  letter-spacing: 1.6px;
  line-height: calc(32 / 16);
  font-weight: 500;
  margin-top: 20px;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.about-box.-first .about-box-title::after {
  width: 140px;
  height: 100px;
  right: -170px;
  top: 50%;
  transform: translateY(-50%);
  background: url(/html/user_data/assets/img/about/img-illust01.png) no-repeat center center / contain;
}
.about-box.-first .about-box-text::before {
  position: absolute;
  content: "";
  width: 124px;
  height: 124px;
  bottom: -53px;
  right: -15px;
  background: url(/html/user_data/assets/img/about/bg-dot_circle.png) no-repeat center center / contain;
  z-index: -1;
}
.about-box.-second .about-box-title::after {
  width: 110px;
  height: 90px;
  right: -140px;
  top: 50%;
  transform: translateY(-50%);
  background: url(/html/user_data/assets/img/about/img-illust02.png) no-repeat center center / contain;
}
.about-box.-third .about-box-title::after {
  width: 86px;
  height: 64px;
  right: -86px;
  top: 50%;
  transform: translateY(-50%);
  background: url(/html/user_data/assets/img/about/img-illust03.png) no-repeat center center / contain;
}
#page_help_about .p-section.bg-dot {
  background: none;
}
#page_help_about .p-lower-mv-title span {
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .about-title {
    padding: 25px 0;
  }
  .about-title::before {
    top: 0;
    left: 0;
    transform: initial;
  }
  .about-title::after {
    display: block;
    top: initial;
    bottom: 0;
    left: 0;
    transform: initial;
  }
  .about-box {
    flex-direction: column;
  }
  .about-box.-second {
    flex-direction: column;
  }
  .about-box-image {
    max-width: 400px;
    width: 100%;
  }
  .about-box-info {
    max-width: 550px;
    width: 100%;
  }
  .about-box.-first::after {
    display: none;
  }
  .about-box.-second::after {
    display: none;
  }
  .about-box.-third::before {
    bottom: -50px;
  }
  .about-box.-third::after {
    bottom: -85px;
  }
  .about-box-image {
    position: relative;
  }
  .about-box.-first .about-box-image::before {
    position: absolute;
    content: "";
    width: 34px;
    height: 34px;
    left: 0;
    bottom: -34px;
    background: url(/html/user_data/assets/img/about/sp/bg-line01.png) no-repeat center center / contain;
  }
  .about-box.-second .about-box-image::before {
    position: absolute;
    content: "";
    width: 58px;
    height: 110px;
    right: 0;
    top: -34px;
    background: url(/html/user_data/assets/img/about/sp/bg-line02.png) no-repeat center center / contain;
  }
  .about-box.-second .about-box-image::after {
    position: absolute;
    content: "";
    width: 31px;
    height: 114px;
    left: 20px;
    bottom: -20px;
    background: url(/html/user_data/assets/img/about/sp/bg-line03.png) no-repeat center center / contain;
  }
  .about-box.-third .about-box-image::before {
    position: absolute;
    content: "";
    width: 42px;
    height: 64px;
    right: 60px;
    top: -90px;
    background: url(/html/user_data/assets/img/about/sp/bg-line04.png) no-repeat center center / contain;
  }
}
@media screen and (max-width: 768px) {
  .about-title {
    font-size: 20px;
  }
  .about-title br.tab {
    display: block;
  }
  .about-title::before,
  .about-title::after {
    background: radial-gradient(circle farthest-side, #8cac34, #8cac34 20%, transparent 30%, transparent);
    background-size: 11px;
  }
  .about-box-title br.tab {
    display: block;
  }
  .about-box.-first .about-box-title::after {
    width: 120px;
    height: 80px;
    right: -100px;
  }
  .about-box.-first .about-box-text::before {
    width: 90px;
    height: 90px;
    bottom: -30px;
    right: 5px;
  }
  .about-box.-second .about-box-title::after {
    width: 120px;
    height: 80px;
    right: -130px;
  }
}
@media screen and (max-width: 576px) {
  .about {
    margin-top: 50px;
  }
  .about-container {
    padding: 50px 20px 100px;
  }
  .about-title {
    letter-spacing: 0px;
  }
  .about-title span {
    padding: 0;
  }
  .about-subtitle {
    font-size: 14px;
  }
  .about-box:not(:first-of-type) {
    margin-top: 80px;
  }
  .about-box:first-of-type {
    margin-top: 50px;
  }
  .about-box-title {
    font-size: 16px;
  }
  .about-box-text {
    font-size: 14px;
  }
  .about-box.-first .about-box-image::before {
    bottom: -30px;
  }
  .about-box.-first .about-box-title::after {
    right: -10px;
    transform: initial;
    top: -40px;
    width: 90px;
    height: 70px;
  }
  .about-box.-second .about-box-image::before {
    right: -8px;
    top: -45px;
  }
  .about-box.-second .about-box-title::after {
    right: -55px;
    width: 70px;
    height: 50px;
  }
  .about-box.-second .about-box-image::after {
    left: -10px;
  }
  .about-box.-third .about-box-image::before {
    right: 30px;
    top: -75px;
  }
  .about-box.-third .about-box-title::after {
    width: 76px;
    height: 54px;
  }
  .about-box.-third::before {
    width: 86px;
    height: 86px;
    bottom: -30px;
  }
  .about-box.-third::after {
    width: 124px;
    height: 90px;
    right: 0;
    bottom: -80px;
  }
}

/* -------------------
 * よくあるご質問 
---------------------- */
.faq {
  padding: 60px 0 200px;
}
.faq .inner {
  max-width: 930px;
}
.faq-item {
  padding: 30px 0 40px;
  border-bottom: dashed 1px rgba(196, 212, 152, 0.9);
}
.faq-item-head {
  display: flex;
  align-items: center;
}
.faq-item-head span {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  letter-spacing: 1.2px;
  border-radius: 100px;
  background-color: #c5d599;
  font-weight: 700;
  line-height: 44px;
  margin-right: 20px;
}
.faq-item-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: calc(24 / 20);
}
.faq-item-body {
  margin-top: 20px;
  padding-left: 68px;
}
.faq-item-text {
  line-height: calc(28 / 16);
  letter-spacing: 0.8px;
}
.faq-item-text a {
  font-weight: 700;
  color: #477a00;
}
.faq-item-text span {
  display: inline-block;
}
.faq-item-text.-semibold {
  font-weight: 500;
}
.faq-item-text.-bold {
  font-weight: 700;
}
.faq-item-text + .faq-item-text {
  margin-top: 20px;
}
.faq-text-list:not(:first-of-type) {
  margin-top: 20px;
}
.faq-text-item {
  padding-left: 1em;
  text-indent: -1em;
  line-height: calc(24 / 16);
  letter-spacing: 0.8px;
}
.faq-item-text + .faq-child-list {
  margin-top: 30px;
}
.faq-child-item:not(:first-of-type) {
  margin-top: 30px;
}
.faq-child-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.9px;
  line-height: calc(28 / 18);
}
.faq-child-text {
  letter-spacing: 0.8px;
  line-height: calc(28 / 16);
}
.faq-child-text span:not(.arrow) {
  display: inline-block;
}
.faq-child-text span.arrow {
  margin: 0 1em;
}
.faq-child-item ul li {
  line-height: calc(28 / 16);
  padding-left: 1em;
  text-indent: -1em;
}
.faq-contact {
  margin-top: 50px;
}
.faq-contact-message {
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: normal;
  color: #5e743e;
}
.faq-contact-message span.ib {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .faq {
    padding: 40px 0 100px;
  }
  .faq-item {
    padding: 20px 0 30px;
  }
  .faq-item-head span {
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 36px;
  }
  .faq-item-title {
    font-size: 18px;
  }
  .faq-item-body {
    padding-left: 60px;
    margin-top: 15px;
  }
  .faq-item-text,
  .faq-text-item,
  .faq-child-text,
  .faq-child-item ul li {
    font-size: 14px;
  }
  .faq-text-item {
    line-height: calc(24 / 14);
  }
  .faq-child-title {
    font-size: 16px;
  }
  .faq-child-text {
    font-size: 14px;
  }
  .faq-child-text span.arrow {
    margin-left: 0;
  }
  .faq-item-text span.ib,
  .faq-child-text span.ib {
    display: inline;
  }
}
@media screen and (max-width: 576px) {
  .faq-item-head span {
    width: 30px;
    height: 30px;
    font-size: 18px;
    line-height: 26px;
    margin-right: 10px;
  }
  .faq-item-body {
    padding-left: 40px;
  }
}
/* -------------------
 * 会社案内 
---------------------- */
#page_company .company {
  padding: 60px 0 100px;
}
#page_company .company .inner {
  max-width: 880px;
}
.company-tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}
.company-tab-item {
  width: calc((100% / 4) - 10px * 3 / 4);
}
.company-tab-item a {
  display: block;
  text-align: center;
  width: 100%;
  border-radius: 5px;
  padding: 16px 0;
  background-color: #ebf0dd;
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: normal;
  transition:
    color 0.3s,
    background-color 0.3s;
  position: relative;
}
.company-tab-item a .arrow {
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 100px;
  background-color: #569450;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.company-tab-item a .arrow::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(45deg);
}
@media (hover: hover) and (pointer: fine) {
  .company-tab-item a:hover {
    background-color: #477a00;
    color: #fff;
    transition:
      color 0.3s,
      background-color 0.3s;
  }
  .company-tab-item a:hover .arrow {
    background-color: #fff;
    transition: background-color 0.3s;
  }
  .company-tab-item a:hover .arrow::before {
    border-color: #477a00;
    transition: border-color 0.3s;
  }
}
.company-section:not(:first-of-type) {
  padding-top: 70px;
  margin: 0 auto 100px;
}
.company-section:first-of-type {
  padding-top: 50px;
  margin: 0 auto 100px;
}
.company-section-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.92px;
  color: #5e743e;
  margin-bottom: 52px;
}
.company-section-title span {
  position: relative;
  padding-bottom: 12px;
}
.company-section-title span::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(196, 212, 152, 0.9);
}
@media screen and (max-width: 768px) {
  #page_company .company {
    padding: 40px 0 80px;
  }
  #page_company .company .inner {
    padding: 0 20px;
  }
  .company-tab-list {
    margin-bottom: 40px;
  }
  .company-tab-item {
    width: calc(50% - 10px / 2);
  }
  .company-section:first-of-type {
    padding-top: 40px;
    margin: 0 auto 60px;
  }
  .company-section:not(:first-of-type) {
    padding-top: 60px;
    margin: 0 auto 60px;
  }
}
@media screen and (max-width: 576px) {
  .company-tab-item a {
    font-size: 14px;
  }
  .company-section-title {
    font-size: 20px;
    margin: 0 auto 50px;
  }
  .company-section:not(:first-of-type) {
    padding-top: 50px;
    margin: 0 auto 50px;
  }
}

/* philosophy */
.philosophy {
  max-width: 720px;
}
.philosophy-box {
  background-color: #f8f8f5;
  border-radius: 7px;
  padding: 40px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.philosophy-item {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1.6px;
  line-height: normal;
  color: #5e743e;
}
.philosophy-item:last-child {
  margin-top: 20px;
}
.philosophy-title {
  margin: 80px 0 30px;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: normal;
  font-weight: 700;
  color: #5e743e;
}
.philosophy-text {
  letter-spacing: 1.6px;
  font-weight: 300;
  line-height: calc(30 / 16);
  color: #5e743e;
}
.philosophy-text:not(:first-of-type) {
  margin-top: 30px;
}
@media screen and (max-width: 576px) {
  .philosophy-box {
    padding: 30px 10px;
  }
  .philosophy-item {
    font-size: 16px;
  }
  .philosophy-item:last-child {
    margin-top: 15px;
  }
  .philosophy-title {
    margin: 60px 0 20px;
    font-size: 16px;
  }
  .philosophy-text {
    font-size: 14px;
  }
  .philosophy-text:not(:first-of-type) {
    margin-top: 20px;
  }
}

/* overview */
.overview {
  max-width: 720px;
}
.overview-list {
  display: flex;
  flex-wrap: wrap;
}
.overview-title,
.overview-desc {
  letter-spacing: 1.28px;
  line-height: normal;
  color: #5e743e;
  padding: 25px;
  border-bottom: dashed 1px rgba(196, 212, 152, 0.9);
}
.overview-title {
  max-width: 175px;
  width: 24.3%;
  font-weight: 700;
}
.overview-desc {
  width: calc(100% - 24.3%);
  margin-bottom: 0;
}
.overview-desc span {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .overview-title,
  .overview-desc {
    max-width: 100%;
    width: 100%;
  }
  .overview-title {
    border: none;
    padding: 20px 20px 0;
  }
  .overview-desc {
    padding: 20px;
  }
}
@media screen and (max-width: 576px) {
  .overview-title,
  .overview-desc {
    font-size: 14px;
  }
  .overview-title {
    padding: 20px 15px 0;
  }
  .overview-desc {
    padding: 15px 15px 20px;
  }
}

/* map */
.map-wrap {
  aspect-ratio: 840 / 340;
  position: relative;
}
.map-wrap iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .map-wrap {
    aspect-ratio: 3 / 2;
  }
}
@media screen and (max-width: 576px) {
  .map-wrap {
    aspect-ratio: 1 / 1;
  }
}

/* greeting */
.greeting-wrap {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.greeting-image {
  max-width: 380px;
  width: 45.3%;
}
.greeting-message {
  max-width: 420px;
  width: 50%;
}
.greeting-message-title {
  font-size: 18px;
  line-height: calc(32 / 18);
  font-weight: 700;
  letter-spacing: 1.8px;
  color: #5e743e;
  margin-bottom: 20px;
}
.greeting-message-text {
  color: #5e743e;
  line-height: calc(30 / 16);
  letter-spacing: 1.28px;
}
.greeting-message-text:not(:first-of-type) {
  margin-top: 30px;
}
.greeting-name-wrap {
  text-align: right;
  margin-top: 30px;
  color: #5e743e;
}
.greeting-position {
  font-size: 12px;
  letter-spacing: 0.96px;
  line-height: calc(21 / 12);
}
.greeting-name {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.8px;
  line-height: calc(27 / 18);
}
@media screen and (max-width: 768px) {
  .greeting-wrap {
    display: block;
  }
  .greeting-image,
  .greeting-message {
    max-width: 100%;
    width: 100%;
  }
  .greeting-message {
    margin-top: 30px;
  }
}
@media screen and (max-width: 576px) {
  .greeting-message-title {
    font-size: 16px;
  }
  .greeting-message-text {
    font-size: 14px;
  }
  .greeting-name {
    font-size: 16px;
  }
}
/* -------------------
 * ご利用ガイド 
---------------------- */
.guide {
  padding: 60px 0 100px;
}
.guide .inner {
  max-width: 930px;
}
.guide-text {
  letter-spacing: 0.8px;
  line-height: calc(28 / 16);
}
.guide-text + .guide-text {
  margin-top: 30px;
}
.guide-text.-semibold {
  font-weight: 500;
}
.guide-text.-bold {
  font-weight: 700;
}
.guide-text span:not(.arrow) {
  display: inline-block;
  padding-left: 2em;
  text-indent: -2em;
}
.guide-text span.arrow {
  margin: 0 1em;
}
.guide-box {
  padding: 40px 0;
  border-bottom: dashed 1px rgba(196, 212, 152, 0.9);
}
.guide-box-list {
  margin-left: 1em;
}
.guide-box-item {
  line-height: calc(28 / 16);
  padding-left: 1em;
  text-indent: -1em;
  letter-spacing: 0.8px;
}
.guide-list {
  margin-top: 40px;
}
.p-help-title + .guide-list {
  margin-top: 20px;
}
.guide-item:not(:first-of-type) {
  margin-top: 70px;
}
.p-help-title + .guide-list .guide-item:not(:first-of-type) {
  margin-top: 20px;
}
.guide-item-title {
  font-size: 18px;
  letter-spacing: 0.9px;
  line-height: calc(30 / 18);
  font-weight: 700;
  margin-bottom: 10px;
  padding-left: 1em;
  text-indent: -1em;
}
.guide-item-title br.ib {
  display: none;
}
.p-help-title + .guide-list .guide-item-title {
  margin-bottom: 0;
}
.guide-child-list {
  margin-top: 10px;
}
.guide-child-item:not(:first-of-type) {
  margin-top: 30px;
}
.guide-child-title {
  font-weight: 700;
  line-height: calc(30 / 16);
  letter-spacing: 0.8px;
}
.guide-child-item ul {
  margin-top: 20px;
}
.guide-child-item ul li {
  line-height: calc(30 / 16);
  padding-left: 1em;
  text-indent: -1em;
  letter-spacing: 0.8px;
}
.guide-child-item ul li a {
  text-decoration: underline;
  color: #0056bc;
}
.guide-child-box {
  margin-top: 35px;
  background-color: #f8f8f5;
  width: max-content;
  padding: 5px 30px;
}
.guid-child-box-text {
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: calc(30 / 16);
  font-weight: 400;
}
.guide-icon-list {
  display: flex;
  gap: 0 20px;
  flex-wrap: wrap;
}
.guide-icon-item {
  width: max-content;
}
.guide-icon-item figure {
  text-align: center;
  margin-bottom: 0;
}
.guide-icon-item figcaption {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.6px;
  line-height: calc(30 / 12);
  position: relative;
  top: -15px;
  text-transform: uppercase;
}
.shippingfee-list{
  margin: 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.shippingfee-list div{
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f8f8f5;
  padding: 0 20px 10px;
  align-items: center;
}
.shippingfee-list dt{
  width: 80%;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
}
.shippingfee-list dt span{
  font-size: 14px;
}
.shippingfee-list dd{
  text-align: right;
  width: 20%;
}
@media screen and (max-width: 768px) {
  .shippingfee-list dt{
    align-items: flex-start;
    gap: 5px;
    flex-direction: column;
  }
}

@media screen and (max-width: 576px) {
  .guide {
    padding: 40px 0 80px;
  }
  .guide-box {
    padding: 30px 0;
  }
  .guide-text {
    font-size: 14px;
  }
  .guide-text span.arrow {
    margin: 0 0.5em;
  }
  .guide-text + .guide-text {
    margin-top: 20px;
  }
  .guide-box-list {
    margin-left: 0.5em;
  }
  .guide-box-item {
    font-size: 14px;
  }
  .guide-list {
    margin-top: 30px;
  }
  .guide-item:not(:first-of-type) {
    margin-top: 50px;
  }
  .guide-item-title {
    font-size: 16px;
  }
  .guide-item-title br.ib {
    display: block;
  }
  .guide-child-title {
    font-size: 14px;
  }
  .guide-child-item ul li {
    font-size: 14px;
  }
  .guide-child-item ul li .ib {
    display: none;
  }
  .guide-child-box {
    margin-top: 25px;
  }
  .guid-child-box-text {
    font-size: 14px;
  }
}

/* -------------------
 * 特定商取引法に関する表記 
---------------------- */
.tradelaw {
  padding: 100px 0;
}
.tradelaw .inner {
  max-width: 1090px;
}
.tradelaw-list {
  display: flex;
  margin-bottom: 0;
  border-bottom: dashed 1px rgba(196, 212, 152, 0.9);
}
.tradelaw-title,
.tradelaw-desc {
  padding: 23px 25px 24px;
  letter-spacing: 0.8px;
  line-height: calc(30 / 16);
  color: #5e743e;
}
.tradelaw-title {
  width: 20%;
  min-width: 202px;
  font-weight: 700;
}
.tradelaw-desc {
  width: 78%;
  margin-bottom: 0;
}
.tradelaw-desc span {
  display: inline-block;
}
.tradelaw-desc ul li {
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 768px) {
  .tradelaw {
    padding: 60px 0 80px;
  }
  .tradelaw-list {
    display: block;
  }
  .tradelaw-title,
  .tradelaw-desc {
    padding: 20px;
  }
  .tradelaw-title {
    width: 100%;
    min-width: 0;
    padding-bottom: 7px;
  }
  .tradelaw-desc {
    width: 100%;
    padding-top: 0;
  }
}
@media screen and (max-width: 576px) {
  #page_help_tradelaw .p-lower-mv-title {
    font-size: 22px;
  }
  .tradelaw-title,
  .tradelaw-desc {
    font-size: 14px;
    padding-right: 15px;
    padding-left: 15px;
  }
}

/* -------------------
 * プライバシーポリシー 
---------------------- */
.privacy {
  padding: 60px 0 100px;
}
.privacy .inner {
  max-width: 1090px;
}
.privacy .p-help-title {
  margin-top: 80px;
  margin-bottom: 10px;
}
.privacy-text {
  line-height: calc(30 / 16);
  letter-spacing: 0.8px;
  margin-bottom: 0;
}
.privacy-text + .privacy-text {
  margin-top: 20px;
}
.privacy-item {
  line-height: calc(30 / 16);
  letter-spacing: 0.96px;
  padding-left: 1em;
  text-indent: -1em;
}
.privacy-list + .privacy-text {
  margin-top: 20px;
}
@media screen and (max-width: 576px) {
  .privacy {
    padding: 40px 0 80px;
  }
  .privacy .p-help-title {
    margin-top: 40px;
  }
  .privacy-text {
    font-size: 14px;
  }
  .privacy-item {
    font-size: 14px;
  }
}

/* -------------------
 * ご利用規約 
---------------------- */
.agreement {
  padding: 60px 0 100px;
  font-weight: 500;
  line-height: calc(30 / 16);
}
.agreement .inner {
  max-width: 1090px;
}
.agreement-title,
.agreement-list,
.agreement-item.mb30,
.agreement-title + .agreement-text {
  margin-bottom: 30px;
}
@media screen and (max-width: 576px) {
  .agreement {
    padding: 40px 0 80px;
    font-size: 14px;
  }
}
/* -------------------
 * 新規会員登録
---------------------- */
.entry {
  padding: 60px 0 100px;
}
.entry .inner {
  max-width: 985px;
}
.entry-message {
  font-weight: 500;
  letter-spacing: 0.8px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .entry {
    padding: 40px 0 80px;
  }
}

/* 確認画面 */
.entry.-confirm .entry-message {
  margin-bottom: 60px;
  line-height: calc(30 / 16);
}
.entry.-confirm .p-form-list dd p {
  border-radius: 7px;
  background-color: #f3f1f1;
  color: #999;
  padding: 7px 12px 8px;
}
.entry-button-wrap .p-button:last-child {
  margin: 20px auto 0;
}
@media screen and (max-width: 576px) {
  .entry.-confirm .entry-message {
    margin-bottom: 30px;
  }
}

/* 完了 */
.entry-complete {
  padding: 60px 0 200px;
}
.entry-complete .inner {
  max-width: 1090px;
}
.entry-complete-message {
  text-align: center;
  line-height: calc(30 / 16);
  font-weight: 500;
  letter-spacing: 0.8px;
}
.entry-complete .p-button {
  margin: 60px auto 0;
}
@media screen and (max-width: 576px) {
  .entry-complete-message {
    font-size: 14px;
  }
  .entry-complete {
    padding: 40px 0 80px;
  }
}

/* -------------------
 * ログイン画面
---------------------- */
.login {
  padding: 80px 0 200px;
}
.login .inner {
  max-width: 760px;
}
.login-box {
  background-color: #f3f4f4;
  border-radius: 10px;
  padding: 56px 105px 60px;
}
.login-box .ec-errorMessage {
  margin-top: 5px;
  color: #e50012;
}
.login-input {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.login .form-control {
  font-size: 16px;
  border: none;
  border-radius: 7px;
  background-color: #fff;
  padding: 7px 19px;
  line-height: calc(30 / 16);
  letter-spacing: 0.8px;
  font-weight: 500;
}
.login .form-control:focus {
  color: #404040;
  box-shadow: none;
  outline: auto -webkit-focus-ring-color;
}
.login .form-control::placeholder {
  color: #999999;
}
.login-checkbox {
  margin-top: 20px;
  position: relative;
}
.login-checkbox .form-check {
  padding-left: 0;
  margin: 0;
}
.login-checkbox .form-check-input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}
.login-checkbox .form-check-label {
  padding-left: 25px;
  position: relative;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
  line-height: normal;
}
.login-checkbox .form-check-label::before,
.login-checkbox .form-check-label::after {
  position: absolute;
  content: "";
  top: 50%;
}
.login-checkbox .form-check-label::before {
  width: 18px;
  height: 18px;
  border-radius: 2px;
  border: solid 1px #ccc;
  background-color: #fff;
  left: 0;
  transform: translateY(-50%);
}
.login-checkbox .form-check-label::after {
  width: 7px;
  height: 10px;
  left: 5px;
  transform: translateY(-50%) rotate(45deg);
  border-bottom: solid 2px #404040;
  border-right: solid 2px #404040;
  opacity: 0;
}
.login-checkbox .form-check-input[type="checkbox"]:focus-visible + .form-check-label::before {
  outline: auto -webkit-focus-ring-color;
}
.login-checkbox .form-check-input[type="checkbox"]:checked + .form-check-label::after {
  opacity: 1;
}
.login-message {
  font-size: 14px;
  margin-top: 5px;
  font-weight: 500;
}
.login-bottom-wrap {
  display: flex;
  margin-top: 40px;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.login-bottom-wrap .p-button {
  margin: 0;
  width: 100%;
}
.login-help-link {
  color: #7fb7ca;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
  line-height: normal;
}
.login-help-link a.ec-link {
  color: inherit;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .login-help-link a.ec-link:hover {
    opacity: 0.8;
    transition: opacity 0.3s;
  }
}
.login-help-link:last-of-type {
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .login {
    padding: 40px 0 100px;
  }
  .login-box {
    padding: 50px 60px;
  }
}
@media screen and (max-width: 576px) {
  .login-box {
    padding: 50px 30px;
  }
  .login .form-control {
    font-size: 14px;
  }
  .login-bottom-wrap {
    flex-direction: column-reverse;
    align-items: start;
    margin-top: 20px;
  }
  .login-bottom-wrap .p-button {
    margin: 20px auto 0;
  }
}
/* ゲスト購入ログイン */
.shopping-login .login-box {
  padding: 56px 0 60px;
}
.login-box-inner {
  max-width: 550px;
  margin: 0 auto;
  padding: 0 20px;
}
.shopping-login .inner {
  max-width: 1090px;
  display: flex;
  gap: 30px;
}
.shopping-login .login-form {
  max-width: 670px;
  width: 63%;
}
.shopping-login .login-guest {
  max-width: 350px;
  width: 33%;
  display: grid;
  place-content: center;
  background-color: #f3f4f4;
  border-radius: 10px;
}
.shopping-login .login-guest .p-button {
  width: 100%;
  margin: 20px auto 0;
}
.login-guest-inner {
  max-width: 300px;
  padding: 0 20px;
}
.login-guest-text {
  font-size: 14px;
  line-height: normal;
  letter-spacing: 0.7px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .shopping-login .inner {
    flex-direction: column;
    gap: 20px;
  }
  .shopping-login .login-form,
  .shopping-login .login-guest {
    max-width: 100%;
    width: 100%;
  }
  .shopping-login .login-guest {
    padding: 60px 0;
  }
}
/* -------------------
 * パスワード再発行
---------------------- */
/* 入力 */
.forgot {
  padding: 60px 0 200px;
}
.forgot .inner {
  max-width: 985px;
}
.forgot-message {
  line-height: calc(30 / 16);
  font-weight: 500;
  letter-spacing: 0.8px;
  text-align: center;
}
.forgot .p-form-list:first-of-type {
  margin-top: 60px;
}
@media screen and (max-width: 576px) {
  .forgot {
    padding: 40px 0 100px;
  }
  .forgot-message {
    font-size: 14px;
  }
  .forgot .p-form-list:first-of-type {
    margin-top: 40px;
  }
}

/* -------------------
 * カート
---------------------- */
.cart {
  padding: 80px 0 100px;
}
.cart .inner {
  max-width: 1040px;
}
.cart .ec-cartRole__totalText {
  text-align: center;
}
.cart .ec-cartRole__totalText strong {
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.8px;
}
.cart .ec-cartRole .ec-cartRole__progress {
  margin-top: 20px;
}
.cart .ec-cartRole .ec-cartRole__progress br {
  display: none;
}
.cart .ec-cartRole {
  padding: 0;
  width: 100%;
}
.cart .ec-cartRole__cart {
  margin: 40px 0 0 0;
}
.cart .ec-cartHeader .ec-cartHeader__label {
  padding: 6px 15px;
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: normal;
  color: #5e743e;
  white-space: nowrap;
}
.cart .ec-cartRow .ec-cartRow__delColumn .ec-icon img {
  width: 16px;
  height: 16px;
}
.cart .ec-cartRow__contentColumn .ec-cartRole img {
  height: 100%;
  max-width: 90px;
  aspect-ratio: 90 / 97;
  object-fit: contain;
}
.cart .ec-cartRow .ec-cartRow__summary .ec-cartRow__name {
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: normal;
  color: #5e743e;
  margin-bottom: 3px;
}
.cart .arrive-schedule {
  font-size: 12px;
  letter-spacing: 0.6px;
  line-height: normal;
  font-weight: 400;
}
.cart .ec-cartRow__unitPrice {
  letter-spacing: 0.8px;
  line-height: normal;
  margin-top: 8px;
}
.cart .ec-cartRow .ec-cartRow__contentColumn {
  width: 62%;
}
.cart .ec-cartRow .ec-cartRow__img {
  width: 90px;
}
.cart .ec-cartRow .ec-cartRow__summary {
  width: auto;
}
.cart .ec-cartRow .ec-cartRow__amountColumn .ec-cartRow__amount {
  font-weight: 700;
}
.cart .ec-cartRow .ec-cartRow__amountColumn .ec-cartRow__amountDownButton,
.cart .ec-cartRow .ec-cartRow__amountColumn .ec-cartRow__amountDownButtonDisabled {
  border-color: #d4dfb5;
  position: relative;
}
.cart .ec-cartRow .ec-cartRow__amountColumn .ec-cartRow__amountUpButton {
  border-color: #d4dfb5;
  position: relative;
}
.cart .ec-cartRow__amountUpButton__icon,
.cart .ec-cartRow__amountDownButton__icon {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cart .ec-cartRow__amountDownButton__icon::before,
.cart .ec-cartRow__amountUpButton__icon::before,
.cart .ec-cartRow__amountUpButton__icon::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #5e743e;
}
.cart .ec-cartRow__amountUpButton__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.cart .ec-cartRow__amountDownButtonDisabled .ec-cartRow__amountDownButton__icon::before {
  background-color: #d4dfb5;
}
.cart .ec-cartRow__sutbtotal {
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: normal;
  padding-right: 15px;
}
.cart .ec-cartRole .ec-cartRole__actions {
  margin-right: 0;
  padding-right: 15px;
  width: 100%;
}
.cart .ec-cartRole .ec-cartRole__total {
  padding: 15px 0 40px;
}
.cart .ec-cartRole .ec-cartRole__totalAmount {
  color: #e50012;
  letter-spacing: 1.2px;
}
.cart .p-button {
  margin: 0 0 0 auto;
}
.cart .p-button.gray {
  color: #fff;
  margin-top: 16px;
}
.cart .p-error-wrap {
  max-width: 480px;
}
@media screen and (max-width: 768px) {
  .cart {
    padding: 60px 0 80px;
  }
  .cart .ec-cartRow .ec-cartRow__delColumn {
    width: 10%;
  }
  .cart .ec-cartRow .ec-cartRow__contentColumn {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .cart .ec-cartRole__totalText {
    font-size: 14px;
  }
  .cart .ec-cartRole .ec-cartRole__progress {
    font-size: 14px;
    margin-top: 4px;
  }
  .cart .ec-cartRole .ec-cartRole__progress br {
    display: block;
  }
  .cart .ec-cartRole__cart {
    margin: 30px 0 0 0;
  }
  .cart .ec-cartRow .ec-cartRow__delColumn {
    width: 8%;
  }
  .cart .ec-cartRow .ec-cartRow__img {
    width: 80px;
  }
  .cart .ec-cartRow .ec-cartRow__summary .ec-cartRow__name,
  .cart .ec-cartRow__unitPrice,
  .cart .ec-cartRow .ec-cartRow__amountColumn .ec-cartRow__amountSP,
  .cart .ec-cartRow .ec-cartRow__summary .ec-cartRow__sutbtotalSP {
    font-size: 14px;
  }
  .cart .ec-cartRow .ec-cartRow__summary .ec-cartRow__sutbtotalSP {
    font-weight: 700;
  }
  .cart .ec-cartRow .ec-cartRow__summary .ec-cartRow__sutbtotalSP {
    margin-top: 6px;
  }
  .cart .arrive-schedule {
    font-size: 10px;
  }
  .cart .ec-cartRow .ec-cartRow__amountColumn .ec-cartRow__amountDownButton,
  .cart .ec-cartRow .ec-cartRow__amountColumn .ec-cartRow__amountDownButtonDisabled,
  .cart .ec-cartRow .ec-cartRow__amountColumn .ec-cartRow__amountUpButton {
    width: 25px;
    height: 25px;
    min-width: 0;
  }
  .cart .ec-cartRow__amountUpButton__icon,
  .cart .ec-cartRow__amountDownButton__icon {
    height: 9px;
  }
  .cart .ec-cartRole .ec-cartRole__actions {
    padding-right: 0px;
  }
  .cart .p-button {
    margin: 0 auto;
  }
}

/* -------------------
 * 非会員購入情報入力
---------------------- */
.nonmember {
  padding: 80px 0 100px;
}
.nonmember .inner {
  max-width: 1040px;
}
.nonmember .p-button:last-child {
  margin: 20px auto 0;
}

/* -------------------
 * 注文手続き
---------------------- */
.shopping {
  padding: 80px 0 100px;
}
.shopping .inner {
  max-width: 1090px;
}
.shopping-container {
  margin-top: 100px;
}
.shopping-wrap {
  display: flex;
  gap: 40px;
}
.shopping-detail {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 690px;
  width: 66%;
}
.shopping-account-detail p {
  letter-spacing: 0.8px;
  font-weight: 500;
  line-height: calc(28 / 16);
  margin-bottom: 0;
}
.shopping-account-change-button {
  max-width: 70px;
  text-align: center;
  margin: 0 0 15px auto;
}
.shopping-account-change-button button {
  width: 100%;
  padding: 8px 20px;
  background-color: #edb348;
  color: #fff;
  border-radius: 0px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
  transition: opacity 0.3s;
  border: none;
  line-height: calc(28 / 16);
}
@media (hover: hover) and (pointer: fine) {
  .shopping-account-change-button button:hover {
    opacity: 0.8;
    transition: opacity 0.3s;
  }
}
.shopping-account .ec-borderedDefs {
  margin-bottom: 0;
  border: none;
}
.shopping-account .ec-borderedDefs dl {
  padding: 0;
  border: none;
}
.shopping-account .p-form-list dt .ec-label {
  white-space: nowrap;
}
.shopping-account .p-form-list dd {
  padding: 25px 20px;
}
.shopping-account .ec-input input {
  margin-bottom: 0;
}
.shopping-account .ec-required {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.6px;
  line-height: calc(30 / 12);
  margin-left: 4px;
  color: #e50012;
}
.shopping-account-button-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.p-button.form.shopping-account-button {
  width: 100%;
  margin: 0 auto;
}
.shopping-account-button.p-button.form.gray button {
  color: #fff;
}

.shopping-delivery-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: calc(28 / 16);
}
.shopping-delivery-button {
  max-width: 70px;
  text-align: center;
}
.shopping-delivery-button button {
  width: 100%;
  padding: 8px 20px;
  background-color: #edb348;
  color: #fff;
  border-radius: 0px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
  transition: opacity 0.3s;
  border: none;
}
@media (hover: hover) and (pointer: fine) {
  .shopping-delivery-button button:hover {
    opacity: 0.8;
    transition: opacity 0.3s;
  }
}
.shopping-delivery-list {
  border-bottom: dashed 1px #d9d9d9;
  margin-top: 18px;
}
.shopping-delivery-item {
  display: flex;
  border-top: dashed 1px #d9d9d9;
  padding: 12px 5px;
  align-items: center;
}
.shopping-delivery-image {
  max-width: 115px;
  aspect-ratio: 1 / 1;
  padding: 9px 12px 8px 13px;
  display: flex;
}
.shopping-delivery-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 98px;
}
.shopping-delivery-name {
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: normal;
  color: #5e743e;
}
.shopping-delivery-schedule {
  font-size: 12px;
  letter-spacing: 0.6px;
  line-height: normal;
  margin-top: 3px;
}
.shopping-delivery-price {
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: normal;
  display: flex;
  gap: 1em;
  margin-top: 8px;
}
.shopping-delivery-address {
  margin-top: 30px;
}
.shopping-delivery-address p {
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: calc(28 / 16);
  margin-bottom: 0;
}
.shopping-delivery-wrap {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 46px;
  padding-bottom: 20px;
}
.shopping-delivery-select {
  display: flex;
  align-items: center;
}
.shopping-delivery-select__how {
  width: 100%;
}
.shopping-delivery-select select {
  width: 200px;
  border: none;
  appearance: none;
  background-color: #f3f1f1;
  letter-spacing: 0.8px;
  font-weight: 500;
  line-height: calc(30 / 16);
  padding: 7px 12px;
  border-radius: 7px;
  background: #f3f1f1 url(/html/user_data/assets/img/common/icon-arrow_select.svg) no-repeat right 12px center / 10px
    12px;
}
.shopping-delivery-select label {
  width: max-content;
  margin-right: 15px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: calc(28 / 16);
}
.shopping-deliver-edit {
  padding-top: 20px;
  border-top: dashed 1px #d9d9d9;
}
.shopping-deliver-edit-text {
  font-size: 14px;
  letter-spacing: 0.7px;
  line-height: calc(28 / 14);
  font-weight: 500;
}
.shopping-deliver-edit-button {
  margin-top: 10px;
  max-width: 143px;
}
.shopping-deliver-edit-button button {
  border: none;
  background-color: #edb348;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
  padding: 8px 20px;
  transition: opacity 0.3s;
  border: none;
}
@media (hover: hover) and (pointer: fine) {
  .shopping-deliver-edit-button button:hover {
    opacity: 0.8;
    transition: opacity 0.3s;
  }
}
.shopping-payment-radio:not(:first-of-type) {
  margin-top: 15px;
}
.shopping-payment-radio {
  position: relative;
}
.shopping-payment-radio input[type="radio"] {
  opacity: 0;
  position: absolute;
}
.shopping-payment-radio label {
  letter-spacing: 0.8px;
  font-weight: 500;
  line-height: calc(30 / 16);
  padding-left: 28px;
  position: relative;
}
.shopping-payment-radio label::before,
.shopping-payment-radio label::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
}
.shopping-payment-radio label::before {
  width: 18px;
  height: 18px;
  border-radius: 100px;
  border: solid 1px #404040;
  background-color: #fff;
  left: 0;
}
.shopping-payment-radio label::after {
  width: 12px;
  height: 12px;
  left: 3px;
  background-color: #005cc8;
  border-radius: 100px;
  display: none;
}
.shopping-payment-radio input[type="radio"]:checked + label::after {
  display: block;
}
.shopping-payment-radio .payment-text-list {
  padding-left: 24px;
  display: none;
}
.shopping-payment-radio .payment-text-item {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
  line-height: calc(28 / 14);
  padding-left: 1em;
  text-indent: -1em;
}
.shopping-payment-radio .payment-text-item.-caution {
  color: #ed504e;
}
.shopping-payment-radio #shopping_order_Payment_3:checked ~ .payment-text-list.-bank {
  display: block;
}
.shopping-payment-radio #shopping_order_Payment_1:checked ~ .payment-text-list.-post {
  display: block;
}
.shopping-payment-radio #shopping_order_Payment_4:checked ~ .payment-text-list.-cash {
  display: block;
}
.shopping-payment-text {
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: calc(30 / 16);
}
.shopping-point-text {
  margin-bottom: 10px;
}

.shopping-summary {
  min-width: 290px;
  width: 31%;
  position: sticky;
  top: 140px;
  right: 0;
  height: max-content;
  background-color: #f3f4f4;
  padding: 16px;
}
.shopping-summary-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shopping-summary-title,
.shopping-summary-desc {
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: normal;
}
.shopping-summary-desc {
  margin-bottom: 0;
}
.shopping-summary-total {
  margin-top: 16px;
  padding-top: 10px;
  border-top: dashed 1px #d9d9d9;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.8px;
  display: flex;
  justify-content: end;
  align-items: baseline;
}
.shopping-summary-total .total-price {
  font-size: 24px;
  letter-spacing: 1.2px;
  font-weight: 700;
  line-height: normal;
  color: #ed504e;
  margin-left: 16px;
}
.shopping-summary-total .total-tax-label {
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: normal;
  color: #ed504e;
  margin-left: 8px;
}
.shopping-summary-rate {
  font-size: 12px;
  text-align: right;
  margin-top: 13px;
  letter-spacing: 0.6px;
  line-height: normal;
}
.shopping-summary-point-box {
  margin-top: 20px;
}
.shopping-summary-button-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 46px;
}
.shopping-summary-button-wrap .p-button.form {
  margin-top: 0;
  width: 100%;
}
.shopping-summary-button-wrap .p-button.form.-return {
  color: #fff;
}

.shopping-complete-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: calc(40 / 28);
  color: #5e743e;
  text-align: center;
  margin-top: 50px;
}
.shopping-complete-text {
  letter-spacing: 0.05em;
  line-height: calc(29 / 16);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
  margin-top: 30px;
}
.shopping-complete-id {
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
  line-height: calc(29 / 16);
  letter-spacing: 0.05em;
}
.shopping-complete-button {
  margin: 40px auto 0;
}

@media screen and (max-width: 768px) {
  .shopping {
    padding: 60px 0 80px;
  }
  .shopping-wrap {
    flex-direction: column;
  }
  .shopping-detail {
    max-width: 100%;
    width: 100%;
  }
  .shopping-container {
    margin-top: 60px;
  }
  .shopping-summary {
    max-width: 100%;
    width: 100%;
  }
  .shopping-complete-text br.tab {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .shopping-account-detail p,
  .shopping-delivery-name,
  .shopping-delivery-price,
  .shopping-delivery-address p,
  .shopping-delivery-select label,
  .shopping-delivery-select select,
  .shopping-payment-radio label,
  .shopping-payment-radio .payment-text-item,
  .shopping-complete-text,
  .shopping-complete-id,
  .shopping-account .p-form-list dt .ec-label {
    font-size: 14px;
  }
  .shopping-delivery-price {
    flex-direction: column;
    gap: 4px;
  }
  .shopping-complete-title {
    font-size: 20px;
  }
  .shopping-complete-text {
    margin-top: 20px;
  }
}

/* -------------------
 * クレジットカード入力画面
---------------------- */
.credit {
  padding: 60px 0 100px;
}
.credit .inner {
  max-width: 985px;
}
.credit .p-button:last-child {
  margin-top: 20px;
}

/* ---------------------------
 * 商品購入/お届け先
--------------------------- */
.shipping {
  padding: 60px 0 100px;
}
@media screen and (max-width: 768px) {
  .shipping {
    padding: 40px 0 80px;
  }
}

/* お届け先指定 */
.shipping .inner {
  max-width: 985px;
}
.shipping-message {
  text-align: center;
  font-weight: 500;
  line-height: calc(28 / 16);
  letter-spacing: 0.05em;
}
.shipping-head {
  margin-top: 30px;
}
.shipping-add-button {
  max-width: 200px;
}
.shipping-add-button a {
  display: block;
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  line-height: calc(20 / 14);
  letter-spacing: 0.05em;
  color: #fff;
  padding: 8px 5px;
  text-align: center;
  background-color: #94a170;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .shipping-add-button a:hover {
    opacity: 0.8;
    transition: opacity 0.3s;
  }
}
.shipping-body {
  margin-top: 20px;
}
.shipping-address-list {
  border-bottom: dashed 1px #cccccc;
}
.shipping-address-item {
  border-top: dashed 1px #cccccc;
  padding: 16px 0;
  display: flex;
  align-items: center;
  position: relative;
}
.shipping-address-text {
  letter-spacing: 0.05em;
  line-height: calc(23 / 16);
  font-weight: 500;
  margin-bottom: 0;
  display: block;
}
.shipping-address-item input[type="radio"] {
  opacity: 0;
  position: absolute;
}
.shipping-address-item label {
  padding-left: 18%;
  position: relative;
  flex-grow: 1;
  cursor: pointer;
}
.shipping-address-item label::before,
.shipping-address-item label::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
}
.shipping-address-item label::before {
  width: 18px;
  height: 18px;
  border-radius: 100px;
  background-color: #fff;
  border: solid 1px #404040;
  left: calc(18% / 2 - 18px);
}
.shipping-address-item label::after {
  width: 12px;
  height: 12px;
  background-color: #005cc8;
  border-radius: 100px;
  left: calc(18% / 2 - 15px);
  display: none;
}
.shipping-address-item input[type="radio"]:checked + label::after {
  display: block;
}
.shipping-button-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 46px;
}
.shipping-button-wrap .p-button.form {
  width: 100%;
  margin: 0 auto;
}
.shipping-button-wrap .p-button.form.gray {
  color: #fff;
}
@media screen and (max-width: 576px) {
  .shipping-message,
  .shipping-address-text {
    font-size: 14px;
  }
}

/* お届け先追加 */
.shipping-edit .inner {
  max-width: 985px;
}
.shipping-edit .p-button:last-child {
  margin: 20px auto 0;
}

/* お届け先の複数指定（一覧） */
.shipping-multiple {
  padding: 70px 0 100px;
}
.shipping-multiple .inner {
  max-width: 970px;
}
.shipping-multiple-message {
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: calc(28 / 16);
  margin-bottom: 30px;
}
.shipping-multiple-button {
  text-align: center;
  width: max-content;
}
.shipping-multiple-button a,
.shipping-multiple-button button {
  background-color: #94a170;
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: calc(20 / 14);
  padding: 8px 20px;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .shipping-multiple-button a:hover,
  .shipping-multiple-button button:hover {
    opacity: 0.8;
    transition: opacity 0.3s;
  }
}
.shipping-multiple-info {
  margin-top: 20px;
  padding-top: 20px;
  border-top: solid 1px #f4f4f4;
  background-color: #f3f1f1;
  display: flex;
  align-items: center;
  padding: 16px;
}
.shipping-multiple-thumb {
  aspect-ratio: 180 / 195;
  margin-top: 16px;
  max-width: 180px;
  width: 21%;
  margin-top: 0;
  min-width: 180px;
}
.shipping-multiple-thumb img {
  width: 100%;
  height: 100%;
  max-height: 195px;
  object-fit: contain;
}
.shipping-multiple-detail {
  flex-grow: 1;
  margin-left: 16px;
}
.shipping-multiple-title {
  font-weight: 700;
  line-height: calc(23 / 16);
  letter-spacing: 0.05em;
}
.shipping-multiple-price {
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: calc(23 / 16);
}
.shipping-multiple-number {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: calc(23 / 16);
}
.shipping-multiple-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 16px;
}
.shipping-multiple-item,
.shipping-multiple-select,
.shipping-multiple-input {
  display: flex;
  align-items: center;
}
.shipping-multiple-item {
  column-gap: 30px;
  /* flex-wrap: wrap; */
}
.shipping-multiple-item:last-of-type {
  margin-bottom: 30px;
}
.shipping-multiple-select label,
.shipping-multiple-input label {
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: calc(28 / 16);
  margin-right: 15px;
  white-space: nowrap;
}
.shipping-multiple-select select,
.shipping-multiple-input input {
  border: none;
  border-radius: 7px;
  background-color: #f3f1f1;
  font-weight: 500;
  line-height: calc(30 / 16);
  letter-spacing: 0.05em;
  font-size: 16px;
}
.shipping-multiple-select select {
  padding: 7px 30px 7px 12px;
  max-width: 600px;
}
.shipping-multiple-input input {
  width: 80px;
  padding: 7px 12px;
}
.shipping-multiple-delete {
  max-width: 60px;
}
.shipping-multiple-delete button {
  border: none;
  background-color: #b2b2b0;
  color: #fff;
  font-weight: 700;
  padding: 8px 0;
  width: 60px;
  line-height: calc(28 / 16);
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .shipping-multiple-delete button:hover {
    opacity: 0.8;
    transition: opacity 0.3s;
  }
}
.shipping-multiple-button-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}
.shipping-multiple-button-wrap .p-button.form {
  margin: 0 auto;
  width: 100%;
}
.shipping-multiple-button-wrap .p-button.form.gray {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .shipping-multiple-item {
    row-gap: 15px;
    flex-wrap: wrap;
  }
  .shipping-multiple-select select {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .shipping-multiple {
    padding: 50px 0 80px;
  }
  .shipping-multiple-thumb {
    min-width: 90px;
  }
  .shipping-multiple-title,
  .shipping-multiple-price,
  .shipping-multiple-number,
  .shipping-multiple-select label,
  .shipping-multiple-input label,
  .shipping-multiple-select select,
  .shipping-multiple-input input,
  .shipping-multiple-delete button {
    font-size: 14px;
  }
}

/* お届け先の複数指定（追加） */
.shipping-multiple-edit .inner {
  max-width: 985px;
}
.shipping-multiple-edit .p-button:last-child {
  margin: 20px auto 0;
}
/* -------------------
 * お問い合わせ
---------------------- */
.contact {
  padding: 60px 0 100px;
}
.contact .inner {
  max-width: 985px;
}
.contact-message {
  letter-spacing: 0.8px;
  line-height: normal;
  font-weight: 500;
}
.contact-form {
  margin-top: 30px;
}
.contact .p-form-list .form-email.-input {
  margin-bottom: 0;
}
.contact-message.-bottom {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 40px 0 80px;
  }
}
@media screen and (max-width: 576px) {
  .contact-message {
    font-size: 14px;
  }
  .contact-message.-bottom {
    margin-top: 20px;
  }
}

/* 確認画面 */
.contact.-confirm .p-button:last-child {
  margin-top: 20px;
}

/* 完了画面 */
.contact-complete-title,
.contact-complete-message {
  text-align: center;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.8px;
}
.contact-complete-message {
  margin-top: 20px;
}
@media screen and (max-width: 576px) {
  .contact-complete-title,
  .contact-complete-message {
    font-size: 14px;
  }
}

/* ---------------------------
 * マイページ/共通
--------------------------- */
section.mypage {
  margin-top: 50px;
  padding-bottom: 100px;
}
section.mypage .inner {
  max-width: 1090px;
}
@media screen and (max-width: 576px) {
  section.mypage {
    margin-top: 40px;
    padding-bottom: 80px;
  }
}

.mypage-nav {
  margin-top: 40px;
}
.mypage-nav-list {
  display: flex;
}
.mypage-nav-item {
  width: 20%;
  text-align: center;
}
.mypage-nav-item a {
  display: block;
  width: 100%;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: calc(29 / 16);
  padding: 16px 10px;
  border-top: solid 1px #cccccc;
  border-right: solid 1px #cccccc;
  border-bottom: solid 1px #cccccc;
  transition: color 0.3s;
}
.mypage-logout {
  display: inline-block;
  margin-left: 1em;
  text-decoration: underline;
  color: #569450;
  font-weight: 500;
}
@media (hover: hover) and (pointer: fine) {
  .mypage-nav-item a:hover {
    color: #569450;
    transition: color 0.3s;
  }
}
.mypage-nav-item.active a {
  color: #569450;
}
.mypage-nav-item:first-of-type a {
  border-left: solid 1px #ccc;
}
@media screen and (max-width: 768px) {
  .mypage-nav {
    margin-top: 30px;
  }
  .mypage-nav-list {
    flex-wrap: wrap;
    border-top: solid 1px #ccc;
  }
  .mypage-nav-item {
    width: 50%;
  }
  .mypage-nav-item a {
    border-top: none;
  }
  .mypage-nav-item:nth-of-type(3) a,
  .mypage-nav-item:nth-of-type(5) a {
    border-left: solid 1px #ccc;
  }
}

.mypage-message {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: calc(29 / 16);
}
.mypage-message span {
  color: #8cac34;
}
.mypage-container {
  margin-top: 70px;
}

.mypage-button {
  text-align: center;
  width: max-content;
}
.mypage-button a,
.mypage-button button {
  padding: 8px 20px;
  font-weight: 700;
  line-height: calc(20 / 16);
  letter-spacing: 0.05em;
  background-color: #94a170;
  border: none;
  color: #fff;
  font-size: 14px;
  transition: opacity 0.3s;
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .mypage-button a:hover,
  .mypage-button button:hover {
    opacity: 0.8;
    transition: opacity 0.3s;
  }
}
@media screen and (max-width: 768px) {
  .mypage-message {
    font-size: 14px;
  }
}

/* ---------------------------
 * マイページ/注文履歴
--------------------------- */
.mypage-history-list {
  margin-top: 16px;
  border-top: dashed 1px #ccc;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.mypage-history-item {
  padding: 16px 0 30px;
  display: flex;
  gap: 15px;
}
.mypage-history-head {
  max-width: 360px;
  width: 35%;
}
.mypage-history-body {
  flex-grow: 1;
}
.mypage-history-date {
  font-weight: 700;
  line-height: calc(29 / 16);
  letter-spacing: 0.05em;
}
.mypage-history-definition {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.mypage-history-definition dt {
  letter-spacing: 0.05em;
  line-height: calc(29 / 16);
}
.mypage-history-definition dd {
  margin-bottom: 0;
  margin-left: 10px;
  line-height: calc(29 / 16);
  letter-spacing: 0.05em;
}
.mypage-history-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.mypage-history-wrap:not(:first-of-type) {
  margin-top: 20px;
}
.mypage-history-thumb {
  aspect-ratio: 1 / 1;
  max-width: 130px;
  margin-right: 10px;
  width: 20%;
  min-width: 100px;
}
.mypage-history-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 130px;
}
.mypage-history-detail {
  flex-grow: 1;
}
.mypage-history-detail-name,
.mypage-history-detail-price {
  font-weight: 700;
  line-height: calc(23 / 16);
  letter-spacing: 0.05em;
}
.mypage-history-detail-price {
  margin-top: 10px;
}
.mypage-history-button {
  margin-top: 23px;
}
@media screen and (max-width: 576px) {
  .mypage-container {
    margin-top: 50px;
  }
  .mypage-history-list {
    gap: 30px;
  }
  .mypage-history-item {
    flex-direction: column;
    padding: 15px 0;
    gap: 20px;
  }
  .mypage-history-head {
    max-width: 100%;
    width: 100%;
  }
  .mypage-history-date,
  .mypage-history-definition dt,
  .mypage-history-definition dd,
  .mypage-history-detail-name,
  .mypage-history-detail-price {
    font-size: 14px;
  }
}

/* ---------------------------
 * マイページ/注文履歴詳細（再注文）
--------------------------- */
.history-detail-container {
  display: flex;
  gap: 40px;
}
.history-detail {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 690px;
  width: 66%;
}
.history-order-list {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  gap: 10px;
}
.history-detail-title {
  font-weight: 700;
  line-height: calc(29 / 16);
  letter-spacing: 0.05em;
}
.history-detail-desc {
  line-height: calc(29 / 16);
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
.history-delivery-title {
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: calc(28 / 16);
}
.history-delivery-list {
  border-bottom: dashed 1px #d9d9d9;
  margin-top: 18px;
}
.history-delivery-item {
  display: flex;
  border-top: dashed 1px #d9d9d9;
  padding: 12px 5px;
  align-items: center;
}
.history-delivery-thumb {
  max-width: 115px;
  aspect-ratio: 1 / 1;
  padding: 9px 12px 8px 13px;
  width: 17%;
  margin-right: 5px;
  min-width: 100px;
}
.history-delivery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 98px;
}
.history-delivery-body {
  flex-grow: 1;
}
.history-delivery-name {
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: normal;
  color: #5e743e;
}
.history-delivery-schedule {
  font-size: 12px;
  letter-spacing: 0.6px;
  line-height: normal;
  margin-top: 3px;
}
.history-delivery-price {
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: normal;
  display: flex;
  gap: 1em;
  margin-top: 8px;
}
.history-delivery-address {
  margin-top: 30px;
}
.history-delivery-address p {
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: calc(28 / 16);
  margin-bottom: 0;
}
.history-delivery-wrap {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}
.history-delivery-definition {
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.history-delivery-definition dt {
  font-weight: 500;
}
.history-delivery-definition dd {
  margin-bottom: 0;
  font-weight: 500;
}
.history-mail-box:first-of-type {
  padding: 0 0 15px;
}
.history-mail-box:not(:first-of-type) {
  border-top: dashed 1px #ccc;
  padding: 15px 0;
}
.history-payment-text,
.history-contact-text {
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: calc(30 / 16);
}
.history-mail-box-link,
.history-mail-box-close {
  color: #7fb7ca;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: calc(30 / 16);
  cursor: pointer;
}
.history-mail-box-body {
  letter-spacing: 0.05em;
  line-height: calc(30 / 16);
  margin: 10px 0;
  display: none;
}
.history-detail-button {
  margin-top: 20px;
}

.history-summary {
  min-width: 290px;
  width: 31%;
  position: sticky;
  top: 140px;
  right: 0;
  height: max-content;
  background-color: #f3f4f4;
  padding: 16px;
}
.history-summary-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.history-summary-title,
.history-summary-desc {
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: normal;
}
.history-summary-desc {
  margin-bottom: 0;
}
.history-summary-total {
  margin-top: 16px;
  padding-top: 10px;
  border-top: dashed 1px #d9d9d9;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.8px;
  display: flex;
  justify-content: end;
  align-items: baseline;
}
.history-summary-total .total-price {
  font-size: 24px;
  letter-spacing: 1.2px;
  font-weight: 700;
  line-height: normal;
  color: #ed504e;
  margin-left: 16px;
}
.history-summary-total .total-tax-label {
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: normal;
  color: #ed504e;
  margin-left: 8px;
}
.history-summary-rate {
  font-size: 12px;
  text-align: right;
  margin-top: 13px;
  letter-spacing: 0.6px;
  line-height: normal;
}
.history-summary-button-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 46px;
}
.history-summary-button-wrap .p-button.form {
  margin-top: 0;
  width: 100%;
}
.history-summary-button-wrap .p-button.form.-return {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .history-detail-container {
    flex-direction: column;
  }
  .history-detail {
    max-width: 100%;
    width: 100%;
  }
  .history-summary {
    max-width: 100%;
    width: 100%;
  }
}

@media screen and (max-width: 576px) {
  .history-detail-title,
  .history-detail-desc,
  .history-delivery-name,
  .history-delivery-price,
  .history-delivery-address p,
  .history-delivery-definition,
  .history-payment-text,
  .history-contact-text,
  .history-mail-box-time,
  .history-mail-box-link,
  .history-mail-box-body,
  .history-mail-box-close {
    font-size: 14px;
  }
  .shopping-delivery-price {
    flex-direction: column;
    gap: 4px;
  }
}

/* ---------------------------
 * マイページ/会員情報編集
--------------------------- */
.change-complete-message {
  text-align: center;
  line-height: calc(30 / 16);
  font-weight: 500;
  letter-spacing: 0.8px;
}
.change-complete .p-button {
  margin: 60px auto 0;
}
@media screen and (max-width: 576px) {
  .change-complete-message {
    font-size: 14px;
  }
  .change-complete {
    padding: 40px 0 80px;
  }
}

/* ---------------------------
 * マイページ/お届け先一覧
--------------------------- */
.delivery-wrap {
  max-width: 985px;
  margin: 50px auto 0;
  padding: 0 20px;
}
.delivery-list {
  margin-top: 20px;
  border-bottom: dashed 1px #ccc;
}
.delivery-item {
  display: flex;
  align-items: center;
  padding: 16px 10px;
  border-top: dashed 1px #ccc;
}
.delivery-delete {
  max-width: 100px;
  width: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.delivery-delete a {
  display: flex;
  width: 16px;
  height: 15px;
}
.delivery-delete a img {
  width: 100%;
  height: 100%;
}
.delivery-address {
  flex-grow: 1;
  margin-right: 10px;
}
.delivery-address p {
  font-weight: 500;
  line-height: calc(23 / 16);
  letter-spacing: 0.05em;
  margin-left: 16px;
}
.delivery-button {
  min-width: 70px;
}
@media screen and (max-width: 576px) {
  .delivery-wrap {
    padding: 0;
    margin: 40px auto 0;
  }
  .delivery-address p {
    font-size: 14px;
  }
}

/* 追加 */
.delivery-new {
  padding: 60px 0 100px;
}
.delivery-new .inner {
  max-width: 985px;
}
@media screen and (max-width: 768px) {
  .delivery-new {
    padding: 40px 0 80px;
  }
}

/* ---------------------------
 * マイページ/お気に入り一覧
--------------------------- */
#page_mypage_favorite .p-lower-mv-title span {
  white-space: nowrap;
  padding-right: 37px;
}
.favorite-list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 27px;
  margin-top: 40px;
}
.favorite-item {
  width: calc(25% - 27px * 3 / 4);
  position: relative;
  padding-top: 40px;
}
.favorite-delete {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  right: 0;
}
.favorite-item-image {
  aspect-ratio: 180 / 195;
  max-width: 180px;
  margin: 0 auto;
}
.favorite-item-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.favorite-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.favorite-item-title {
  margin-top: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: calc(23 / 16);
}
.favorite-item-price {
  color: #ba8d39;
  font-weight: 700;
  font-size: 20px;
  margin-top: 8px;
  line-height: calc(28 / 20);
}
.favorite-item-price span {
  font-size: 10px;
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  .favorite-item {
    width: calc(50% - 30px / 2);
  }
}
@media screen and (max-width: 576px) {
  .favorite-delete {
    width: 30px;
    height: 30px;
  }
  .favorite-item {
    padding-top: 30px;
  }
  .favorite-item-title,
  .favorite-item-price {
    font-size: 14px;
  }
}

/* ---------------------------
 * マイページ/注文履歴
--------------------------- */
.withdraw-icon {
  width: 73px;
  height: 73px;
  margin: 0 auto;
}
.withdraw-title {
  text-align: center;
  margin-top: 30px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: calc(40 / 28);
  color: #5e743e;
}
.withdraw-text {
  text-align: center;
  line-height: calc(29 / 16);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 16px;
}
.withdraw-wrap {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.withdraw .p-button.form {
  margin: 0;
  max-width: 360px;
  width: 100%;
}
.withdraw .p-button.form .-action {
  background-color: #707070;
  color: #fff;
}
.withdraw .p-button.form .-cancel {
  background-color: #f5f7f8;
  color: #707070;
  border: solid 1px #cccccc;
}
@media screen and (max-width: 576px) {
  .withdraw-title {
    font-size: 20px;
  }
  .withdraw-text {
    font-size: 14px;
  }
}

/* -------------------
 * 404ページ 
---------------------- */
.notfound {
  padding: 60px 0 50px;
}
.notfound .inner {
  max-width: 1090px;
}
.notfound-title,
.notfound-text {
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: calc(30 / 16);
  font-size: 16px;
}
.notfound-text {
  margin-top: 30px;
}
.notfound .p-button {
  margin: 40px auto 0;
}
#page_404 .p-section {
  padding: 100px 0 200px;
}
#page_404 .p-section.bg-dot {
  background-image: none;
}
#page_404 .category .p-button {
  display: none;
}
@media screen and (max-width: 576px) {
  .notfound {
    padding: 40px 0 30px;
  }
  .notfound-text {
    font-size: 14px;
  }
  #page_404 .p-lower-mv-title {
    font-size: 20px;
  }
  #page_404 .p-lower-mv-title span {
    padding-right: 39px;
  }
  #page_404 .p-section {
    padding: 50px 0 100px;
  }
}

/* ---------------------------
 * レシピ
--------------------------- */
.recipe-search-row {
  align-items: flex-start;
}
.recipe-search-desc {
  display: flex;
  align-items: start;
  gap: 15px;
}
.recipe-search-container {
  display: grid;
  grid-template-rows: 0fr;
  max-height: 95px;
  overflow: hidden;
  transition: max-height 0.3s;
  width: calc(100% - 40px);
}
.recipe-search-container.expanded {
  max-height: var(--max-height);
  transition: max-height 0.3s;
}
.recipe-toggle-button {
  width: 20px;
  height: 20px;
  background-color: #8cac34;
  display: none;
  place-items: center;
  padding: 0;
  position: relative;
  cursor: pointer;
  margin: 9px 0 0 auto;
  border-radius: 3px;
}
.recipe-toggle-button::before,
.recipe-toggle-button::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 1px;
  background-color: #fff;
}
.recipe-toggle-button::after {
  transform: rotate(90deg);
  transition: transform 0.3s;
}
.recipe-toggle-button.close::after {
  transform: rotate(0deg);
  transition: transform 0.3s;
}

@media screen and (max-width: 768px) {
  .recipe-search-desc {
    display: block;
  }
  .recipe-search-container {
    width: 100%;
  }
  .recipe-toggle-button {
    margin: 10px auto 0;
  }
}
@media screen and (max-width: 576px) {
  .recipe-search-container {
    max-height: 80px;
  }
}
