@charset "UTF-8";
body {
  font-family: "Noto Sans JP";
  margin: 0 auto;
  background-color: #FDF9EF;
  color: #4E301B;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4545454545vw;
  }
}
@media (min-width: 1100px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

.p-header__inner {
  max-width: 980px;
}

.p-header {
  height: 12.5rem;
}

.p-header__inner {
  max-width: 61.25rem;
  margin: 0 auto;
}

.p-header__logo-mark {
  margin-right: auto;
  margin-left: auto;
  margin-top: -80px;
  text-align: center;
  position: relative; /* 要素の位置を設定 */
  width: 154px; /* 要素の幅 */
  height: 154px; /* 要素の高さ */
  background-color: #FDF9EF; /* 背景色を設定（ここでは青色を使用） */
  border-radius: 50%; /* 背景を円形にするためにborder-radiusを50%に設定 */
  /* イメージの配置 */
  text-align: center; /* テキスト（アイコン）を中央に配置 */
  line-height: 100px; /* 垂直方向の中央揃えを実現 */
  display: flex; /* 要素をフレックスコンテナとして設定 */
  justify-content: center; /* 横方向（水平方向）の中央揃え */
  align-items: center; /* 縦方向（垂直方向）の中央揃え */
}

.p-header__logo-mark img {
  max-width: 100%; /* アイコンの幅を制限（必要に応じて調整） */
  max-height: 100%; /* アイコンの高さを制限（必要に応じて調整） */
  position: relative; /* 位置を維持 */
  z-index: 1; /* アイコンを背景の上に配置 */
}

@media screen and (min-width: 768px) {
  .p-header__logo {
    order: 1;
  }
}

.p-header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

.p-header__logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header__nav {
  display: none;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -22px;
  }
}

.p-header__nav-items-left,
.p-header__nav-items-right {
  display: flex;
  align-items: center;
}

.p-header__nav-items-right {
  order: 2;
}

.p-header__nav-item.p-header__nav-item--contact {
  margin-left: 0.9375rem;
  display: flex;
  align-items: center;
}

.p-header__nav-item a {
  padding: 0 0.9375rem;
  height: inherit;
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  color: #4e301b;
}

.p-header__nav-item.p-header__nav-item--contact a {
  padding: 0.625rem 1.25rem;
  position: relative;
  height: initial;
  color: #4e301b;
}

.p-header__nav-item.p-header__nav-item--contact a::after {
  content: "";
  margin-left: 0.625rem;
  width: 0.6875rem;
  height: 0.75rem;
  display: inline-block;
}

.p-header__hamburger {
  outline: none;
  border: none;
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 999;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #FED966;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger {
    display: none;
  }
}

.p-header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 1.125rem;
  height: 2px;
  background-color: #4E301B;
  transition: 0.5s;
}

.p-header__hamburger span:nth-of-type(1) {
  top: -0.25rem;
}

.p-header__hamburger span:nth-of-type(2) {
  top: 0;
}

.p-header__hamburger span:nth-of-type(3) {
  top: 0.25rem;
}

.p-header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.p-header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.p-header__hamburger.is-open span:nth-of-type(3) {
  top: -0.125rem;
  transform: translateX(-50%) rotate(-45deg);
}

.p-header__drawer {
  padding-top: 2.75rem;
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.9);
  overflow-y: scroll;
  scrollbar-width: none;
}

.p-header__drawer::-webkit-scrollbar {
  display: none;
}

.logo-01 {
  margin-top: 3.8125rem;
  text-align: center;
}

.logo-02 {
  margin-top: 1.25rem;
  text-align: center;
}

.logo-01 img {
  width: 3.4375rem;
}

.p-header__drawer-item a {
  margin-top: 1rem;
  padding: 0.5rem 0;
  display: block;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #4E301B;
  text-align: center;
  text-transform: uppercase;
}

.logo-02 img {
  margin-bottom: 0.5rem;
  margin-top: -2rem;
}

