@charset "utf-8";
/*======================================
common
========================================*/
html {
    font-size: 62.5%;
}

body {
    font-family: 'Noto Serif JP', sans-serif;
    font-weight: 300;
    font-style: normal;
    color: var(--primary-black);
    background-color: #FFF;
    line-height: 1.8;
    letter-spacing: 0.1em;
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
}

.ttl {
    color: #695A00;
    -webkit-text-stroke-color: rgba(102, 68, 50, 0.20);
    font-size: 2rem;
    font-weight: 700;
    margin-top: 80px;
    letter-spacing: 0.15em;
}
.ttl__small {
    color: #695A00;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 80px;
}
/* 購入ボタン */
.btn {
    margin-top: 28px;
    margin-bottom: 80px;
}
.btn__buy {
    width: 100%;
    max-width: 230px;
    height: 60px;
    padding: 0 25px 0 10px;
    position: relative;
    text-decoration: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    border-radius: 9999px;
    color: #518103;
    font-size: 1.6rem;
    background-color: #FFF;
    border: 1px solid #518103;
    transition: all 0.3s ease;
}
.btn__buy .arrow {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background-color: #518103;

    border-radius: 40px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.btn__buy .arrow span {
    position: relative;
    right: 2px;
    width: 16px;
    height: 6px;
    border-bottom: 1px solid #FFF;
    border-right: 2px solid #FFF;
    transform: skew(45deg);
    transition: all 0.3s ease; 
}
.btn__buy:hover {
    color: #FFF;
    background-color: #518103;
}
.btn__buy:hover .arrow {
    background-color: #FFF;
}
.btn__buy:hover .arrow span {
    border-color: #518103;
}
@media screen and (min-width: 900px) {
    .btn__buy {
        max-width: 300px;
        height: 80px;
        justify-content: space-around;
    }
}
/* pc時の問い合わせボタン */
.toiawaseOuter {
    position: fixed;
    left: 0;
    top: 0;
    width: 37.5%;
    height: 100dvh;
    display: none;

    @media screen and (min-width: 1440px) {
        display: block;
    }
}
.toiawase {
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    width: 408px;
    height: 323px;
}
.toiawase__button {
    position: absolute;
    bottom: 30px;
    left: 50%;
    translate: -50% 0;
    width: 330px;
    height: 71px;
}

.toiawase__link {
    background: #E36720;
    border-radius: 9999px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #FFF;
    line-height: 1.8;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    width: 100%;
    height: 100%;
    font-size: 2rem;
    font-family: Inter;
}
.toiawase__link:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 1.4rem;
  height: 1.4rem;
  border-top: solid 3px currentColor;
  border-right: solid 3px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.toiawase__link:hover {
  background: #FFF;
  color: #E36720;
  border: 1px solid #E36720;
}
.toiawase__link:hover:after {
  right: 1.4rem;
}
/* container */
.container {
    @media screen and (min-width: 900px) {
        max-width: 500px;
        margin-inline:auto 0;
        background-color: #fff;
    }
    @media screen and (min-width: 1440px) {
        margin-inline: 37.5% auto;
    }
}
/* 空の画像 */
.fixedBg {
    @media screen and (min-width: 900px) {
        position: fixed;
        left: 0;
        background-image: url(../images/mainvisualpc.png);
        background-size: cover;
        background-position: 50% 50%;
        width: 100vw;
        height: 100dvh;
        z-index: -1;
        
    }
}
@media screen and (min-width: 900px) {
    .sp {
        display: none;
    }
}
@media screen and (max-width: 378px) {
    .pc {
        display: none;
    }
}

/*======================================
header
========================================*/
.header {
    background-color: white;
    width: 100%;
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;

    @media screen and (min-width: 900px) {
        background-color: unset;
    }
}
.header__inner {
    padding: 0 15px 10px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: inherit;
    position: relative;
}

.header__title {
    width: 120px;
    z-index: 2000;

    @media screen and (min-width: 900px) {
        position: fixed;
        top: 30px;
        left: 40px;
        width: 200px;
    }
}
.header__title img {
    display: block;
    width: 100%;
    height: 100%;
}
.header__nav {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    background-color: #fff;
    transition: ease .4s;
    z-index: 1000;
    background-image: url(../images/navback.png);
    background-size: cover;

    @media screen and (min-width: 900px) {
        position: fixed;
        right: unset;
        left: 0;
        top: 0;
        width: calc(100% - 500px);
        height: 100vh;
        transform: unset;
        background-color: transparent;
        background-image: none;
    }

    @media screen and (min-width: 1440px) {
        position: fixed;
        right: 0;
        left: unset;
        top: 0;
        width: calc(100% - 37.5% - 500px);
        height: 100vh;
        transform: unset;
        background-color: transparent;
    }
  }
  .header__nav.open {
    transform: translateX(0%);
  }
.nav-items {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 240px;
    padding: 0;
    text-align: left;

    
    @media screen and (min-width: 900px) {
        width: 100%;
        display: grid;
        justify-content: center;
    }
  }
  .nav-items__item a {
    color: #1A3604;
    width: 100%;
    display: block;
    font-size: 1.6rem;
    margin-bottom: 24px;

    @media screen and (min-width: 900px) {
        text-align: justify;
    }
  }
  
  .nav-items__item:last-child a {
    margin-bottom: 0;
  }

  /* ハンバーガーメニュー */
.header__hamburger {
    width: 25px;
    height: 8px;
}
.hamburger {
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
}
  
@media screen and (min-width: 900px) {
    .hamburger {
      display: none;
    }
}
.hamburger span {
    width: 100%;
    height: 1px;
    background-color: #1E1D1D;
    position: relative;
    transition: ease .4s;
    display: block;
}
  
.hamburger span:nth-child(1) {
    top: 0;
}
  
.hamburger span:nth-child(2) {
    margin: 6px 0;
}
  
.hamburger span:nth-child(3) {
    top: 0;
} 
/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
    transform: translateX(0);
}
  
