@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&display=swap');

/* =============================================
resetCSS
============================================= */
*, *::before, *::after { box-sizing: border-box;}
*:not(dialog) { margin: 0;}
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
  color: inherit;
}
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word;}
p { text-wrap: pretty;}
h1, h2, h3, h4, h5, h6 { text-wrap: balance;}
ol, ul,li {
  list-style: none;
  margin:0;
  padding:0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* =============================================
COMMON
============================================= */
:root {
  --main: #006428;
  --accent: #67AF28;
  --base: #FFF4E6;
  --brown: #C18E36;
  --white: #fff;
  --black: #000;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  color: var(--black);
  overflow-x: hidden;
  box-sizing : border-box;
  background-color: var(--base);
}
.spOnly { display: none !important;}
.pcOnly { display: block !important;}
a[href^="tel:"]{
  pointer-events: none;
}
.contents ,.contents2 {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}
.contents2{
  max-width: 940px;
}
section { padding:  100px 0;}
#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 1000;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
}
#header h1 {
  width: 100%;
  height: auto;
  max-width: 340px;
  display: flex;
  align-items: center;
}
#header h1 a {
  display: block;
}
.navWrap ul {
  display: flex;
  gap: 30px;
}
.navWrap a {
  color: var(--main);
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
}
h2 {
  color: var(--main);
  font-size: 4.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}
h2 span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0em;
  margin-bottom: 4px;
}
h2 span::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: var(--main);
  border-radius: 50%;
}
h3 {
  color: var(--main);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.strong {
  font-size: 2.4rem;
  font-weight: 700;
}
.btn a {
  display: block;
  text-align: center;
  border-radius: 100px;
  background: var(--main);
  color: var(--white);
  border: 2px solid var(--main);
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 20px 10px;
  transition: 0.3s;
}
.btn.btnYg a {
  background: var(--accent);
  border-color: var(--accent);
}
.selectWindow a {
  position: relative;
}
.btn.selectWindow a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background: url("../img/selectWindowWht.svg") no-repeat center / contain;
  transition: all 300ms ease;
  pointer-events: none;
}
.btn.btnBlk.selectWindow a::after {
  background-image: url("../img/selectWindowBlk.svg");
}
.btn.btnYg.selectWindow a::after {
  background-image: url("../img/selectWindowWht.svg");
}
.cta .btn.selectWindow a::after {
  background-image: url("../img/selectWindowGrn.svg");
}
.btn.btnBlk.selectWindow a::after {
  background-image: url("../img/selectWindowBlk.svg")!important;
}
.spNavBtn .btn.selectWindow a::after {
  background-image: url("../img/selectWindowGrn.svg");
}
.komeText {
  font-size: 1.4rem;
  text-indent: -1em;
  margin-left: 1em;
}
.komeText::before {
  content: "※";
}
.mb5 { margin-bottom:5px;}
.mb10 { margin-bottom:10px;}
.mb20 { margin-bottom:20px;}
.mb30 { margin-bottom:30px;}
.mb40 { margin-bottom:40px;}
.mb50 { margin-bottom:50px;}
.mb60 { margin-bottom:60px;}
.mb70 { margin-bottom:70px;}
.mb80 { margin-bottom:80px;}

/* =============================================
TOP
============================================= */
/* ========= FV ========= */
.topFv {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  width: 90%;
  height: 100%;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.fvText {
  padding-right: 10%;
}
.fvText .catch img{
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}
.BtnWrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.fvText .btn {
  width: 48%;
}
.fvText .btn a {
  font-size: clamp(16px, 1.17vw, 24px);
}
.fvSlide {
  position: relative;
  border-radius: 80px;
  width: 100%;
  height: 550px;
  overflow: hidden;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: fadeAnimation 16s infinite;
}
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 4s; }
.slide:nth-child(3) { animation-delay: 8s; }
.slide:nth-child(4) { animation-delay: 12s; }
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes fadeAnimation {
  0% {
    opacity: 0;
  }
  5%, 25% {
    opacity: 1;
  }
  30%, 100% {
    opacity: 0;
  }
}
.spNavBtn {
  display: none;
}