.p-header__logo {
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

.p-header__logo img {
  width: 18.75rem;
  margin-left: auto;
  margin-right: auto;
}

.p-mv {
  background-image: url(../images/fv-sp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 680px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-mv {
    background-image: url(../images/fv.jpg);
    height: 854px;
  }
}

.p-mv__main-title {
  font-size: 1.5rem;
  font-weight: bold;
  position: absolute;
  z-index: 2;
  bottom: 7.375rem;
  left: 2.0625rem;
}
@media screen and (min-width: 768px) {
  .p-mv__main-title {
    font-size: 2rem;
    writing-mode: vertical-rl;
    top: 7rem;
    right: 9.125rem;
  }
}

.p-mv__main-title p {
  display: inline-block;
  padding: 8px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-mv__main-title p {
    padding: 0.9375rem 0.9375rem 0 0.9375rem;
    letter-spacing: 0.48em;
    line-height: 100%;
    font-feature-settings: "vert" on;
  }
}

.p-mv__main-title p:nth-child(n+2) {
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  .p-mv__main-title p:nth-child(n+2) {
    margin-top: 0;
    margin-right: 21px;
  }
}

.p-service__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-service__inner {
    padding: 0 1.5625rem;
    max-width: 75rem;
  }
}

.p-service-swiper {
  margin-top: 5.6875rem;
}

.p-service-swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.swiper-slide {
  width: 16.5rem;
  padding: 0 3px 3px 3px;
  overflow: hidden;
  background-color: #fff;
}
.p-service-swiper .swiper-slide img {
  display: block;
  height: 10.375rem;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.swiper-box {
  padding: 16px;
  height: 10.3125rem;
  background: #FFF;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}

.swiper-title {
  font-size: 1rem;
  font-weight: bold;
  line-height: 150%;
}

.swiper-price {
  margin-top: 0.875rem;
}

.p-news {
  background-color: #fff;
}

.p-news__inner {
  max-width: 58.375rem;
  margin: 0 auto;
}

.p-news-list__item-content {
  display: flex;
  align-items: center;
}

.p-news-list__item-meta {
  font-size: 0.8125rem;
  width: 30%;
}
@media screen and (min-width: 768px) {
  .p-news-list__item-meta {
    width: 20%;
  }
}

.p-news-list__item-title {
  width: 70%;
}
@media screen and (min-width: 768px) {
  .p-news-list__item-title {
    width: 80%;
  }
}

.p-news-list__item {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #c6c6c6;
}

.p-news-list__item:first-child {
  border-top: 1px solid #c6c6c6;
}

.p-news__list {
  margin-top: 90px;
}

.p-news-list__item-date {
  font-style: 0.8125rem;
}

.p-faq {
  position: relative;
}

.p-faq__background-img {
  position: absolute;
  top: -5rem;
  right: 0.625rem;
}

.p-faq__background-img img {
  width: 9.875rem;
}
@media screen and (min-width: 768px) {
  .p-faq__background-img img {
    width: 14.6875rem;
  }
}

.p-faq__inner {
  margin: auto;
  max-width: 46.125rem;
  width: 100%;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-faq__inner {
    max-width: 46.125rem;
  }
}

.p-faq__list {
  margin-top: 4.5625rem;
}

.p-faq-list__item {
  background-color: #fff;
}

.p-faq-list__item + .p-faq-list__item {
  margin-top: 1.9375rem;
}

.p-faq-list__item-question {
  padding: 0.75rem 2.5rem 0.75rem 2.4375rem;
  position: relative;
  cursor: pointer;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-faq-list__item-question {
    padding: 0.75rem 2.5rem 0.75rem 2.4375rem;
    font-size: 1.125rem;
  }
}

.p-faq-list__item-question span {
  font-family: "Roboto";
}

.p-faq-list__item-question::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.1875rem solid #c6c6c6;
  border-right: 0.1875rem solid #c6c6c6;
  transform: translateY(-50%) rotate(135deg);
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-faq-list__item-question::before {
    width: 0.625rem;
    height: 0.625rem;
  }
}

.p-faq-list__item-question.is-open::before {
  transform: translateY(-50%) rotate(315deg);
}

.p-faq-list__item-question span {
  margin-right: 0.5rem;
  display: inline-block;
  font-weight: bold;
}

.p-faq-list__item-answer {
  padding-top: 1.5rem;
  display: none;
  font-size: 1rem;
  background-color: #FDF9EF;
  line-height: 150%;
  letter-spacing: 0%;
}

.p-contact {
  position: relative;
}

.p-contact__background-img {
  position: absolute;
  top: -3.125rem;
  right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-contact__background-img {
    top: -6.25rem;
  }
}

.p-contact__background-img img {
  width: 8.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__background-img img {
    width: 16.5rem;
  }
}

.p-contact__inner {
  margin-inline: auto;
  max-width: 46.125rem;
  width: 100%;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}

.p-contact__message {
  font-size: 1rem;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  text-align: center;
  margin-top: 4.1875rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-contact__message {
    font-size: 1.125rem;
  }
}

.p-contact__form {
  background-color: #fff;
  margin-top: 5.8125rem;
}

.p-access {
  background-color: #fff;
  width: 100%;
  margin-inline: auto;
  position: relative;
}

.p-access__background-img {
  position: absolute;
  top: -3.125rem;
  left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-access__background-img {
    top: -6.25rem;
  }
}

.p-access__background-img img {
  width: 10.875rem;
}
@media screen and (min-width: 768px) {
  .p-access__background-img img {
    width: 21.8125rem;
  }
}

.p-access__inner {
  margin-top: 5.625rem;
  margin-inline: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-access__inner {
    padding: 0 1.5625rem;
    max-width: 61.25rem;
    display: flex;
    justify-content: center;
  }
}

.p-access__info {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-access__info {
    text-align: left;
    width: 45%;
  }
}

.p-access__map-wrap {
  margin-top: 1.875rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-access__map-wrap {
    width: 50%;
    margin-top: 0;
    margin-left: 3.75rem;
    max-width: 39.375rem;
  }
}

.p-access__map iframe {
  width: 100%;
  max-width: 100%;
}

.p-access__list {
  font-size: 1rem;
  display: flex;
  align-items: center;
  font-weight: bold;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-access__list {
    font-size: 1.125rem;
  }
}

.p-access__list dt {
  width: 30%;
  border-bottom: 1px solid #c6c6c6;
  padding: 1.25rem 0;
}

.p-access__list dd {
  width: 70%;
  border-bottom: 1px solid #c6c6c6;
  padding: 1.25rem 0;
}

.p-access__info dl:first-child {
  border-top: 1px solid #c6c6c6;
}

.p-contact__form {
  padding: 4.75rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form {
    padding: 2.3125rem 4.75rem 2.6875rem 4.75rem;
  }
}

.p-form-title {
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2.75rem;
}

@media screen and (min-width: 768px) {
  .p-form__wrap {
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .p-form__wrap dt {
    width: 43.2432432432;
  }
}

@media screen and (min-width: 768px) {
  .p-form__wrap dd {
    flex-grow: 1;
    margin-left: 3.1875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-form__wrap.p-form__wrap--textarea {
    align-items: flex-start;
  }
}

.p-form__wrap + .p-form__wrap {
  margin-top: 1.5rem;
}

.p-form__label {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-form__label {
    max-width: 12.5rem;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .p-form__wrap.p-form__wrap--textarea .p-form__label {
    margin-top: 0.625rem;
  }
}

.p-form__label span {
  margin-left: 1.125rem;
  padding: 0.3125rem 0.6875rem;
  display: inline-block;
  font-size: 0.75rem;
  background-color: #FED966;
  border-radius: 10px;
  font-weight: bold;
}

.p-form__input,
.p-form__select,
.p-form__radio,
.p-form__checkbox,
.p-form__textarea {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-form__input,
.p-form__select,
.p-form__radio,
.p-form__checkbox,
.p-form__textarea {
    margin-top: 0;
  }
}

.p-form__input,
.p-form__textarea {
  flex-grow: 1;
}

.p-form__submit {
  margin-top: 3.125rem;
  text-align: center;
}

.p-form-input input {
  padding: 0.5rem 0.9375rem;
  width: 100%;
  font-size: 0.9375rem;
  line-height: 1;
  border-radius: 5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #efeae6;
}

.p-form-input input:focus {
  border: 1px solid #ccc;
  box-shadow: none;
  outline: none;
}

.p-form-radio label {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-form-radio label {
    display: inline-block;
  }
}

.p-form-radio label:nth-child(n+2) {
  margin-top: 0.625rem;
}

.p-form-input input.p-form__adress {
  width: 47%;
}

.p-form-radio label {
  display: block;
}

.p-form-radio input {
  display: none;
}

.p-form-radio input + span {
  padding: 0 0 0 1.5625rem;
  position: relative;
  display: block;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-form-radio input + span {
    display: inline-block;
  }
}

.p-form-radio input + span::before {
  content: "";
  width: 1rem;
  height: 1rem;
  display: block;
  position: absolute;
  top: 50%;
  left: -1px;
  transform: translateY(-50%);
  background: #fff;
  border: 2px solid #4e301b;
  border-radius: 50%;
}

.p-form-radio input + span::after {
  content: "";
  padding: 0.125rem;
  width: 0.25rem;
  height: 0.25rem;
  position: absolute;
  top: 50%;
  left: 0.25rem;
  transform: translateY(-50%);
  border: 1px solid transparent;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transition: 0.3s;
}

.p-form-radio input:checked + span::after {
  opacity: 1;
}

.p-form-radio input:checked + span::before {
  background: #4e301b; /* チェックされたときの背景色を変更 */
}

.p-form-radio input:checked + span::before::after {
  content: "";
  width: 4px;
  height: 4px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
}

.p-form-textarea textarea {
  padding: 0.5rem 0.9375rem;
  width: 100%;
  height: 9.375rem;
  font-size: 0.9375rem;
  border-radius: 5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #efeae6;
}

.p-form-textarea textarea:focus {
  border: 1px solid #ccc;
  box-shadow: none;
  outline: none;
}

.p-form-submit input {
  padding: 0.8125rem 5.875rem;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1;
  background-color: #fed966;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.p-form-submit input:hover,
.p-form-submit input:focus {
  outline: none;
}

@media screen and (min-width: 768px) {
  .p-form-submit input:hover {
    opacity: 0.8;
  }
}

.p-form-submit input::-moz-foucus-inner {
  padding: 0;
  border: none;
}

.p-footer {
  background-color: #fff;
  position: relative;
  background-image: url(../../images/livestock-middle.png), url(../../images/strawberry-middle.png);
  background-position: right 0 bottom 0, left 16px bottom 0;
  background-repeat: no-repeat;
  padding-bottom: 6.0625rem;
  background-size: 7.375rem, 9.375rem;
}
@media screen and (min-width: 768px) {
  .p-footer {
    background-size: 14.8125rem, 18.5625rem;
  }
}

.p-footer__inner {
  max-width: 46.125rem;
  margin-inline: auto;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}

.p-footer__logo {
  text-align: center;
}

.p-footer__logo img {
  display: block;
  margin-inline: auto;
}

.p-footer__nav-items {
  margin-top: 2.0625rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.p-footer__nav-item {
  font-weight: bold;
}

.p-footer__copyright {
  text-align: center;
  padding-top: 1.375rem;
  padding-bottom: 1.375rem;
  background-color: #d9d9d9;
  display: block;
  font-size: 0.75rem;
}

@media screen and (min-width: 768px) {
  .p-about__inner {
    max-width: 61.25rem;
    margin-inline: auto;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .p-about__wrap {
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .p-about__text-wrap {
    white-space: nowrap;
    position: relative;
    z-index: 100;
    width: 25%;
  }
}

.p-about__title {
  font-size: 2rem;
  color: #35a1c3;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0.5625rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-about__title {
    margin-top: 6.3125rem;
    font-size: 2.5rem;
    width: 100%;
    display: table-caption;
  }
}

.p-about__text {
  font-size: 1rem;
  margin-top: 2.3125rem;
  padding: 0.9375rem;
  background-color: rgba(255, 255, 255, 0.9);
  line-height: 250%;
  font-weight: bold;
  color: #857868;
  display: inline-block;
}

.p-about__image-wrap {
  margin-top: 2.8125rem;
  text-align: right;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-about__image-wrap {
    width: 75%;
  }
}

.p-about__image01 img {
  height: 100%;
  width: 49.125rem;
  border-radius: 150px;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .p-about__image01 img {
    height: 32.875rem;
  }
}

.p-about__image02 img {
  width: 24.5625rem;
  border-radius: 50px;
  margin-top: 2.25rem;
  max-width: 100%;
}

.p-loading {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.p-loading__img {
  margin: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateY(3.75rem);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18.75rem;
  opacity: 0;
  -webkit-animation: loading 1.5s forwards ease-in-out;
          animation: loading 1.5s forwards ease-in-out;
}

.p-loading__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@-webkit-keyframes loading {
  0% {
    opacity: 0;
    transform: translateY(3.75rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loading {
  0% {
    opacity: 0;
    transform: translateY(3.75rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.c-section__title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.l-news {
  padding-top: 5.6875rem;
  padding-bottom: 5.6875rem;
  margin-top: 5.875rem;
  padding-right: 1.875rem;
  padding-left: 1.875rem;
}

.l-faq {
  padding-top: 5.6875rem;
  padding-bottom: 5.6875rem;
}

.l-contact {
  padding-top: 6.5rem;
  padding-bottom: 1.875rem;
}

.l-access {
  padding-top: 5.6875rem;
  padding-bottom: 4.875rem;
}

.l-footer {
  padding-top: 1.5rem;
}

.l-about {
  margin-top: 2.8125rem;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}

.l-service {
  padding-top: 7.875rem;
}

.l-loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
/*# sourceMappingURL=style.css.map */