.hamburger.active span:nth-child(1) {
    top: 5px;
    transform: rotate(45deg);
}
  
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
  
.hamburger.active span:nth-child(3) {
    top: -9px;
    transform: rotate(-45deg);
} 

.main {
    overflow: hidden;
}

.maintitle {
    position: relative;
}

.mainCaption__txt {
    padding: 0 30px;
    color: #1E1D1D;
    font-size: 1.6rem;
    line-height: 1.8;
}
.mainVisual {
    position: relative;
}
/*ファーストビューの文字*/
.mainVisual__copy {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    writing-mode: vertical-rl;
    font-feature-settings: "pkna";
    text-orientation: upright;
    text-align: justify;
    font-size: 3.9rem;
    white-space: nowrap;
    line-height: 1.2;
    letter-spacing: 0.05em;
    color: rgba(105, 90, 0,.9);
    font-family: "Hiragino Mincho ProN";
    -webkit-text-stroke-color: rgba(102, 68, 50, 0.20);
}
@media screen and (min-width: 768px) {
    .mainVisual__copy {
        font-size: 4.8rem;
    }
}
 
/* スグ食べが選ばれる３つの理由 */
.section--reason__inner {
    padding-top: 26px;
    padding-bottom: 47px;
    background-image: url(../images/reasonback.png);
}
.section--reason {
    margin: 0 auto;
}
.section--reason__heading {
    margin-top: 0;
}
.reason {
    margin-top: 40px;
}
.reason__item {
    background-image: url(../images/navback.png);
    background-size: 110%;
    background-position: 0 0;
    box-shadow: 0px 0px 4px 4px rgba(102, 68, 50, 0.10);
    width: calc(100% - 27px);
    padding-block: 53px 41px;
    padding-inline: 62px 41px;
    position: relative;
}
.reason__item:nth-child(2) {
    margin-inline: auto 0;
    padding-block: 46px 26px;
    padding-inline: 31px 72px;
}
.reason__ttl {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    color: #518103;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.6em;
    position: absolute;
    top: 24px;
    left: 22px;
}
.reason__ttl__right {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    color: #518103;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.8em;
    position: absolute;
    top: 27px;
    right: 22px;
}
.reason__content {
    color: #1E1D1D;
    font-size: 1.6rem;
    line-height: 1.8;
    margin-top: 16px;
    letter-spacing: 0;
}
.reason {
    display: flex;
    flex-direction: column;
    gap: 60px;
}


