@charset "UTF-8";   

:root {
  /* 色管理用の変数 */
  --black-color: #333;
  --white-color: #fff;
  --background-color: #e1dbce;
  --accent-color: #5c897f;
}

.body{
    max-width: 1200px;
}

@media screen and (min-width: 960px) {
	/* 960px以上に適用されるCSS（PC用） */
.l_header{
  background-color: var(--background-color);
  width: 100%;
  text-align: center;
}
}

.l_header{
  background-color: var(--background-color);
  display: flex;
  height: 90px;
  width: 100%;
  color: #fff;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  position: sticky;
  top: 0px;
  z-index: 100;
}

.section_title_img {
  width: 300px;
}

.l_header-logo{
  width: 250px;
  padding-left: 8px;
}

.l_header-nav_list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 960px) {
  .l_header-nav_list {
    display: flex;
    gap: 0 48px;
    position: static;
    transform: none;
    z-index: 999;
  }
}

.l_header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(255, 255, 255, 0.9);
}

@media screen and (min-width: 960px) {
  .l_header-nav {
    position: static;
    background: transparent;
    width: auto;
    height: auto;
    opacity: 1;
    pointer-events: inherit;
    padding-right: 40px;
  }
}

.l_header-nav_item:not(:first-child) {
  margin-top: 40px;
}

@media screen and (min-width: 960px) {
  .l_header-nav_item:not(:first-child) {
    margin-top: 0;
  }
}