/* ========= ABOUT ========= */
.about {
  position: relative;
  background: var(--brown);
  color: #fff;
  padding: 130px 0px 70px;
  margin-top: -150px;
}
.about::before ,.about::after {
  content: "";
  position: absolute;
  left: calc(50% - 50vw - 1px);
  width: calc(100vw + 2px);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
.about::before {
  top: calc(-100vw * 119 / 1366);
  height: auto;
  aspect-ratio: 1366 / 120;
  background-image: url('../img/bgBrownTop.svg');
}
.about::after {
  bottom: calc(-100vw * 39 / 1366);
  height: auto;
  aspect-ratio: 1366 / 40;
  background-image: url('../img/bgBrownBottom.svg');
}
.about h2 {
  color: var(--white);
}
.about h2 span::before {
  background-color: var(--white);
}
.contWrap {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.aboutWrap {
  display: grid;
  grid-template-columns: calc(50% - 64px) 50%;
  column-gap: 64px;
  align-items: center;
}
.aboutWrap img {
  width: 100%;
  height: auto;
  min-height: 266px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 40px;
}
.attn {
  background-color: var(--white);
  border-radius: 40px;
  padding: 40px;
  color: var(--black);
}
.attnText { text-align: center;}
.attnCatch {
  font-size: 4.0rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}
.attnCatch span { color: var(--accent);}
.attnList {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.attnList li {
  display: flex;
  gap: 40px;
  align-items: center;
}
.attnList li img {
  border-radius: 40px;
  width: 100%;
  max-width: 220px;
  height: auto;
}
.attnList li div {
  width: 100%;
}
.attnList h3 {
  font-size: 2.4rem;
  margin-bottom: 8px;
}
.attnList p span {
  color: var(--accent);
  font-weight: 700;
}
.attnList li .btn a {
  padding: 14px;
  width: 100%;
  max-width: 235px;
  margin-top: 16px;
}

/* ========= CTA ========= */
.cta {
  padding: 0;
}
.cta .contents {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 0;
  max-width: 100%;
  width: 100%;
}
.cta .contents > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
}
.ctaWrap {
  background: var(--accent);
  display: grid;
  place-content: center;
  gap: 32px;
  padding: 100px 0px 60px;
}
.ctaImg {
  display: flex;
  gap: 56px;
  justify-content: center;
}
.ctaImg img {
  width: clamp(116px, 8.49vw, 180px);
  height: auto;
  filter: drop-shadow(5px 10px 15px rgba(0, 0, 0, 0.20));
}
.cta .BtnWrap {
  flex-wrap: nowrap;
  justify-content: center;
  gap: 16px;
}
.cta .btn {
  width: 100%;
}
.cta .btn a {
  background-color: var(--white);
  border: none;
  color: var(--main);
  font-size: clamp(1.6rem, 1.17vw, 2.0rem);
}
.btnBlk a {
  color: var(--black)!important;
}

/* ========= CASE ========= */
#case {
  text-align: center;
}
#case h2 span {
  justify-content: center;
}
.profileBox {
  text-align: left;
  background: var(--white);
  border-radius: 40px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.profileBox > img {
  width: 40%;
  height: auto;
  border-radius: 40px;
  object-fit: cover;
}
.name {
  font-weight: 700;
  margin-bottom: 16px;
}
.name span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
}
.profileText h3 {
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.disc li {
  list-style: disc;
	margin-left: 20px;
  margin-bottom: 4px;
}
.profileText ul {
  margin-bottom: 8px;
}
.caseText {
  line-height: 1.8;
}
.caseText .strong {
  color: var(--main);
  margin-bottom: 8px;
}
.caseText .btn {
  width: 100%;
  max-width: 310px;
  margin: 40px auto 0;
}
.caseBtnWrap {
  border: 2px dashed var(--brown);
  border-radius: 18px;
  padding: 32px 40px;
  text-align: center;
}
.caseBtnWrap ul {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  row-gap: 50px;
  column-gap: 38px;
}
.caseBtnWrap li {
  text-align: center;
  position: relative;
}
.caseBtnWrap li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.caseBtnWrap li img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  background-color: var(--white);
}
.up {
  position: absolute;
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 700;
  top: -10px;
}
.productsBtn {
  width: 100%;
  padding: 8px 10px 10px;
  margin-top: 8px;
  border-radius: 100px;
  background: #825400;
  border: 2px solid #825400;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
}
.greyBtn {
  color: #898989;
  background-color: #ccc;
  border: 2px solid #ccc;
}

/* ========= VOICE ========= */
section.voice {
  padding: 0 0 100px;
}
.voiceList {
  display: flex;
  gap: 39px;
}
.voiceList li {
  width: calc(100% / 3);
}
.voiceList img {
  border-radius: 40px;
  width: 100%;
  margin: 0 auto 24px;
}
.voiceTtl {
  display: inline-block;
  color: var(--main);
  font-weight: 700;
  margin-bottom: 16px;
  padding: 0px 16px 10px 8px;
  position: relative;
}
.voiceTtl::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-right: 1px solid var(--main);
  border-bottom: 1px solid var(--main);
  border-radius: 0 0 20px 0;
  border-top: 1px solid transparent;
  border-left: 1px solid transparent;
}