/* １回限り！少量お試しセット */
.section--order {
    padding: 0 30px;
}
.order__ttl {
    color: #695A00;
    -webkit-text-stroke-color: rgba(102, 68, 50, 0.20);
    font-size: 2rem;
    font-weight: 700;
    margin-top: 80px;
}
.set__ttl {
    color: #1E1D1D;
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 32px;
}
.value {
    color: #E36720;
    font-size: 1.6rem;
    font-weight: 500;
}
.people {
    color: rgba(30, 29, 29, 0.60);
    font-size: 1.2rem;
    font-weight: 500;
}
.photo {
    margin-top: 26px;
    width: 250px;
    height: 250px;
}
.decoration {
    position: relative;
    line-height: 80px;
    font-weight: 600;
    font-size: 1.8rem;
    width: fit-content;
    margin-inline: auto;
}
.decoration p {
    position: absolute;
    width: 80px;
    height: 80px;
    color: #1E1D1D;
    background-color: #FEF6EC;
    border-radius: 50%;
    top: 16%;
    right: -29%;
    transform: translate(-50%,-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (min-width: 900px) {
    .photo {
        width: 400px;
        height: 400px;
    }
    .decoration p {
        width: 110px;
        height: 110px;
        font-size: 2.3rem;
        top: 9%;
        right: -22%;
        transform: translate(-50%,-50%);
    }  
}

/* 食べてわかった、この違い */
.section--different{
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}
.different__ttl {
    color: #695A00;
    -webkit-text-stroke-color: rgba(102, 68, 50, 0.20);
    font-size: 2rem;
    font-weight: 700;
    margin-top: 80px;
    letter-spacing: 0.15em;
}
.different__ttl::after {
    content: url(../images/leaf.png);
    transform: scale(0.5);
    position: absolute;
    top: -140px;
    right: -120px;
}
.dif__ttl {
    color: #1E1D1D;
    font-size: 1.8rem;
    font-weight: 400;
    margin-top: 43px;
}
.prefecture {
    color: rgba(30, 29, 29, 0.60);
    font-size: 1.4rem;
    font-weight: 600;
}
.different__content {
    color: #1E1D1D;
    font-size: 1.6rem;
    margin-top: 18px;
}
.different__img {
    margin-top: 15px;
}
.different01 {
    position: relative;
}
.different01 ::after {
    content: "";
    display: block;
    background-image: url(../images/leaf.png);
    background-size: 100% 84.4%;
    background-repeat: no-repeat;
    position: absolute;
    width: 129px;
    aspect-ratio: 1 / 1;
    top: 100%;
    left: -80px;
}
.different02 {
    position: relative;
}
.different02 ::after {
    content: "";
    display: block;
    background-image: url(../images/leaf.png);
    background-size: 100% 84.4%;
    background-repeat: no-repeat;
    position: absolute;
    width: 129px;
    aspect-ratio: 1 / 1;
    top: 95%;
    right: -80px;
}
.different03 {
    position: relative;
}
.different03 ::after {
    content: "";
    display: block;
    background-image: url(../images/leaf.png);
    background-size: 100% 84.4%;
    background-repeat: no-repeat;
    position: absolute;
    width: 129px;
    aspect-ratio: 1 / 1;
    top: 100%;
    left: -80px;
} 

/* スグ食べの品質保証 */
.section--guarantee {
    /* background-image: url(../images/broccoli.png),url(../images/nasubi.png), url(../images/tomato.png);
    background-size: 237px 179px;
    background-position: right top, left center, right bottom;
    background-repeat: no-repeat; */
    background: url(../images/broccoli.png) no-repeat calc(100% + 50px) 17% / 237px 179px,url(../images/nasubi.png) no-repeat calc(0% - 30px) 57% / 205px 153px,url(../images/tomato.png) no-repeat 100% 100% / 170px 186px;
    padding: 60px 30px;
}
.gua__content {
    color: #1E1D1D;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.01em;
    margin-top: 40px;
}
.orange {
    color: #E36720;
}

/* 私たちの野菜、こんなにおいしいんです */
.section--farmer {
    padding: 0 30px;
}
.farmer01,.farmer02 {
    display: inline-block;
    width: 122px;
    height: 121px;
    margin-top: 40px;
}
.fa__ttl {
    display: inline-block;
    vertical-align: middle;
    color: #1E1D1D;
    font-size: 1.6rem;
    font-weight: 500;
}
.fa__small {
    color: rgba(30, 29, 29, 0.80);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.8;
}
.fa__content {
    color: #1E1D1D;
    font-size: 1.6rem; 
    border-radius: 20px;
    background-color: #B9D08B;
    padding: 32px 10px;
}

/* 日本のオーガニック農家 */
.section--organic {
    padding: 60px 0 70px;
    /* padding: 22px 0 24px; */
    background-image: url(../images/organic.png);
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    margin-top: 80px;  
}
.organic__ttl{
    color: #FFF;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.15em;
}
.organic__ttl__small {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 80px;
}

.organic__content {
    padding: 0 30px;
    margin-top: 33px;
    color: #FFF;
    font-size: 1.6rem;
    font-weight: 500;
    max-width: 400px;
    margin-inline: auto;
}
.organic {
    color: #FFF;
    font-size: 1.6rem;
    font-weight: 700;
}

/* よくあるご質問 */
.section--question {
    margin-top: 80px;
}
.question {
    padding: 0 30px;
}
.section--question::before {
    content: "";
    display: block;
    background-image: url(../images/tomatoline.png);
    background-size: 371px 45px;
    background-repeat: repeat-x;
    width: 100%;
    height: 55px;
}
.section--question::after {
    content: "";
    display: block;
    background-image: url(../images/tomatoline.png);
    background-size: 371px 45px;
    background-repeat: repeat-x;
    width: 100%;
    height: 55px;
}
.section--question__ttl {
    margin-top: 30px;
    color: #695A00;
    -webkit-text-stroke-color: rgba(102, 68, 50, 0.20);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}
.first_line {
    margin-top: 30px;
    border-top: 1px solid;
    color: rgba(0, 0, 0, 0.20); 
}
.line {
    margin-bottom: 24px;
    border-top: 1px solid;
    color: rgba(0, 0, 0, 0.20); 
  }
.question__ttl {
    margin-top: 30px;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-color: rgba(0, 0, 0, 0.20); 
    padding: 10px;
    color: #1E1D1D;
    font-size: 1.6rem;
    font-weight: 500;
    display: flex;
    gap: 4px;
}
.question__ttl02 {
    margin-top: 30px;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-color: rgba(0, 0, 0, 0.20); 
    padding: 10px;
    color: #1E1D1D;
    font-size: 1.6rem;
    font-weight: 500;
    display: flex;
    gap: 10px; 
}
.question__content {
    margin-top: 28px;
    text-align: left;
    color: #1E1D1D;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 63px;
}
.green {
    color: #518103;
    font-size: 1.6rem;
    font-weight: 700;
}
.question dt::before,
.question dd::before {
  color: #518103;
  font-weight: 500;
  font-size: 1.2rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  width: 24px;
  height: 24px;
  clip-path: circle(50% at 50% 50%);
  position: relative;
  top: 2px;
}
.question dt::before {
  content: 'Q';
  background: #B9D08B;;
}
.question dt::after,
.question dd::after {
  position: absolute;
  top: 7px;
  width: 10px;
  height: 10px;
  content: '';
  clip-path: polygon(100% 53%, 0 0, 0 100%);
}
/*フッター */
.footer {
    background-image: url(../images/washifooterback.png);
    padding: 13px 103px 26px;
}
.footer__logo {
    width: 170px;
    margin: 0 auto;
}
.copy {
    margin-top: 30px;
}
