/*＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊＊＊＊＊＊＊＊＊　　　共通要素　　　＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊*/
/* ＊＊＊＊＊＊＊＊＊＊　　基本情報　　＊＊＊＊＊＊＊＊＊＊＊＊ */



body {
  color: #333;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  background-image: url(../img/bckground-image.jpg);
  background-repeat: repeat;
  background-attachment: fixed;
  min-width: 1160px;
}

a {
  text-decoration: none;
  color: #35b9e9;
}

a:hover {
  opacity: 0.8;
  text-decoration: underline;
  cursor: pointer;
}

a:visited {
  color: #6b5da4;
}

br.sp-only {
  display: none;
}

br.pc-only {
  display: inline;
}

/*===========
アニメーション　フェイドイン左から
===========*/

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

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼
▼▼▼▼▼▼▼▼▼▼▼共通要素▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼
▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ */

/* ＊＊＊＊＊＊＊＊＊＊　　ヘッダー　　＊＊＊＊＊＊＊＊＊＊＊＊ */
.header-area {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 2;
}

.header-area__inner {
  width: 1160px;
  height: 110px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo img {
width: 300px;
height: 86px;
}

.header-nav__list {
  display: flex;
}
.header-nav__link {
  display: block;
  padding: 5px 10px;
  color: #fff;
  border-radius: 5px;
}
.header-nav__link:hover {
  background-color: rgb(255,255,255,0.65);
  color: #333;
  text-decoration: none;
}

/* *********sp メニュー******** */
.sp-header-menubar {
  display: none;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 64px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity .6s;
  -o-transition: opacity .6s;
  transition: opacity .6s;
}

/* ＊＊＊＊＊＊＊＊＊＊　　フッダー　　＊＊＊＊＊＊＊＊＊＊＊＊ */
.footer-area {
  width: 100%;
  height: auto;
  background-color: #856026;
  color: #fff;
  padding-top: 20px;
}
.footer-area__inner {
width: 1160px;
height: auto;
margin: 0 auto;
}
.footer-area__inner .column3 {
  display: flex;
  justify-content: center;
}

.footer-area__inner .column3__1,
.footer-area__inner .column3__2,
.footer-area__inner .column3__3 {
  width: 25%;
  height: auto;
  padding: 20px;
  box-sizing: border-box;
}

.footer-area__inner .column3__1+.column3__2,
.footer-area__inner .column3__2+.column3__3 {
  border-left: dotted 1px #fff;
}


.footer-area__inner .column3__1 img {
  width: 250px;
  height: 71.67px;
}
.footer-area__inner .column3__2 .text_theme_section {
  margin-bottom: 20px;
}
.footer-area__inner .column3__2 .text_theme_section:last-child {
  margin-bottom: 0;
}

.footer-area__inner .sns-area {
  display: flex;
}
.footer-area__inner .sns-area a {
  margin-top: 20px;
}
.footer-area__inner .sns-area a+a {
  margin-left: 40px;
}

.footer-area__inner .sns-area i {
  font-size: 36px;
  color: #fff;
}
.copyrights {
  text-align: center;
  color: #ddd;
  padding-top: 20px;
  padding-bottom: 20px;
  box-sizing: border-box;
  font-size: 14px;
}

/* ＊＊＊＊＊＊＊＊＊＊　　セクション　　＊＊＊＊＊＊＊＊＊＊＊＊ */
section {
  width: 100%;
  height: auto;
}

.section__inner {
  width: 1160px;
  height: auto;
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 60px;
  text-align: center;
}

.section-beige {
  background-color: #f6e5cc;
}

.section-white {
  background-color: #fff;
}

.section__inner .column2 {
  display: flex;
  justify-content: space-between;
    text-align: left;
}
.section__inner .column3 {
  display: flex;
  justify-content: space-between;
  text-align: left;
}

.section__inner .column2__left {
width: 40%;
height: auto;
}

.section__inner .column2__left img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.section__inner .column2__right {
  width: 55%;
  height: auto;
  padding: 20px 0 0 30px;
  box-sizing: border-box;
}

/* ＊＊＊＊＊＊＊＊＊＊　　書式　　＊＊＊＊＊＊＊＊＊＊＊＊ */
.title_theme_section {
  font-size: 36px;
  background:linear-gradient(transparent 50%, #f1b860 70%);
  display: inline-block;
  margin: 0 auto;
  padding: 0px 50px;
  position: relative;
  border-radius: 3px;
  text-align: center;
  margin-bottom: 40px;
}

.title_theme_section::before {
  content: "";
  display: block;
  background: url(../img/tomato.png) center/contain no-repeat;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 10px;
  bottom: 0;
  top: 5px;
  margin: auto;
}
.title_theme_section::after {
  content: "";
  display: block;
  background: url(../img/tomato.png) center/contain no-repeat;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 10px;
  bottom: 0;
  top: 5px;
  margin: auto;
}
.title_theme_contents {
  font-size: 24px;
}
.title_theme_sub-contents {
  font-size: 20px;
}
.title_theme_tiny-contents {
  font-size: 18px;
}
.text_theme_section {
  font-size: 18px;
}
.text_theme_impact {
  font-size: 22px;
  font-family: monospace;
}
.text_theme_contents {
  font-size: 16px;
}



/* ▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲
▲▲▲▲▲▲▲▲▲▲▲▲▲共通要素▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲
▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲ */

/* ＊＊＊＊＊＊＊＊＊＊　　トップ画　　＊＊＊＊＊＊＊＊＊＊＊＊ */

.top-view {
  width: 100%;
  height: auto;
}
.top-view__inner {
  width: 100%;
  height: 800px;
background: url(../img/top-pic.jpg) center / cover no-repeat;
display: flex;
justify-content: center;
align-items: center;
}

.top-view__contents-area {
  width: 920px;
  height: 510px;
  background: url(../img/top-pic-contentsline.png) center / contain no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-view__title {
  display: block;
  height: 144px;
  font-size: 48px;
  color: #fff;
  text-shadow: 3px 3px 3px #333;
}

/* ＊＊＊＊＊＊＊＊＊＊　　メインエリア　　＊＊＊＊＊＊＊＊＊＊＊＊ */
.main-area {
  background: url(../img/hatake_dark.jpg) center/ cover no-repeat;
  background-attachment: fixed;
}


/* ＊＊＊＊＊＊＊＊＊＊　　かくう農園について　　＊＊＊＊＊＊＊＊＊＊＊＊ */

.section-01__inner .column2__right {
  line-height: 2.5;
}

/* ＊＊＊＊＊＊＊＊＊＊　　３つのお約束　　＊＊＊＊＊＊＊＊＊＊＊＊ */

.section-02__inner {
  color: #fff;
}


.section-02__inner .column3__1,
.section-02__inner .column3__2,
.section-02__inner .column3__3 {
  width: 30%;
  height: auto;
  text-align: center;
}

.section-02__inner img {
  width: 60%;
}

.section-02__inner .text_theme_section {
  padding: 20px 10px 40px;
  text-align: left;
}

/* ＊＊＊＊＊＊＊＊＊＊　　お野菜について, お米について　　＊＊＊＊＊＊＊＊＊＊＊＊ */

.section-03__inner .title_theme_sub-contents,
.section-04__inner .title_theme_sub-contents {
  color: #11623a;
}
.section-03__inner .title_theme_tiny-contents,
.section-04__inner .title_theme_tiny-contents {
  padding-top: 30px;
}
.section-03__inner .price-box,
.section-04__inner .price-box {
  display: flex;
  flex-wrap: wrap;
  padding-top: 30px;
}
.section-03__inner .price-name,
.section-04__inner .price-name {
  width: 35%;
  text-align: right;
  padding: 10px;
  box-sizing: border-box;
}
.section-03__inner .price-tag,
.section-04__inner .price-tag {
  background-color: #11623a;
  color: #fff;
  font-size: 16px;
  padding: 6px;
  display: inline-block;
  border-radius: 5px;
  text-align: center;
  margin-right: 30px;
}

.section-03__inner .price-desc,
.section-04__inner .price-desc {
  width: 65%;
  padding: 10px;
  box-sizing: border-box;
  line-height: 2;
}

/* ＊＊＊＊＊＊＊＊＊＊　　お問い合わせ　　＊＊＊＊＊＊＊＊＊＊＊＊ */
.form-area {
  width: 600px;
  height: auto;
  margin: 0 auto;
}
.form-item {
  text-align: left;
  padding-bottom: 40px;
}
.form-item-label-required {
  background-color: #11623a;
  color: #fff;
  font-size: 12px;
  padding: 2px;
  display: inline-block;
  border-radius: 3px;
  text-align: center;
  margin-right: 10px;
  vertical-align: bottom;
  margin-bottom: 2px;
}
.form-item input,
.form-item textarea {
  margin-top: 10px;
  margin-left: 50px;
  font-size: 18px;
  border-radius: 3px;
  border: 1px solid #ccc;
  padding: 5px;
  box-sizing: border-box;
}

.form-item input {
  width: 300px;
}
.form-item textarea {
  width: 500px;
  height: 200px;
}
input::placeholder {
  color: #cfad7c;
}

/* IE */
input:-ms-input-placeholder {
  color: #cfad7c;
}

/* Edge */
input::-ms-input-placeholder {
  color: #cfad7c;
}

.form-btn {
  background-image: linear-gradient(
180deg, #fff, #53b376 45%, #53b376 100%);
  color: #fff;
  padding: 5px 10px;
  font-size: 22px;
  border: solid 1px #009446;
  border-radius: 5px;
}
.form-btn:hover {
  opacity: 0.8;
  cursor: pointer;
}


/* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊モバイル　ブレイク＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊*/
@media screen and (max-width: 768px) {

  /*＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
  ＊＊＊＊＊＊＊＊＊　　　共通要素　　　＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
  ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊*/
  /* ＊＊＊＊＊＊＊＊＊＊　　基本情報　　＊＊＊＊＊＊＊＊＊＊＊＊ */
  body {
    min-width: 0;
  }

  br.sp-only {
    display: inline;
  }

  br.pc-only {
    display: none;
  }

  span.sp-hidden {
    display: none;
  }

  /* ＊＊＊＊＊＊＊＊＊＊　　ヘッダー　　＊＊＊＊＊＊＊＊＊＊＊＊ */
  .header-area {
  }

  .header-area__inner {
    width: 100%;
    height: auto;
  }

.header-logo {
text-align: center;
}

  .header-logo img {
  width: 60%;
  height: auto;
  padding: 10px;
  }

  .header-nav__list {
    display: none;
  }




  /* ＊＊＊＊＊＊＊＊＊＊　　フッダー　　＊＊＊＊＊＊＊＊＊＊＊＊ */

  .footer-area__inner {
  width: 100%;
  height: auto;
  text-align: center;
  }
  .footer-area__inner .column3 {
    display: block;
  }

  .footer-area__inner .column3__1,
  .footer-area__inner .column3__2,
  .footer-area__inner .column3__3 {
    width: 100%;
    height: auto;
    padding: 20px;
    padding-top: 0;
  }

  .footer-area__inner .column3__1+.column3__2,
  .footer-area__inner .column3__2+.column3__3 {
    border-left: none;
  }


  .footer-area__inner .column3__1 img {
    width: 60%;
    height: auto;
    margin: 0 auto;
  }
  .footer-area__inner .column3__2 .text_theme_section {
    margin-bottom: 5px;
  }

  .footer-area__inner .sns-area {
    display: flex;
    justify-content: center;
  }
  .footer-area__inner .sns-area a {
    margin-top: 10px;
    padding: 10px;
    border: solid 1px #fff;
    border-radius: 30px;
  }
  .footer-area__inner .sns-area a+a {
    margin-left: 50px;
  }



  /* ＊＊＊＊＊＊＊＊＊＊　　コンテンツ　　＊＊＊＊＊＊＊＊＊＊＊＊ */
  .section__inner {
    width: 95%;
    height: auto;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .heading__inner {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
  }


  .section__inner .column2 {
    display: block;
  }
  .section__inner .column3 {
    display: block;
  }

  .section__inner .column2__left {
  width: 100%;
  }

  .section__inner .column2__left img {
    width: 100%;
  }

  .section__inner .column2__right {
    width: 100%;
    padding: 20px;
  }

  /* ＊＊＊＊＊＊＊＊＊＊　　書式　　＊＊＊＊＊＊＊＊＊＊＊＊ */
  .title_theme_section {
    font-size: 26px;
    letter-spacing: -3px;
    padding: 0 35px;
  }

  .title_theme_section::before {
    width: 20px;
    height: 20px;
  }
  .title_theme_section::after {
    width: 20px;
    height: 20px;
  }
  .title_theme_contents {
    font-size: 24px;
  }
  .title_theme_sub-contents {
    font-size: 20px;
  }
  .title_theme_tiny-contents {
    font-size: 18px;
  }
  .text_theme_section {
    font-size: 18px;
  }
  .text_theme_impact {
    font-size: 22px;
    font-family: monospace;
  }
  .text_theme_contents {
    font-size: 16px;
  }



  /* ▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲
  ▲▲▲▲▲▲▲▲▲▲▲▲▲共通要素▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲
  ▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲ */

  /* ＊＊＊＊＊＊＊＊＊＊　　トップ画　　＊＊＊＊＊＊＊＊＊＊＊＊ */

  .top-view {
    width: 100%;
    height: auto;
  }
  .top-view__inner {
    width: 100%;
    height: 400px;
  background: url(../img/top-pic.jpg) center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  }

  .top-view__contents-area {
    width: 95%;
    height: 52.7vw;
    position: absolute;
    top: 15%;
    bottom: 0;
    margin: auto;
  }

  .top-view__title {
    display: block;
    height: 96px;
    font-size: 32px;
  }

  /* ＊＊＊＊＊＊＊＊＊＊　　メインエリア　　＊＊＊＊＊＊＊＊＊＊＊＊ */
  .main-area {
    background: none;
    background-attachment: none;
  }

  .main-area::before {
background: url(../img/hatake_dark.jpg) center/ cover no-repeat;
content: "";
display: block;
position: fixed;
top: 0;
left: 0;
z-index: -1;
width: 100%;
height: 100vh;
  }


  /* ＊＊＊＊＊＊＊＊＊＊　　かくう農園について　　＊＊＊＊＊＊＊＊＊＊＊＊ */

  .section-01__inner .column2__right {
    line-height: 1.5;
  }

  /* ＊＊＊＊＊＊＊＊＊＊　　３つのお約束　　＊＊＊＊＊＊＊＊＊＊＊＊ */

  .section-02__inner {
    color: #fff;
  }


  .section-02__inner .column3__1,
  .section-02__inner .column3__2,
  .section-02__inner .column3__3 {
    width: 100%;
    height: auto;
  }

  .section-02__inner img {
    width: 40%;
  }

  .section-02__inner .text_theme_section {
    padding: 10px 10px 40px;
  }

  /* ＊＊＊＊＊＊＊＊＊＊　　お野菜について, お米について　　＊＊＊＊＊＊＊＊＊＊＊＊ */

  .section-03__inner .title_theme_sub-contents,
  .section-04__inner .title_theme_sub-contents {
    text-align: center;
  }
  .section-03__inner .title_theme_tiny-contents,
  .section-04__inner .title_theme_tiny-contents {
        text-align: center;
  }
  .section-03__inner .title_theme_contents,
  .section-04__inner .title_theme_contents {
    text-align: center;
  }
  .section-03__inner .price-box,
  .section-04__inner .price-box {
    display: flex;
    flex-wrap: wrap;
    padding-top: 30px;
  }
  .section-03__inner .price-name,
  .section-04__inner .price-name {
    width: 25%;
  }
  .section-03__inner .price-tag,
  .section-04__inner .price-tag {
    margin-right: 0;
  }

  .section-03__inner .price-desc,
  .section-04__inner .price-desc {
    width: 75%;
    line-height: 1.5;
  }

  /* ＊＊＊＊＊＊＊＊＊＊　　お問い合わせ　　＊＊＊＊＊＊＊＊＊＊＊＊ */
  .form-area {
    width: 100%;
  }
  .form-item input,
  .form-item textarea {
    margin-left: 5%;
    padding: 2px;
    box-sizing: border-box;
  }

  .form-item input {
    width: 90%;
  }
  .form-item textarea {
    width: 90%;
    height: 100px;
  }
  input::placeholder {
    color: #cfad7c;
  }

  /* IE */
  input:-ms-input-placeholder {
    color: #cfad7c;
  }

  /* Edge */
  input::-ms-input-placeholder {
    color: #cfad7c;
  }






}