.l_header-nav_link {
  color: var(--accent-color);
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.l_contents {
  padding: 20px 0;
}

/* ---------- ハンバーガーメニュー ----------*/

.m_hamburger {
    width: 40px;
    height: 30px;
    position: relative;
  }

  @media screen and (min-width: 960px) {
    .m_hamburger {
      display: none;
    }  
  }

  .m_hamburger-bar {
    width: 100%;
    height: 3px;
    position: absolute;
    background: var(--accent-color);
    left: 50%;
    transition: 0.3s;
  }
  
  .m_hamburger-bar:first-child {
    top: 0;
    transform: translate(-50%, 0);
  }
  
  .m_hamburger-bar:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  .m_hamburger-bar:last-child {
    top: 100%;
    transform: translate(-50%, -100%);
  }


/* ---------- main css ----------*/

.l_main_wrapper{
    background-color: #e1dbce;
    text-align: center;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-style: normal;
}

.l_top-kv{
    max-width: 900px;
    padding-top: 10px;
    margin: 0 auto;
    padding-bottom : 20px;
}

.l_top-kv-img {
    max-width: 900px;
    border-radius: 0px;
    height: 400px;
    object-fit: cover;
}

.l_section-about {
    text-align: center;
    max-width: 800px;
    margin: 20px auto;
    padding: 0px 15px;
}

.l_title {
  padding-top: 30px;
}

.l_title-sub {
    font-size: 18px;
    margin-top: 20px;
    letter-spacing: 0.1em;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
}

.l_title-mark {
    background:linear-gradient(transparent 60%, #85a193 50%);
}

.l_about-txt {
    margin-top: 30px;
    font-size: 16px;
    text-align: left;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
}

.l_about-img{
    align-items: center;
    margin: 40px auto 0;
    max-width: 700px;
}

.l_about-img_owner {
    width: 100%;
}

@media screen and (min-width: 960px) {
  .l_about-img_owner {
    width: 700px;
  } 
}

.l_section-fruit{
    margin-top: 40px;
}

.l_about-botton{
  margin: 30px auto 10px;
  column-gap: 10px;
}

.l_infomation {
  margin-bottom: 0px;
}

.l_info-txt {
  margin-top: 20px;
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}


/* ----------ボタンのタグ ----------*/

a.l_btn {
	display: flex;
  justify-content: space-between;
  align-items: center;
	text-align: center;
	text-decoration: none;
	width: 300px;
	margin: auto;
	padding: 1rem 4rem;
	font-weight: bold;
	background: var(--accent-color);
	color: #e1dbce;
	border-radius: 100vh;
	position: relative;
	transition: 0.5s;
}

a.l_btn::before {
	content: '';
	position: absolute;
	top: calc(50% - 2px);
	right: 1em;
	transform: translateY(calc(-50% - 2px)) rotate(45deg);
	width: 10px;
	height: 1px;
	background: #e1dbce;
}
a.l_btn::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 1em;
	transform: translateY(-50%);
	width: 50px;
	height: 1px;
	background-color: #e1dbce;
}
a.l_btn:hover {
	background: #a1bdb6;
	color: #e1dbce;
}


/* ----------TOP/育てているもの ----------*/

.l_about_fruit{
  margin-top: 40px;
  margin: 0 auto;
}

@media screen and (min-width: 800px) {
	/* 800px以上に適用されるCSS（PC用） */
.l_about_fruit{
  max-width: 800px;
  margin-top: 40px;
  display: flex;
  margin: 0 auto; 
  gap: 30px 20px;
  flex-wrap: wrap;
  justify-content: center;
}
}

.img_main_fruit{
  width: 300px;
  height: 180px;
  object-fit: cover;
  margin: 0 auto;
  align-items: center;
  border-radius: 20px;
  margin-top: 20px;
}

.fruit_sub_img{
  width: 160px;
  margin: 0px auto 10px;
  border-radius: 20px;
}

.l_about_fruit-sub {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  column-gap: 25px;
}

.fruit_caption-ttl {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.fruit_caption-txt {
  font-size: 15px;
  font-weight: 500;
  width: 300px;
  text-align: left;
  margin: 0 auto 10px;
}


/* ----------日々のこと ----------*/

.l_section-instagram{
  margin-top: 40px;
}

.l_insta-caption {
  margin: 20px;
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  align-items: center;
}


/* ----------農園について ----------*/

.l_section-farm {
  max-width: 800px;
  margin: 0 auto;
  padding : 0px 10px;
}

.l_title_farm {
  letter-spacing: 0.2em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  padding-top: 20px;
  margin: 0px 10px 30px;
}

.about_owner {
   max-width: 400px;
   margin: 0px auto 16px;
}

@media screen and (min-width: 800px) {
  .about_owner {
    width: 250px;
  }
}

.l_about_farm_text {
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  max-width: 400px;
  margin: 20px auto;
  text-align: left;
}


@media screen and (min-width: 800px) {
  .l_about_farm_text {
    max-width: 380px;
    text-align: left;
  }
}

.farm_text-main {
  font-weight: 700;
  font-size: 20px;
  padding-bottom: 8px;

}

.about_farm01 {
  max-width: 400px;
  margin: 16px auto;
  border-radius: 30px;
}

@media screen and (min-width: 800px) {
  .about_farm01 {
    max-width: 300px;
    margin-top: 16px;
  }
  .l_about_farm-owner {
    display: flex;
    margin: 20px auto;
  }
  .l_about_farm-farm {
    display: flex;
    flex-direction: row-reverse;
    margin: 0 auto;
  }
}


/* ----------お問い合わせフォーム ----------*/

.l_title_contact {
  font-size: 22px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  padding-top: 20px;
  margin-bottom: 30px;
}

.text_contact {
  text-align: center;
  display: block;
  margin: 0 15px 0;
}

.contact {
  margin-top: 20px;
}

.form-unit-head {
  margin: 10px;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 5px 8px;
  position: relative;
  max-width: 640px;
  width: 92%;
  display: block;
  text-align: left;
  margin: 0 auto;
}

@media screen and (min-width: 960px) {
  .form-unit-head {
    max-width: 640px;
  }
}


.form-input {
  background-color: #fff;
  font-weight: bold;
  letter-spacing: 0.1em;
  max-width: 640px;
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-unit-contents {
  width: 92%;
  margin: 0 auto;
}

.form-textarea {
  background: #fff;
  width: 100%;
  max-width: 640px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin: 0 auto;
}

.botton_submit {
  color: #fff;
  font-weight: bold;
  width: 200px;
  padding: 20px 0;
  margin: 48px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--accent-color);
  border-radius: 100vh;
  cursor: pointer;
}

.contact_form_required {
  font-size: 12px;
  padding: 0 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--accent-color);
  color: var(--white-color);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* ---------- Shopping ---------- */
.l_title_shopping {
  padding-top: 20px;
  margin-bottom: 30px;
}

.l_shopping_txt {
  font-weight: 500;
  text-align: center;
  display: block;
  margin: 35px 30px;
}

.l_shopping_type {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	text-align: center;
}

.l_shopping_type::before,
.l_shopping_type::after {
	content: '';
	width: 30px;
	height: 5px;
	background-color: var(--accent-color);
}

.l_shopping_type::before {
	margin-right: 15px;
}
.l_shopping_type::after {
	margin-left: 15px;
}


.l_shopping {
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  padding-top:30px;
}

.l_shopping2 {
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
}


ul.price_list {
  list-style: none;
  column-count: 1;
  column-gap: 30px;
  margin: 20px;
  padding:0;
}
ul.price_list li {
  display: inline-flex;
  padding-bottom: 8px;
  border-bottom: #616161 1px dotted;
  margin-bottom: 16px;
  width: 100%;
  color:#cc0000;
  letter-spacing: 0.2em;
}
ul.price_list li strong {
  font-weight:bold;
  color:#333;
  margin-right:auto;
}
@media screen and (min-width: 960px) {
  ul.price_list{
    max-width: 800px;
    column-count: 2;
    margin: 0 auto;
    padding: 40px;
  }
}


/* ---------- fruits/つくっているもの ---------- */

.fruit_main_wrapper {
  margin-top : 20px;
}

.fruit_list {
  display: flex;
  overflow-x: scroll;
  margin-bottom: 20px;
}

@media screen and (min-width: 960px) {
  .fruit_list {
    margin: 0 auto;
    width: 600px;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow-y: scroll;/*スクロールバー非表示（IE・Edge）*/
    -ms-overflow-style: none;/*スクロールバー非表示（Firefox）*/
    scrollbar-width: none;
  }
  .fruit_list::-webkit-scrollbar{
    display:none;
  }
}

.fruit_caption {
  padding : 0px 10px 0;
}

.img_about_fruit {
  width: 100%;
  max-width: 700px;
  height: 32vh;
  object-fit: cover;
  border-radius: 200px;
  padding : 0 8px 0;
}

.fruit_list_title {
  font-weight: bold;
  font-size: 17px;
  margin: 20px 10px 10px;
}

.fruit_list_text {
  width: 260px;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  padding: 10px 10px 20px; 
  line-height: 25px;
  background: var(--background-color);
  border-radius: 10px;
  border: solid 3px #9eb69c;
}

.l_sub_title {
  margin-top : 40px;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.3em;
}

.fruit_list_text_setoka {
  max-width: 600px;
  margin: 20px 10px;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  padding: 10px 10px 20px; 
  line-height: 25px;
  border-radius: 10px;
  border: solid 3px #9eb69c;
  
}

.fruit_caption_setoka{
  margin: 0 auto;
}

.fruit_calender {
  margin: 0 auto;
  max-width: 800px;
}

.fruit_calender_caption {
  font-size: 15px;
  font-weight: 500;
  margin: 0 auto;
}  

/* ---------- footer ---------- */

.l_footer {
  background-color: var(--accent-color);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  padding: 30px 30px 30px;
  display: flex;
  margin: 0;
}

img.l_footer-logo{
  width: 100px;
  padding-left: 20px;
  object-fit: contain;
}

.l_footer-txt{
  text-align: left;
  padding: 20px 0 0 20px;
  color: var(--white-color);
}


/* ---------- js ---------- */

.js_body.is-active {
  overflow: hidden;
}

.js_navigation {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

@media screen and (min-width: 960px) {
  .js_navigation {
    pointer-events: auto;
    opacity: 1;
  }
}

.js_navigation.is-active {
  opacity: 1;
  pointer-events: inherit;
  background: rgb(255, 255, 255, 0.9);
}

.js_hamburger.is-active .m_hamburger-bar:first-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(45deg);
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(2) {
  opacity: 0;
}

.js_hamburger.is-active .m_hamburger-bar:last-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(-45deg);
}


/* ---------- スライド ---------- */

/* auto slider ベース設定 */
.js-auto-slider-wrap {
  overflow: hidden;
}
.js-auto-slider {
  display: flex;
}
.js-auto-slider-elm {
  overflow: hidden;
  position: relative;
	z-index: 1;
  flex-shrink: 0;
}
.js-auto-slider-img {
  position: absolute;
  top: 0;
  left: 0;
	right: -45%;
  bottom: 0;
}
.js-auto-slider-img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}


/* auto slider 表示エリア */
.js-auto-slider-inner {
  width: 77vw;
  margin-left: auto;
  margin-right: auto;
}
/* auto slider スライド要素 */
.js-auto-slider-elm {
  height: 40vw;
  width: 65vw;
  margin-right: 4.8vw;
  border-radius: 3.3vw;
}
@media only screen and (min-width: 1080px) {
  .js-auto-slider-inner {
    width: 50vw;
  }
  .js-auto-slider-elm {
    height: 20vw;
    width: 30vw;
    margin-right: 5vw;
    border-radius: 1.5vw;
  }
}

/* ページャー */
.js-auto-slider-pager {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  list-style: none;
}
.js-auto-slider-pager-elm {
  margin: 0 20px;
}
.js-auto-slider-pager-btn {
  display: block;
  height: 12px;
  width: 12px;
  padding: 0;
  font-size: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background .3s;
}
.js-auto-slider-pager-btn {
  background: #ccc;
}
.js-auto-slider-pager-btn:hover,
.js-auto-slider-pager-btn.is-active {
  background: var(--accent-color);
}