@charset "UTF-8";
/* ===============================================
コンテナ―
=============================================== */
.l-container {
  max-width: 1024px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .l-container {
    padding: 0 5%;
  }
}
@media screen and (max-width: 767px) {
  .l-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5%;
  }
}

.l-container02 {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 5%;
}
@media screen and (max-width: 767px) {
  .l-container02 {
    max-width: 100%;
    margin: 0 auto;
  }
}

.l-container03 {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 5%;
}
@media screen and (max-width: 767px) {
  .l-container03 {
    max-width: 100%;
    margin: 0 auto;
  }
}

/* セクションレイアウト
----------------------- */
/* 共通設定
----------------------- */
* {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #4D4D4D;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  body {
    min-width: 320px;
  }
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

main {
  background: #fff;
  width: 100%;
}

/* リンク
----------------------- */
.f-link {
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.3s;
}
.f-link:hover {
  transition: 0.3s;
  opacity: 0.7;
}

/* 画像
----------------------- */
.f-img {
  width: 100%;
  display: block;
  object-fit: contain;
}

/* ボタン
----------------------- */
.c-btn {
  height: 60px;
  width: 320px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .c-btn {
    width: 280px;
  }
}
@media screen and (max-width: 767px) {
  .c-btn {
    height: 50px;
    width: 210px;
  }
}
.c-btn__link {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 20px;
  font-feature-settings: "palt";
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: 0.3s;
}
.c-btn__link::before {
  position: absolute;
  content: "";
  border-radius: 50px;
  background: linear-gradient(to right, #941765 0%, #941765 33%, #FE204D 100%);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}
.c-btn__link::after {
  position: absolute;
  content: "";
  border-radius: 50px;
  background: linear-gradient(to right, #FE204D 0%, #FE204D 33%, #941765 100%);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  transition: 0.3s;
}
.c-btn__link:hover {
  transition: 0.3s;
  transform: translateY(2px);
}
.c-btn__link:hover::after {
  opacity: 0;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn__link {
    font-size: 16px;
  }
}
.c-btn__link p {
  text-align: center;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}
.c-btn__link i {
  font-size: 28px;
  padding-left: 5px;
}

/* ロゴ
----------------------- */
/* ===============================================
トップページ
=============================================== */
.p-top__box {
  padding: 80px 0;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-top__box {
    padding: 40px 0;
  }
}
.p-top__box--kodawari {
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .p-top__box--kodawari {
    padding: 90px 0;
  }
}
.p-top__box--farm {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .p-top__box--farm {
    padding: 40px 0;
  }
}
.p-top__box-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-top__box-wrapper {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 767px) {
  .p-top__box-wrapper--reverse {
    flex-direction: column;
  }
}
.p-top__box-pic {
  width: 360px;
}
@media screen and (max-width: 1280px) {
  .p-top__box-pic {
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .p-top__box-pic {
    width: 90%;
    margin-top: 24px;
  }
}
.p-top__box-pic img {
  border-radius: 10px;
}
.p-top__box-txt {
  width: calc(100% - 430px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  .p-top__box-txt {
    width: calc(100% - 330px);
  }
}
@media screen and (max-width: 767px) {
  .p-top__box-txt {
    width: 100%;
  }
}
.p-top__double {
  width: 100%;
}
.p-top__double-area {
  height: 155px;
  width: 96%;
  margin: 0 auto;
  display: flex;
  border: 5px solid #E34646;
  border-radius: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top__double-area {
    flex-direction: column;
    z-index: 90;
    margin: 70px 0 0;
  }
}
.p-top__double-area::before {
  content: "";
  position: absolute;
  background: url(../img/top_icon02.png) no-repeat center center/contain;
  width: 172px;
  height: 165px;
  right: -60px;
  top: -80px;
  z-index: 90;
}
@media screen and (max-width: 1280px) {
  .p-top__double-area::before {
    width: 140px;
  }
}
@media screen and (max-width: 767px) {
  .p-top__double-area::before {
    width: 100px;
    right: -5%;
    top: -100px;
  }
}
.p-top__double-area::after {
  content: "";
  position: absolute;
  background: url(../img/top_icon03.png) no-repeat center center/contain;
  width: 172px;
  height: 165px;
  left: -110px;
  bottom: -80px;
}
@media screen and (max-width: 1280px) {
  .p-top__double-area::after {
    width: 140px;
    left: -8%;
    bottom: -90px;
  }
}
@media screen and (max-width: 767px) {
  .p-top__double-area::after {
    width: 90px;
    left: -3%;
    bottom: -100px;
  }
}
.p-top__double-box {
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-top__double-box {
    width: 100%;
  }
}
.p-top__double-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #FFE9E3;
  border-radius: 20px 0 0 20px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-top__double-link {
    border-radius: 20px 20px 0 0px;
  }
}
.p-top__double-link--02 {
  background: #FFFCE8;
  border-radius: 0px 20px 20px 0px;
}
@media screen and (max-width: 767px) {
  .p-top__double-link--02 {
    border-radius: 0px 0px 20px 20px;
  }
}
.p-top__double-link i {
  color: #FE204D;
  padding-left: 8px;
}
.p-top__farm {
  background: #FFFCE8;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top__farm {
    padding-bottom: 180px;
    overflow: hidden;
  }
}
.p-top__farm-pic {
  position: absolute;
  left: 52%;
  bottom: 0;
  width: 360px;
}
@media screen and (max-width: 767px) {
  .p-top__farm-pic {
    top: auto;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    max-width: 320px;
  }
}

/* ===============================================
ボーダー
=============================================== */
.c-border {
  -webkit-mask-image: url("../img/border.png");
  -webkit-mask-size: contain;
  mask-image: url("../img/border.png");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background: linear-gradient(to right, #FE204D 0%, #FE204D 33%, #941765 100%);
  width: 100%;
  height: 10px;
}

/* ===============================================
ページヘッド
=============================================== */
.c-pagehead {
  height: 220px;
  background: #FFE9E3;
  position: relative;
  overflow: hidden;
  display: grid;
  place-content: center;
  padding-top: 60px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .c-pagehead {
    height: 140px;
    padding-top: 20px;
  }
}
.c-pagehead::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/pagehead.png) repeat center center/contain;
  z-index: 0;
}

/* 見出しタイトル
----------------------- */
.c-title {
  font-size: 36px;
  text-align: center;
  font-feature-settings: "palt";
  position: relative;
}
.c-title--left {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-title--left {
    text-align: center;
  }
}
.c-title--small {
  font-size: 26px;
}
@media screen and (max-width: 767px) {
  .c-title--small {
    font-size: 18px !important;
  }
}
@media screen and (max-width: 1280px) {
  .c-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: 24px;
  }
}
.c-title span {
  color: #FE204D;
}
.c-title span.small {
  font-size: 24px;
  display: block;
}
.c-title span.small-black {
  font-size: 24px;
  display: block;
  color: #4D4D4D;
}
.c-title__desk {
  font-size: 20px;
  text-align: center;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .c-title__desk {
    font-size: 16px;
    padding: 10px 0 20px;
  }
}

/* コラム
----------------------- */
.c-column {
  background: #FFFCE8;
  position: relative;
  padding: 90px 0;
}
@media screen and (max-width: 767px) {
  .c-column {
    padding: 10px 0 60px;
  }
}
.c-column::before {
  content: "COLUMN";
  position: absolute;
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: italic;
  font-size: 97px;
  color: #FFD3CF;
  top: -80px;
  left: 3%;
}
@media screen and (max-width: 767px) {
  .c-column::before {
    font-size: 54px;
    top: -45px;
  }
}
.c-column__title {
  background: #fff;
  border: 5px solid #FFD3CF;
  border-radius: 20px;
  max-width: 800px;
  margin: 70px auto;
  text-align: center;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .c-column__title {
    margin: 50px auto;
  }
}
.c-column__txtarea {
  display: flex;
  column-gap: 20px;
}
@media screen and (max-width: 767px) {
  .c-column__txtarea {
    flex-direction: column;
  }
}
.c-column__txtbox {
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-column__txtbox {
    margin-bottom: 10px;
    line-height: 1.8;
  }
}
.c-column__yousan {
  background: #fff;
  text-align: center;
  padding: 20px 0;
  max-width: 800px;
  margin: 100px auto;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .c-column__yousan {
    margin: 50px auto;
  }
}
.c-column__yousan p.title {
  color: #FE204D;
  font-size: 28px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .c-column__yousan p.title {
    font-size: 20px;
  }
}
.c-column__yousan p.subtitle {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .c-column__yousan p.subtitle {
    font-size: 16px;
  }
}
.c-column__yousan p.last {
  text-align: right;
  font-size: 16px;
  font-weight: 400;
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  .c-column__yousan p.last {
    font-size: 14px;
  }
}
.c-column__yousan-pic {
  margin: 20px auto;
  max-width: 600px;
}
.c-column__kodawari {
  padding: 60px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .c-column__kodawari {
    padding: 0;
  }
}
.c-column__kodawari-txt {
  font-size: 20px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .c-column__kodawari-txt {
    width: calc(100% - 450px);
  }
}
@media screen and (max-width: 767px) {
  .c-column__kodawari-txt {
    width: 100%;
  }
}
.c-column__kodawari-txt::before {
  position: absolute;
  content: "";
  background: linear-gradient(to right, #FF512F 0%, #FF512F 33%, #DD2476 100%);
  height: 10px;
  border-radius: 50px;
  width: 113%;
  left: -5%;
  bottom: -40px;
}
@media screen and (max-width: 1280px) {
  .c-column__kodawari-txt::before {
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 767px) {
  .c-column__kodawari-txt::before {
    height: 5px;
  }
}
.c-column__kodawari-pic01 {
  position: absolute;
  width: 437px;
  height: 578px;
  right: 0;
  top: -30px;
}
@media screen and (max-width: 767px) {
  .c-column__kodawari-pic01 {
    position: relative;
    width: 100%;
    height: auto;
    top: 0;
  }
}
.c-column__kodawari-pic02 {
  width: 513px;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .c-column__kodawari-pic02 {
    width: 100%;
    margin-top: 0px;
  }
}

/* バナーエリア
----------------------- */
.c-banner__list {
  margin: 80px 0;
  position: relative;
  z-index: 90;
}
@media screen and (max-width: 767px) {
  .c-banner__list {
    margin: 40px 0;
  }
}
.c-banner__item {
  height: 190px;
  max-width: 800px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 1280px) {
  .c-banner__item {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .c-banner__item {
    width: 100%;
    height: auto;
  }
}
.c-banner__link {
  background: #FFD3CF;
  color: #E34646;
  border-radius: 20px;
  display: flex;
  padding: 20px;
  box-shadow: 7px 7px 0px rgb(227, 70, 70);
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-banner__link {
    flex-direction: column;
    border-radius: 10px;
  }
}
.c-banner__link::after {
  position: absolute;
  content: "\f08e";
  font-family: "fontawesome";
  font-size: 40px;
  font-weight: 900;
  right: 20px;
  bottom: 10px;
}
@media screen and (max-width: 767px) {
  .c-banner__link::after {
    font-size: 30px;
  }
}
.c-banner__link--pdf::after {
  content: "\f1c1";
  font-weight: 400;
  font-size: 50px;
  right: 26px;
}
@media screen and (max-width: 767px) {
  .c-banner__link--pdf::after {
    font-size: 30px;
    right: 20px;
  }
}
.c-banner__link:hover {
  box-shadow: 0px 0px 0px rgb(227, 70, 70);
  transform: translateY(1px);
}
.c-banner__link img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .c-banner__link img {
    width: 100%;
  }
}
.c-banner__link p {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 30px;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .c-banner__link p {
    width: 100%;
    font-size: 18px;
    padding-left: 0px;
    padding-top: 10px;
  }
}
.c-banner__link p span {
  color: #4D4D4D;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .c-banner__link p span {
    font-size: 14px;
  }
}
.c-banner__link--red {
  background: #E34646;
  color: #fff;
  box-shadow: 7px 7px 0px rgb(129, 43, 43);
}
.c-banner__link--red p span {
  color: #fff;
  font-size: 16px;
}

/* Inview
----------------------- */
.fadeIn {
  opacity: 0;
  transition: 3s;
}

.fadeIn.is-show {
  opacity: 1;
}

.fadeIn_up {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
}

.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_left {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 2.5s;
}

.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_right {
  opacity: 0;
  transform: translate(50%, 0);
  transition: 2.5s;
}

.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/* モーダル
----------------------- */
.c-modal__wrapper {
  display: none;
}
.c-modal__button {
  position: relative;
}
.c-modal__thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.c-modal__contents {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.c-modal__contents iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* ===============================================
ヘッダーメニュー
=============================================== */
.p-header {
  width: 100%;
}
.p-header__list {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-header__list {
    flex-direction: column;
    background: #FFE9E3;
    padding-top: 60px;
    z-index: 888;
    filter: drop-shadow(4px 4px 12px rgba(185, 14, 14, 0.1));
  }
}
.p-header__item {
  width: 12.5%;
  background: #FFFCE8;
  height: 90px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 1055px) {
  .p-header__item {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 767px) {
  .p-header__item {
    width: 100%;
    font-size: 16px;
    height: 70px;
  }
  .p-header__item p {
    line-height: 1.4;
  }
}
.p-header__item:nth-child(even) {
  background: #FFE9E3;
}
.p-header__item span.red {
  color: #FE204D;
}
.p-header__item span.small {
  font-size: 14px;
}
@media screen and (max-width: 1280px) {
  .p-header__item span.small {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 767px) {
  .p-header__item span.small {
    font-size: 14px;
    padding-left: 5px;
  }
}
.p-header__item a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.p-header__item a:hover {
  background: #FFD3CF;
  transition: 0.3s;
}

/* ===============================================
ヘッダーメニュー
=============================================== */
.p-header-p {
  position: fixed;
  top: 0;
  z-index: 999;
  background: #fff;
  width: 100%;
  height: 70px;
  filter: drop-shadow(4px 4px 12px rgba(185, 14, 14, 0.1));
}
@media screen and (max-width: 767px) {
  .p-header-p {
    display: none;
  }
}
.p-header-p ul {
  display: flex;
  padding: 0 3%;
  align-items: center;
  height: 100%;
  text-align: center;
  justify-content: space-between;
  column-gap: 0;
  line-height: 1.4;
  font-size: 13px;
}
.p-header-p ul .red {
  color: #FE204D;
}
@media screen and (max-width: 1280px) {
  .p-header-p ul {
    padding: 0 0;
  }
}
.p-header-p li {
  border-left: 2px dotted #FFD3CF;
  width: 100%;
}
.p-header-p li:first-child {
  border-left: 0;
}
.p-header-p__link {
  display: block;
  width: 100%;
  height: 40px;
  transition: 0.3s;
  display: grid;
  place-content: center;
}
.p-header-p__link:hover {
  transition: 0.3s;
  opacity: 0.6;
}
@media screen and (max-width: 860px) {
  .p-header-p__link span.small {
    font-size: 0.8em;
  }
}

/* ===============================================
ナビゲーションメニュー
=============================================== */
.p-navi__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-navi__hamburger {
    display: block;
    position: fixed;
    width: 60px;
    height: 60px;
    cursor: pointer;
    background: #FE204D;
    top: 0;
    right: 0;
    z-index: 999;
  }
}
.p-navi__hamburger-span {
  position: absolute;
  display: block;
  width: 35px;
  height: 3px;
  background-color: #fff;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.3s ease;
}
.p-navi__hamburger-span:nth-child(1) {
  top: 20px;
}
.p-navi__hamburger-span:nth-child(2) {
  top: 0;
  bottom: 0;
}
.p-navi__hamburger-span:nth-child(3) {
  bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-navi__list {
    opacity: 0;
    position: fixed;
    top: 0;
    transition: 0.4s;
    right: 0;
    pointer-events: none;
  }
}
.p-navi__list--page {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-navi__list--page {
    display: block;
  }
}

.p-navi__hamburger.is-open .p-navi__hamburger-span:nth-child(1) {
  top: 27px;
  transform: rotate(-45deg);
}
.p-navi__hamburger.is-open .p-navi__hamburger-span:nth-child(2) {
  opacity: 0;
}
.p-navi__hamburger.is-open .p-navi__hamburger-span:nth-child(3) {
  bottom: 30px;
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .p-navi__list.is-open {
    opacity: 1;
    right: 0;
    pointer-events: auto;
  }
}

/* ===============================================
キ－ビジュアル
=============================================== */
.p-kv {
  position: relative;
  height: 100svh;
  overflow: hidden;
  min-height: 650px;
}
@media screen and (max-width: 1055px) {
  .p-kv {
    height: 700px;
  }
}
@media screen and (max-width: 767px) {
  .p-kv {
    height: 100svh;
  }
}
.p-kv::before {
  position: absolute;
  content: "";
  background: url(../img/kv_top.png?v=2) no-repeat bottom center/cover;
  width: 100%;
  height: 15%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-kv::before {
    height: 10%;
  }
}
.p-kv__main {
  position: absolute;
  width: 92%;
  height: 72%;
  background: url(../img/kv_bg.jpg?v=2) no-repeat center center/cover;
  background-color: #FFE9E3;
  border-radius: 50px;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-kv__main {
    background: url(../img/kv_bg_sp.jpg) no-repeat center center/cover;
    height: 80%;
    top: 15%;
    max-width: 490px;
  }
}
.p-kv__main::before {
  position: absolute;
  content: "";
  background: url(../img/kv_title.png) no-repeat center center/contain;
  width: 733px;
  height: 95px;
  top: -50px;
  left: -20px;
}
@media screen and (max-width: 1280px) {
  .p-kv__main::before {
    width: 650px;
    height: 84px;
  }
}
@media screen and (max-width: 767px) {
  .p-kv__main::before {
    width: 95%;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 767px) {
  .p-kv__main::after {
    position: absolute;
    content: "";
    background: url(../img/kv_copy.png) no-repeat center center/contain;
    width: 80%;
    height: 200px;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ===============================================
とちあいかの特徴
=============================================== */
.p-feature {
  overflow: hidden;
}
.p-feature__toparea {
  background: url(../img/feature_bg.jpg) no-repeat center center/cover;
  padding: 90px 0;
}
@media screen and (max-width: 767px) {
  .p-feature__toparea {
    background: url(../img/feature_bg_sp.jpg) no-repeat center center/cover;
  }
}
.p-feature__toparea-box {
  background: #fff;
  border-radius: 20px;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0 40px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-feature__toparea-box {
    padding: 180px 0 40px 0;
  }
}
.p-feature__toparea-box::before {
  position: absolute;
  content: "";
  background: url(../img/top_icon01.png) no-repeat center center/contain;
  width: 100%;
  height: 230px;
  top: 50%;
  left: 48%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-feature__toparea-box::before {
    background: url(../img/top_icon01_sp.png) no-repeat center center/contain;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 270px;
  }
}
.p-feature__birth {
  padding: 90px 0;
}
@media screen and (max-width: 767px) {
  .p-feature__birth {
    padding: 70px 0 90px;
  }
}
.p-feature__birth-wrapper {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  .p-feature__birth-wrapper {
    flex-direction: column;
  }
}
.p-feature__birth-pic {
  max-width: 600px;
}
.p-feature__birth-txt {
  width: calc(100% - 600px);
  padding-left: 40px;
  line-height: 2;
  font-size: 24px;
  font-feature-settings: "palt";
  position: relative;
}
@media screen and (max-width: 1280px) {
  .p-feature__birth-txt {
    width: 100%;
    text-align: center;
    padding-left: 0px;
    padding-top: 30px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 767px) {
  .p-feature__birth-txt {
    font-size: 18px;
  }
}
.p-feature__birth-txt::after {
  content: "";
  position: absolute;
  background: url(../img/feature-heart.png) no-repeat center center/contain;
  width: 302px;
  height: 329px;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
@media screen and (max-width: 1280px) {
  .p-feature__birth-txt::after {
    top: 55%;
    transform: translateY(-40%) translateX(-50%);
    width: 160px;
  }
}
.p-feature__birth-txt span {
  color: #FE204D;
}
.p-feature__birth-txt .big {
  font-size: 36px;
}
@media screen and (max-width: 767px) {
  .p-feature__birth-txt .big {
    font-size: 24px;
  }
}
.p-feature__main {
  padding: 40px 5% 10px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .p-feature__main {
    padding: 40px 5% 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-feature__main {
    padding: 100px 5% 10px;
  }
}
.p-feature__main p {
  padding: 30px 0;
  line-height: 1.8;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-feature__main p {
    font-size: 16px;
    padding: 10px 0;
    line-height: 1.8;
  }
}
.p-feature__main::after {
  position: absolute;
  content: "";
  background: url(../img/feature02.png) no-repeat center center/contain;
  width: 365px;
  height: 426px;
  top: 10px;
  right: 70px;
  z-index: 90;
}
@media screen and (max-width: 1280px) {
  .p-feature__main::after {
    right: auto;
    right: calc(100% - 890px);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__main::after {
    top: -210px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 160px;
  }
}
.p-feature__secret {
  padding: 70px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-feature__secret {
    padding: 40px 0;
  }
}
.p-feature__secret-pic {
  max-width: 930px;
}
.p-feature__more-list {
  display: flex;
  justify-content: space-between;
  margin: 40px auto 120px;
  max-width: 940px;
}
@media screen and (max-width: 767px) {
  .p-feature__more-list {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.p-feature__more-item {
  width: calc(33% - 16px);
  border: 5px solid #E34646;
  border-radius: 20px;
}
@media screen and (max-width: 1280px) {
  .p-feature__more-item {
    width: calc(33% - 7px);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__more-item {
    width: 80%;
    margin-bottom: 20px;
  }
}
.p-feature__more-head {
  background: #E34646;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 20px;
}
.p-feature__more-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 20px;
  height: 340px;
}
@media screen and (max-width: 1280px) {
  .p-feature__more-body {
    padding: 14px;
    height: 320px;
  }
}
.p-feature__more-body p {
  word-break: break-all;
  font-feature-settings: "palt";
}
.p-feature__more-body p span {
  color: #FE204D;
}
.p-feature__more-pic {
  width: 200px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .p-feature__more-pic {
    width: 180px;
  }
}
@media screen and (max-width: 767px) {
  .p-feature__more-pic {
    width: 90%;
    max-width: 290px;
  }
}

/* ===============================================
とちあいかの栄養
=============================================== */
.p-eiyou {
  padding: 90px 0 0;
}
@media screen and (max-width: 767px) {
  .p-eiyou {
    padding: 40px 0 0;
  }
}
.p-eiyou__moviearea {
  text-align: center;
  padding: 120px 0 160px;
}
@media screen and (max-width: 767px) {
  .p-eiyou__moviearea {
    padding: 40px 0;
  }
}
.p-eiyou__movie {
  max-width: 640px;
  margin: 30px auto 30px;
  border: 7px solid #E34646;
}
@media screen and (max-width: 767px) {
  .p-eiyou__movie {
    margin: 10px auto 60px;
  }
}
.p-eiyou__movie iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

/* ===============================================
とちあいかストーリー
=============================================== */
.p-story {
  padding: 90px 0;
}
.p-story__place {
  display: flex;
  align-items: center;
  margin: 60px 0 120px;
}
@media screen and (max-width: 767px) {
  .p-story__place {
    flex-direction: column;
    margin: 40px 0 120px;
  }
}
.p-story__place-pic {
  width: 40%;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .p-story__place-pic {
    width: 80%;
    margin-top: -80px;
  }
}
.p-story__place-desc {
  width: 60%;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-story__place-desc {
    width: 90%;
    margin-top: 10px;
  }
}
.p-story__place-desc::after {
  position: absolute;
  content: "";
  background: linear-gradient(to right, #FF512F 0%, #FF512F 33%, #DD2476 100%);
  height: 7px;
  border-radius: 50px;
  width: 165%;
  right: 0;
  bottom: -30px;
}
.p-story__place-desc .title {
  color: #FE204D;
  font-size: 24px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-story__place-desc .title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.p-story__list {
  margin: 60px 0;
}
@media screen and (max-width: 767px) {
  .p-story__list {
    margin: 40px 0;
  }
}
.p-story__item {
  background: #FFFCE8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
}
@media screen and (max-width: 1280px) {
  .p-story__item {
    padding: 5%;
  }
}
@media screen and (max-width: 767px) {
  .p-story__item {
    flex-direction: column-reverse;
    margin-bottom: 20px;
  }
}
.p-story__item:nth-child(even) {
  background: #FFE9E3;
}
.p-story__item--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-story__item--reverse {
    flex-direction: column-reverse;
  }
}
.p-story__pic {
  width: 385px;
}
@media screen and (max-width: 1280px) {
  .p-story__pic {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .p-story__pic {
    width: 100%;
    margin: 20px 0;
  }
}
.p-story__pic img {
  border-radius: 10px;
}
.p-story__desc {
  width: calc(100% - 440px);
}
@media screen and (max-width: 1280px) {
  .p-story__desc {
    width: calc(60% - 30px);
  }
}
@media screen and (max-width: 767px) {
  .p-story__desc {
    width: 100%;
  }
}
.p-story__desc .title {
  color: #FE204D;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .p-story__desc .title {
    font-size: 20px;
  }
}
.p-story__desc p {
  font-weight: 400;
  margin-top: 20px;
}

/* ===============================================
とちあいかを買う
=============================================== */
.p-buy__syun {
  background: #FFFCE8;
  max-width: 800px;
  margin: 40px auto 90px;
  border-radius: 20px;
  padding: 30px 0;
  text-align: center;
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  .p-buy__syun {
    font-size: 18px;
    padding: 20px 0;
    margin: 40px auto 70px;
  }
}
.p-buy__syun span {
  font-size: 45px;
  background: linear-gradient(transparent 70%, yellow 30%);
}
@media screen and (max-width: 767px) {
  .p-buy__syun span {
    font-size: 24px;
  }
}
.p-buy__list {
  margin: 70px 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-buy__list {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
  }
}
.p-buy__item {
  text-emphasis: center;
  height: 86px;
  width: calc(33% - 10px);
}
@media screen and (max-width: 767px) {
  .p-buy__item {
    width: 80%;
    margin-bottom: 20px;
    height: 60px;
  }
}
.p-buy__link {
  background: #E34646;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  line-height: 1.2;
  border-radius: 50px;
  box-shadow: 7px 7px 0px rgb(155, 0, 0);
  transition: 0.3s;
}
.p-buy__link:hover {
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2);
  transform: translateY(1px);
}
.p-buy__link i {
  padding-left: 10px;
}
@media screen and (max-width: 1280px) {
  .p-buy__link {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .p-buy__link {
    font-size: 16px;
  }
}
.p-buy__banner {
  position: relative;
}
.p-buy__banner::after {
  position: absolute;
  content: "";
  background: url(../img/icon_buy.png) no-repeat center center/contain;
  width: 301px;
  height: 280px;
  right: -60px;
  bottom: -130px;
  z-index: 0;
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-buy__banner::after {
    display: none;
  }
}

/* ===============================================
いちご狩りで楽しむ
=============================================== */
.p-enjoy {
  padding: 90px 0 120px;
}
.p-enjoy__txt {
  text-align: center;
  margin: 40px 0 100px;
  font-size: 18px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-enjoy__txt {
    text-align: left;
    font-size: 16px;
    margin: 20px 0 60px;
  }
}
.p-enjoy__txt::before {
  position: absolute;
  content: "";
  background: url(../img/icon_enjoy.png) no-repeat center center/contain;
  width: 306px;
  height: 297px;
  right: 0px;
  top: -120px;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-enjoy__txt::before {
    opacity: 0.8;
    width: 180px;
    top: -180px;
  }
}
.p-enjoy__txt p {
  z-index: 30;
  position: relative;
}
.p-enjoy__txt span {
  color: #FE204D;
}

/* ===============================================
とちあいかへのこだわり
=============================================== */
.p-kodawari {
  padding: 90px 0 0;
}
.p-kodawari__list {
  margin: 80px 0 260px;
}
@media screen and (max-width: 767px) {
  .p-kodawari__list {
    margin: 40px 0 120px;
  }
}
.p-kodawari__item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 120px;
  align-items: center;
  column-gap: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-kodawari__item {
    flex-direction: column;
    margin-bottom: 80px;
  }
}
.p-kodawari__item--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-kodawari__item--reverse {
    flex-direction: column;
  }
}
.p-kodawari__item--reverse .p-kodawari__desc {
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .p-kodawari__item--reverse .p-kodawari__desc {
    padding-left: 0px;
  }
}
.p-kodawari__item::after {
  position: absolute;
  content: "";
  mask-image: url(../img/border.png);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background: linear-gradient(to right, #FE204D 0%, #FE204D 33%, #941765 100%);
  width: 100%;
  height: 10px;
  bottom: -60px;
}
@media screen and (max-width: 767px) {
  .p-kodawari__item::after {
    bottom: -40px;
  }
}
.p-kodawari__item:last-child::after {
  display: none;
}
.p-kodawari__mov {
  width: 50%;
}
.p-kodawari__mov iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 767px) {
  .p-kodawari__mov {
    width: 100%;
    margin-bottom: 20px;
  }
}
.p-kodawari__desc {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-kodawari__desc {
    width: 100%;
  }
}
.p-kodawari__desc .title {
  color: #FE204D;
  font-size: 22px;
  margin-bottom: 10px;
}
.p-kodawari__link {
  display: block;
  color: #FE204D;
  margin-top: 8px;
  text-decoration: underline;
  font-weight: 400;
}

/* ===============================================
とちあいかを作る
=============================================== */
.p-farm {
  padding: 90px 0 60px;
}
@media screen and (max-width: 767px) {
  .p-farm {
    padding: 40px 0 60px;
  }
}
.p-farm__pic {
  margin: 60px auto;
  max-width: 550px;
}
.p-farm__banner {
  margin-bottom: 120px;
}
.p-farm__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 90px auto 0;
  column-gap: 30px;
  row-gap: 60px;
}
@media screen and (max-width: 1055px) {
  .p-farm__list {
    justify-content: center;
    row-gap: 0px;
  }
}
@media screen and (max-width: 767px) {
  .p-farm__list {
    margin: 60px auto 0;
    column-gap: 2vw;
    row-gap: 30px;
  }
}
.p-farm__list--02 {
  max-width: 630px;
  margin: 0px auto 0;
}
@media screen and (max-width: 1055px) {
  .p-farm__list--02 {
    margin: 40px auto 0;
  }
}
.p-farm__item {
  width: calc(33% - 10px);
  background: #FFE9E3;
  border-radius: 50%;
  height: 253px;
  width: 253px;
}
@media screen and (max-width: 1055px) {
  .p-farm__item {
    height: 200px;
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .p-farm__item {
    height: 160px;
    width: 160px;
  }
}
.p-farm__item .icon {
  margin: -60px auto 0;
  width: 157px;
  height: 157px;
}
@media screen and (max-width: 767px) {
  .p-farm__item .icon {
    margin: -30px auto 0;
    width: 100px;
    height: 100px;
  }
}
.p-farm__item .txt {
  text-align: center;
  font-size: 20px;
  font-feature-settings: "palt";
  margin-top: 7px;
}
@media screen and (max-width: 1055px) {
  .p-farm__item .txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-farm__item .txt {
    font-size: 14px;
    margin-top: 5px;
    line-height: 1.3;
  }
}
.p-farm__note {
  border-radius: 20px;
  border: 5px solid #E34646;
  margin: 140px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-farm__note {
    margin: 90px 0;
  }
}
.p-farm__note::after {
  position: absolute;
  content: "";
  background: url(../img/farm_illust.png) no-repeat center center/contain;
  width: 338px;
  height: 250px;
  bottom: 0;
  right: 60px;
}
@media screen and (max-width: 1280px) {
  .p-farm__note::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-farm__note::after {
    display: block;
    width: 239px;
    height: 177px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-farm__note-head {
  background: #E34646;
  color: #fff;
  font-size: 36px;
  text-align: center;
  padding: 10px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-farm__note-head {
    font-size: 20px;
  }
}
.p-farm__note-head::before {
  background: url(../img/farm_note.png) no-repeat center center/contain;
  position: absolute;
  content: "";
  width: 115px;
  height: 103px;
  left: 60px;
  top: -60px;
}
@media screen and (max-width: 1280px) {
  .p-farm__note-head::before {
    left: 0px;
    top: -90px;
  }
}
@media screen and (max-width: 767px) {
  .p-farm__note-head::before {
    width: 80px;
    top: -80px;
  }
}
.p-farm__note-body {
  background: #FFFCE8;
  padding: 60px;
  border-radius: 0 0 20px 20px;
}
@media screen and (max-width: 1280px) {
  .p-farm__note-body {
    padding: 30px 30px 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-farm__note-body {
    padding: 20px 20px 200px;
  }
}
.p-farm__note-body .title {
  font-size: 24px;
  color: #FE204D;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-farm__note-body .title {
    font-size: 18px;
  }
}
.p-farm__note-wrapper {
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .p-farm__note-wrapper {
    padding: 0 0;
  }
}
.p-farm__note-list {
  margin: 40px 0 20px;
  display: flex;
  flex-direction: column;
}
.p-farm__note-list li {
  padding-left: 40px;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-farm__note-list li {
    padding-left: 40px;
    margin-bottom: 20px;
  }
}
.p-farm__note-list li::before {
  position: absolute;
  content: "";
  background: url(../img/farm_icon.png) no-repeat center center/cover;
  width: 23px;
  height: 23px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.p-farm__note-list li p {
  font-size: 20px;
  background: linear-gradient(transparent 70%, yellow 30%);
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-farm__note-list li p {
    font-size: 18px;
  }
}

/* ===============================================
フッターーメニュー
=============================================== */
.p-footer__head {
  background: #FFE9E3;
  padding: 30px 5%;
  display: flex;
}
@media screen and (max-width: 1280px) {
  .p-footer__head {
    flex-direction: column;
    align-items: flex-end;
  }
}
.p-footer__info {
  display: flex;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-footer__info {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-footer__pic {
  background: #fff;
  border-radius: 10px;
  width: 240px;
  height: 90px;
  display: grid;
  place-content: center;
}
.p-footer__pic img {
  width: 200px;
}
@media screen and (max-width: 1280px) {
  .p-footer__pic {
    width: 200px;
  }
}
.p-footer__pic img {
  width: 180px;
}
@media screen and (max-width: 767px) {
  .p-footer__pic {
    margin-bottom: 20px;
  }
}
.p-footer__adress {
  padding: 0 0 0 20px;
}
@media screen and (max-width: 767px) {
  .p-footer__adress {
    margin-bottom: 20px;
    padding: 0 0 0 0px;
  }
}
.p-footer__privacy {
  padding: 0 0 0 40px;
  text-decoration: underline;
  text-decoration-color: #FE204D;
  text-underline-offset: 3px;
}
@media screen and (max-width: 767px) {
  .p-footer__privacy {
    margin-bottom: 20px;
    padding: 0 0 0 0px;
  }
}
.p-footer__sns {
  display: flex;
  justify-content: flex-end;
  align-items: end;
  column-gap: 10px;
}
.p-footer__sns-item {
  width: 60px;
  height: 60px;
}
.p-footer__last {
  background: linear-gradient(to right, #FE204D 0%, #FE204D 33%, #941765 100%);
  height: 40px;
  display: grid;
  place-content: center;
  color: #fff;
  font-size: 12px;
}

/* レスポンシブ設定
----------------------- */
.u-sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp-only {
    display: block;
  }
}

.u-tab-sp-only {
  display: none;
}
@media screen and (max-width: 1280px) {
  .u-tab-sp-only {
    display: block;
  }
}

.u-tab-sp-none {
  display: block;
}
@media screen and (max-width: 1280px) {
  .u-tab-sp-none {
    display: none;
  }
}

.u-pc-only {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none;
  }
}

.u-tab-only {
  display: none;
}
@media screen and (max-width: 1280px) {
  .u-tab-only {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .u-tab-only {
    display: none;
  }
}

/* テキスト設定
----------------------- *//*# sourceMappingURL=style.css.map */