/* ========= PRODUCTS ========= */
#products {
  background-color: var(--white);
}
.productsList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.productsList li a {
  display: block;
  text-decoration: none;
  color: var(--black);
}
.productsImgBox {
  background: #F5F5F5;
  border-radius: 20px;
  display: grid;
  place-items: center;
  padding: 20px 20px 24px;
  margin-bottom: 16px;
  position: relative;
  width: 100%;
  height: auto;
  min-height: 240px;
}
.productsImgBox img {
  width: 133px;
  height: auto;
  filter: drop-shadow(5px 10px 15px rgba(0, 0, 0, 0.20));
}
.productsLabel {
  position: absolute;
  display: inline-block;
  border: 1px solid var(--main);
  color: var(--main);
  border-radius: 100px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  padding: 3px 8px;
  bottom: 10px;
  left: 10px;
}
.leafSoilLabel {
  color: var(--white);
  background-color: var(--main);
}
.soilLabel {
  color: #825400;
  border: 1px solid #825400;
}
.productsName {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.productsPrice {
  letter-spacing: 0;
}
.productsPrice span {
  font-size: 1.4rem;
  letter-spacing: 0.03em;
}

/* ========= Footer ========= */
footer {
  background: var(--main);
  color: var(--white);
  padding: 40px 0 20px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.0;
  text-align: center;
}
footer a {
  color: var(--white);
  text-decoration: none;
}
.copyright {
  margin-top: 32px;
  font-size: 1.2rem;
  font-weight: 500;
}
.buyBtn {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 999;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.buyBtn.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.buyBtn a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #50A307;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 2.0rem;
  line-height: 1;
  padding: 22px 20px 21px 22px;
  border-radius: 20px 0 0 0;
  border-top: 2px solid var(--base);
  border-left: 2px solid var(--base);
  transition: background-color .35s ease, color .35s ease, transform .25s ease;
}
.buyBtn a::before {
  content: "";
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background: url("../img/cartIcon.svg") no-repeat center / contain;
}

/* =============================================
HOVER
============================================= */
/* --- hover対象に300msトランジションを付与 --- */
.btn a,
.navWrap a,
.caseBtnWrap li a .productsBtn,
.productsList li a .productsImgBox img,
.buyBtn a {
  transition: all 300ms ease;
}
@media (hover: hover) {
  .btn a:hover {
    background: var(--white);
    color: var(--main);
  }
  .btn.btnYg a:hover {
    background: var(--white);
    color: var(--accent);
  }
  .cta .btn a:hover {
    background: var(--main);
    color: var(--white);
  }
  .cta .btn.btnBlk a:hover {
    background: var(--black);
    color: var(--white)!important;
  }
  .buyBtn a:hover {
    background-color: var(--accent);
  }
  .caseBtnWrap li a:hover img {
    background-color: #EDF9E1;
  }
  .caseBtnWrap li a:hover .productsBtn {
    background: var(--white);
    color: #825400;
  }
  .productsList li a:hover .productsImgBox img {
    opacity: 0.6;
  }
  .navWrap a:hover {
    text-decoration: underline;
  }
  .buyBtn a:hover {
    background-color: var(--main);
  }
  .btn.selectWindow a:hover::after {
    background-image: url("../img/selectWindowGrn.svg");
  }
  .btn.btnYg.selectWindow a:hover::after {
    background-image: url("../img/selectWindowYg.svg");
  }
  .btn.btnBlk.selectWindow a:hover::after {
    background-image: url("../img/selectWindowBlk.svg");
  }
  .cta .btn.selectWindow a:hover::after {
    background-image: url("../img/selectWindowWht.svg");
  }
  .btn.btnBlk.selectWindow a:hover::after {
    background-image: url("../img/selectWindowWht.svg")!important;
  }
}

/* =============================================
RESPONSIVE
============================================= */
@media screen and (max-width: 1080px) {
  .spOnly { display: block !important;}
	.pcOnly { display: none !important;}
	a[href^="tel:"]{
    	pointer-events: auto;
  	}
  section {
    padding: 80px 0;
  }
  section.voice {
    padding: 0 0 80px;
  }
  h2 {
    font-size: 4.0rem;
  }
  .fvSlide {
    max-height: 450px;
  }
  .attnCatch {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: portrait) {
    .topFv {
        height: 656px;
    }
}
@media screen and (max-width: 1023px) {
  .topFv {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .fvText {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .fvText .btn a {
    font-size: clamp(16px, 1.95vw, 20px);
  }
  .fvSlide {
    max-height: none;
  }
  .aboutWrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .attnText {
    text-align: left;
  }
  .cta .contents {
    grid-template-columns: 1fr;
  }
  .ctaImg {
    gap: clamp(16px, 4vw, 40px);
  }
  .ctaImg img {
    width: clamp(80px, 28vw, 160px);
    height: auto;
  }
  .ctaWrap {
    padding: 80px 0;
  }
  .ctaWrap, .cta .BtnWrap {
    gap: 40px;
  }
  #case {
    text-align: left;
  }
  #case h2 span {
    justify-content: left;
  }
  .caseText .btn {
    width: 50%;
    max-width: none;
    min-width: 310px;
  }
  .profileBox {
    grid-template-columns: 1fr;
  }
  .caseBtnWrap ul,main > section:last-of-type ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .voiceList {
    flex-direction: column;
    gap: 64px;
  }
  .voiceList li {
    width: 100%;
  }
  .productsList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media(max-width: 768px){
  #header { padding: 16px;}
  #header h1 { height: 60px;}
	.navBtn {
		position: fixed;
		right: 16px;
		top: 16px;
		width: 60px;
		height: 60px;
		display: block;
		z-index: 999;
		background: url(../img/spBtn.png) right 0px / 60px no-repeat;
		cursor: pointer;
	}
	.navBtn.active{
		background: url(../img/spBtnClose.png) right 0px / 60px no-repeat;
	}
  .navWrap {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width:100%;
    height: 100vh;
    background: var(--main);
    transition: all 0.3s;
    text-align: center;
  }
  .navWrap ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
    border-radius: 0;
    background: none;
    backdrop-filter: none;
    margin-top: 30%;
  }
  .navWrap a {
    font-size: 2.4rem;
    color: var(--white);
  }
  .navWrap.panelactive{
    display: block;
    z-index:20;
  }
  .spNavBtn {
    display: block;
  }
  .spNavBtn .btn a {
    color: var(--main);
    background-color: var(--white);
    width: 90%;
    margin: 30px auto 0;
  }
  .topFv {
    height: auto;
    min-height: unset;
    grid-template-rows: auto auto;
    padding: 96px 0 40px;
  }
  .fvSlide {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    max-height: 550px;
    min-height: 0;
  }
  .btn a {
    width: 100%;
    min-width: 0;
  }
  .contWrap {
    gap: 40px;
  }
  .about {
    margin-top: -100px;
  }
  .about::before,
  .about::after {
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
  }
  .attnList {
    gap: 40px;
  }
  .attnList li ,.profileBox {
    gap: 16px;
    flex-direction: column;
  }
  .attnList li img {
    width: 80%;
    max-width: none;
  }
  .attnList li .btn a {
    max-width: none;
  }
  .profileBox > img {
    width: 100%;
  }
  .caseBtnWrap ul,
  main > section:last-of-type ul {
    grid-template-columns: 1fr;
  }
  .productsList {
    grid-template-columns: 1fr;
  }
  footer {
    padding-bottom: 100px;
  }
  .buyBtn {
      right: auto;
      left: 50%;
      bottom: 12px;
      transform: translateX(-50%) translateY(12px);
      width: 90%;
      max-width: 420px;
    }
  .buyBtn.is-visible {
    transform: translateX(-50%) translateY(0);
  }
  .buyBtn a {
    width: 100%;
    justify-content: center;
    text-align: center;
    border-radius: 999px;
    border: 2px solid var(--base);
    padding: 16px 20px;
  }
}
@media(max-width: 541px){
  #header h1 {
    max-width: 260px;
  }
  h2 {
    font-size: 3.2rem;
  }
  .topFv { margin-top: 20px;}
  .BtnWrap { gap: 20px;}
  .fvText .btn {
    width: 100%;
  }
  .fvSlide { border-radius: 40px;}
  .attn ,.profileBox ,.caseBtnWrap {
    padding: 20px;
  }
  .strong ,.productsName { font-size: 2.0rem;}
  .attnCatch { font-size: 2.4rem;}
  .attnList li img ,.caseText .btn {
    width: 100%;
  }
  .BtnWrap ,.cta .BtnWrap {
    flex-direction: column;
    gap: 20px;
  }
  .ctaImg img {
    width: 27vw;
  }
  .caseBtnWrap ul {
    row-gap: 40px;
  }
  .voiceList {
    gap: 40px;
  }
}
@media(max-width: 374px){
  #header h1 {
    max-width: 210px;
  }
}

/* =============================================
ANIMATION
============================================= */
.fadeIn {
  animation-name:fadeInAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.scroll_left {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}
.scroll_left.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0);
}