@import url('https://fonts.googleapis.com/css2?family=Afacad:ital,wght@0,400..700;1,400..700&family=Zen+Maru+Gothic:wght@400;500;700&display=swap');

*, *::after, *::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  border: none;
  scroll-behavior: smooth;
}

body{
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    color: #2C1A0C;
    position: relative;
    line-height: 2;
    background-color: #D9E49D;
}

a{
    cursor: pointer;
    text-decoration: none;
    color: #000000;
    transition: all 0.3s ease;
}

a:hover{
    opacity: 0.8;
}

img{
    width: 100%;
}

header{
    width: 100%;
    padding-right: 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background-color: #fffff0;
}

.header-logo img{
    max-width: 288px;
    object-fit: contain;
}

nav{
    display: flex;
    height: 70px;
    background-color: #ffffff;
    border-radius: 14px;
    padding-left: 2rem;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
}

.nav-links{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: #000000;
}

.nav-link{
    border-right: 1px solid #ccc;
    padding-right: 1.5rem;
}

.nav-link a{
    transition: all 0.3 ease;
}

.nav-link a:hover{
    font-weight: 500;
}

.nav-link:nth-last-child(1){
    border-right: none;
    margin-right: 1.5rem;
}

.contact-btn{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background-color: #DC782A;
    color: #ffffff;
    border-radius: 0 14px 14px 0;
}

.contact-btn img{
    width: 33px;
    object-fit: contain;
    margin-right: 10px;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    border-radius: 5px;
    background: #333;
    margin: 3px 0;
    transition: 0.4s;
    display: block;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-7px, 7px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.close-menu {
    display: none;
}


.main-visual img{
    /* height: 95vh; */
    object-fit: cover;
    background-color: #fffff0;
}

.sp-mv{
    display: none;
}

.main-visual{
    position: relative;
    z-index: -1;
}

#main-visual-title{
    max-width: 35%;
    object-fit: contain;
    position: absolute;
    bottom: 25%;
    right: 7%;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease, transform 1s ease;
    border-radius: 10px;
}

#main-visual-title.active{
    opacity: 1;
    transform: translateX(0);
}

.side-btn{
    position: fixed;
    right: 0;
    bottom: 5%;
    width: 50px;
    object-fit: contain;
    z-index: 2;
}

.certified-section{
    width: 100%;
    background-color: #EBE2A0;
    margin-top: 1rem;
}

.certified-wrapper-sp{
    display: none;
}

.certified-section > .curve-img{
    width: 100%;
    object-fit: cover;
}

.sp-curve-img{
    display: none;
}

.certified-wrapper,
.features-section-wrapper,
.product-wrapper,
.works-wrapper,
.process-wrapper,
.price-wrapper,
.msg-wrapper,
.contact-wrapper{
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.curve-img,
.flower-field{
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.certified-wrapper.active,
.features-section-wrapper.active,
.product-wrapper.active,
.works-wrapper.active,
.process-wrapper.active,
.price-wrapper.active,
.msg-wrapper.active,
.contact-wrapper.active,
.curve-img.active,
.flower-field.active{
    opacity: 1;
    transform: translateY(0);
}

.certified-wrapper{
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-top: -3%;
    margin-bottom: 3%;
}

.certified-logos{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.certified-logos img{
    max-width: 267px;
    margin-top: -74px;
}

.certify-content{
    display: flex;
    flex-direction: column;
    gap: 26px;
    justify-content: space-between;
}

.certify-para{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.certify-para p{
    font-weight: 500;
    font-size: 18px;
}

.certify-content img{
    max-width: 528px;
    object-fit: contain;
}

.certify-link{
    width: 100%;
    max-width: 245px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #EDC04F;
    border-radius: 20px;
    color: #106025;
    padding: 0 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-left: auto;
}

.certify-link:hover{
    background-color: #ffca45;
}

.green-dot{
    display: block;
    background-color: #106025;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    margin-left: 1rem;
}

.features-section{
    width: 100%;
    background-color: #fffff0;
}

.features-content-wrapper{
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.features-section-wrapper{
    padding-top: 5%;
    margin-top: -12px;
}

.features-content{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.features-content > .features-title-img{
    display: none;
}

.sp-title{
    display: none;
}

.features-title img{
    max-width: 563px;
    object-fit: contain;
}

.features-title-img{
    max-width: 230px;
    object-fit: contain;
}

.feature-cards{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 5%;
}

.feature-card{
    flex: 1 1 320px;
    width: 100%;
    position: relative;
    padding: 1.5rem;
    border-radius: 30px;
}

.card-num{
    position: absolute;
    right: 10px;
    top: 10px;

    width: 50px;
    height: 50px;
    border-radius: 35px;
    background-color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
}

.yellow-card{
    background-color: #F7F1C7;
}

.yellow-card .card-num{
    color: #d79a00;
}

.green-card{
    background-color: #E4F3D3;
}

.green-card .card-num{
    color: #528927;
}

.pink-card{
    background-color: #FAEDF1;
}

.pink-card .card-num{
    color: #CD4386;
}

.feature-card-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.feature-card-img{
    height: 90px;
    object-fit: contain;
}

.feature-card-title{
    font-weight: 500;
    line-height: 1.5;
}

.product-section{
    width: 100%;
    background-color: #D1E8C2;
    margin-top: -12px;
}

.product-wrapper{
    padding-bottom: 5%;
}

.product-title-wrapper{
    position: relative;
    display: flex;
    align-items: flex-start;
}

.product-title img{
    max-width: 700px;
    object-fit: contain;
}

.product-title h2{
    position: relative;
    z-index: 1;
    font-size: 36px;
}

.green-box-txt{
    max-width: fit-content;
    font-size: 24px;
    font-weight: 500;
    background-color: #469D0D;
    color: #ffffff;
    border-radius: 10px;
    padding: 0.5rem 1.5rem;
    margin: 3rem 0 1.5rem 0;
}

.product-cards-wrapper{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.why-organic{
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 5%;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 3.5rem 2rem 3rem 2rem;

    display: flex;
    flex-direction: column;
}

.why-organic > .green-box-txt{
    max-width: fit-content;
    position: absolute;
    top: -80px;
    left: 30px;
}

.green-box-txt > .green-color-txt{
    color: #FFDD00;
}

.product-center-title{
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin: 1.5rem 0;
}

.points-wrapper{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.point-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 4px 4px 10px #d1e8c2a2;
    border-radius: 10px;
    padding: 1.5rem;
    background-color: #f7f7f7;
}

.point-title{
    display: flex;
    align-items: center;
    gap: 5px;
    color: #106025;
    font-weight: 500;
}

.point-title p{
    font-size: 26px;
}

.dash-line{
    height: 1px;
    display: block;
    background-color: #2C1A0C;
    width: 20px;
}

.point-line{
    height: 100%;
    width: 5px;
    background-color: #ccc;
}

.point-card img{
    max-width: 630px;
    max-height: 268px;
    object-fit: contain;
}

.point-brown-title{
    font-size: 22px;
    color: #2C1A0C;
    font-weight: 500;
}

.down-arrow{
    max-width: 355px;
    margin: 5rem auto;
    object-fit: contain;
}

.points-big-title{
    position: relative;
    width: 100%;
    font-size: 24px;
    text-align: center;
    font-weight: 500;
    background-color: #FFD977;
    padding: 10px 0;
    border-radius: 0 10px 10px 10px;
}

.points-rectangle-shape{
    margin: 1rem auto;
    border: 2px solid #ECB200;
    padding: 1rem 5%;
    border-radius: 15px;
}

.check{
    position: absolute;
    left: 0;
    top: -39px;
    padding: 5px 15px 10px 15px;
    border-radius: 10px 10px 0 0;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: #DA9100;
    line-height: 1;
}

.check img{
    width: 20px;
    margin-top: 5px;
    object-fit: contain;
}

.plants-list{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.plants-list li{
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 20px;
}

.plants-list li > small{
    margin-top: 4px;
}

.plants-list li img{
    width: 20px;
    object-fit: contain;
}

.why-organic-2 .green-box-txt{
    margin-bottom: 1rem;
}

.why-organic-2-wrapper{
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background-color: #ffffff;
    border-radius: 10px;
}

.reason h4{
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pink-dot{
    display: block;
    width: 5px;
    height: 5px;
    background-color: #E4006E;
    border-radius: 50%;
}

.reason .bullet-points > li{
    font-size: 14px;
    margin-left: 2rem; 
}

.bullet-points li::marker{
    font-size: 10px;
}

.reason-one{
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.reason h4{
    color: #E4006E;
}

.reason-img{
    max-width: 180px;
    object-fit: contain;
}

.point-link{
    max-width: 562px;
    margin: 0 auto;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #EDC04F;
    border-radius: 20px;
    color: #106025;
    padding: 0 2rem;
    font-weight: 500;
}

.pdf-txt{
    font-size: 14px;
    text-align: center;
    margin-top: 1rem;
}

.works-section{
    width: 100%;
    margin-top: -12px;
    background-color: #fffff0;
    padding-top: 3%;
}

.youtube-videos{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    height: 45vh;
    margin: 0 auto;
    margin-top: 2rem;
}

.youtube-videos iframe{
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.works-title img{
    max-width: 445px;
    object-fit: contain;
}

.works-para{
    margin-right: auto;
}

.voice-cards{
    margin-top: 5%;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.voice-card{
    flex: 1;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
}

.voice-card img{
    border-radius: 15px 15px 0 0;
}

.voice-content{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    padding: 1rem;
    border-radius: 0 0 15px 15px;
    flex: 1;
}

.farmer-info{
    position: absolute;
    width: 120px;
    height: 120px;
    padding-top: 10px;
    border-radius: 100px;

    display: flex;
    flex-direction: column;
    gap: -10px;
    align-items: center;

    top: -40px;
    z-index: 0;
}

.voice-content .farmer{
    font-weight: 500;
}

.yellow-card .prefecture,
.yellow-card .voice-content{
    color: #8F8641;
    background-color: #F7F1C7;
}

.yellow-card .voice-content .farmer-info{
    background-color: #F7F1C7;
}

.green-card .prefecture,
.green-card .voice-content{
    color: #678D3C;
    background-color: #E4F3D3;
}

.green-card .voice-content .farmer-info{
    background-color: #E4F3D3;
}

.pink-card .prefecture,
.pink-card .voice-content{
    color: #955068;
    background-color: #FAEDF1;
}

.pink-card .voice-content .farmer-info{
    background-color: #FAEDF1;
}

.voice-card .farmer-msg,
.voice-card .farmer{
    color: #2C1A0C;
}

.farmer-msg{
    position: relative;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.farmer-msg-wrapper {
    position: relative;
    margin-top: 30px;
}

.farmer-msg {
    line-height: 1.8;
    font-size: 14px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.farmer-msg.collapsed {
    max-height: 126px;
}

.read-more-btn {
    cursor: pointer;
    font-size: 14px;
    display: inline-block;
    font-weight: 500;
    transition: color 0.3s;
    user-select: none;
}

.read-more-btn:hover {
    color: #2C1A0C;
    text-decoration: underline;
}

.japan-map{
    max-width: 400px;
    object-fit: contain;
    margin-top: -130px;
}

.process-section{
    width: 100%;
    margin-top: -12px;
    background: linear-gradient(to bottom, #c5b28b, #DCD1BB);
}

.process-title img{
    max-width: 742px;
    object-fit: contain;
}

.process-cards{
    margin: 7% auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.process-card{
    max-width: 276px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.process-title{
    display: flex;
    align-items: center;
    gap: 10px;
}

.process-num{
    font-size: 30px;
    font-weight: 500;
    width: 70px;
    height: 70px;
    border-radius: 50px;
    background-color: #2C1A0C;
    color: #BBA271;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-title h3{
    font-size: 30px;
    font-weight: 500;
    color: #49270A;
}

.process-title h3 > small{
    font-size: 14px;
}

.process-card p > .small{
    display: inline-block;
    font-size: 14px;
    line-height: 2;
}

.process-card img{
    height: 155px;
    max-width: 90%;
    margin: 0 auto;
    object-fit: contain;
}

.grid-sp{
    display: none;
}

.price-section{
    width: 100%;
    margin-top: -12px;
    background-color: #fffff0;
}

.price-section > img:nth-last-child(1){
    padding-top: 7%;
}

.price-title img{
    max-width: 450px;
    object-fit: contain;
}

.price-img{
    margin: 2rem 0;
}

.price-section .curve-img{
    margin-top: 5%;
}

.msg-section{
    width: 100%;
    margin-top: -12px;
    background: linear-gradient(to bottom, #ecfffc 0%, #ecfffc 30%, #FBFFE2 100%);
}

.msg-title{
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.msg-wrapper{
    margin-top: -15%;
}

.msg-title > .eng-title{
    font-family: 'Afacad', sans-serif;
    text-align: center;
    font-size: 28px;
    position: relative;
    opacity: 100%;
    top: 0;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    color: #92B7B7;
}

.msg-title h3{
    font-size: 30px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    text-align: center;
    margin: 0 auto;
    margin-top: -20px;
    padding-left: 7%;
}

.msg-title h3 > br{
    display: none;
}

.msg-title h3 span img{
    width: 70px;
    object-fit: contain;
}

.msg-content{
    margin-top: 3%;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.msg-para{
    font-size: 20px;
}


.contact-section{
    width: 100%;
    margin-top: -12px;
    background-color: #D9E49D;
    position: relative;
    padding: 3% 0;
}

.contact-title img{
    max-width: 836px;
    object-fit: contain;
}

.flower-field{
    position: absolute;
    z-index: 0;
    left: 5%;
    bottom: -50%;

    width: 250px;
    object-fit: contain;
}

.contact-grid{
    position: relative;
    z-index: 1;
    margin-top: 5%;
    display: grid;
    grid-template-columns: 1fr 1fr 0.5fr;
    gap: 1rem;
}

.contact-link{
    /* max-width: 368px; */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 16px;
    color: #ffffff;
    padding: 2rem 1rem;
}

.contact-link p{
    font-size: 22px;
}

.red-link{
    background-color: #E06161;
}

.green-link{
    background-color: #4DAB94;
}

.green-link img{
    width: 80%;
    object-fit: contain;
}

.contact-link:nth-last-child(1){
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0;
}

.contact-link-btn{
    font-size: 18px;
    font-weight: 500;
    font-family: 'Afacad', sans-serif;
    width: 100%;
    max-width: 230px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #E06161;
    background-color: #FFEAF1;
    border-radius: 16px;
    padding: 5px 2rem;
}

.contact-link-btn .green-dot{
    background-color: #E06161;
}

.contact-link small{
    font-size: 14px;
    margin-top: -16px;
}

.news-link, .doc-link{
    width: 228px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
}

.news-link img, 
.doc-link img{
    height: 34px;
    object-fit: contain;
}

.news-link{
    width: 100%;
    background-color: #DDA83F;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    height: 100%;
    color: #ffffff;
    font-size: 14px;
}

.news-link span{
    line-height: 1.5;
    font-weight: 500;
    display: grid;
    grid-template-columns: 1fr 34px;
    gap: 5px;
}


.doc-link{
    background-color: #4DAB69;
}


footer {
    width: 100%;
    position: relative;
    background: #E4F0F5;
    padding-top: 118px;
    clip-path: ellipse(55% 80% at 50% 80%);
    margin-top: 5%;
}

.footer-wrapper{
    background-color: #E4F0F5;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.footer-logos{
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    border-bottom: 1px solid #ccc;
    padding-bottom: 1rem;
}

.organic-footer-logo{
    max-width: 232px;
    object-fit: contain;
}

.footer-logo-line{
    display: block;
    width: 1px;
    height: 40px;
    background-color: #000000;
}

.east-logo{
    max-width: 332px;
    object-fit: contain;
}

.footer-links{
    list-style: none;
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 7%;
}

.footer-links-wrapper{
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

.footer-links li a{
    font-size: 24px;
    line-height: 1;
    color: #5a5a5a;
    transition: all 0.3s ease;
}

.footer-links li a:hover{
    padding-bottom: 5px;
    border-bottom: 1px solid #5a5a5a;
}

.apple-img{
    width: 20px;
    height: 25px;
    object-fit: contain;
}

.address-content{
    width: 100%;
    height: 100%;
    background-color: #E4F0F5;
}

.footer-address{
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    color: #5a5a5a;
    text-align: center;

}

.address{
    text-decoration: none;
}

.bold-text{
    font-weight: 700;
}

.bold-text br:nth-child(1){
    display: none;
}

.copyright{
    font-size: 12px;
    padding-bottom: 1rem;
}

@media (min-width: 1662px) {
    .certified-section{
        margin-top: 2rem;
    }
}

@media (min-width: 851px) and (max-width: 1166px) {

    header{
        padding-right: 3%;
    }

    .header-logo img{
        max-width: 234px;
    }

    .nav-link a{
        font-size: 14px;
    }

    .nav-links{
        gap: 14px;
    }

    .nav-link{
        padding-right: 14px;
    }

    .nav-link:nth-last-child(1){
        margin-right: 14px;
        padding-right: 0;
    }

    nav{
        padding-left: 14px;
        height: 55px;
    }
    
    .contact-btn{
        font-size: 14px;
        padding: 10px;
    }

    .contact-btn img{
        width: 20px;
        margin-right: 5px;
    }

    .certified-section{
        margin-top: 7px;
    }
}

@media (max-width: 850px){
    header{
        position: fixed;
        z-index: 9;
    }

    .header-logo{
        height: auto;
    }

    .header-logo img{
        max-width: 180px;
        height: auto;
        margin-right: auto;
    }
            .burger-menu {
                display: flex;
            }

            nav {
                position: fixed;
                top: 0;
                right: -70%;
                width: 70%;
                height: 100vh;
                background: #fff;
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                gap: 20px;
                transition: right 0.3s ease-in-out;
                box-shadow: -2px 0 10px rgba(0,0,0,0.1);
                z-index: 1;
                padding-left: 0;
                padding-top: 20%;
            }

            .nav-link:nth-last-child(1) {
                margin-right: 0;
            }

            nav.active {
                right: 0;
            }

            .nav-links {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }

            .nav-link{
                border-right: 0;
                width: 100%;
                text-align: center;
                padding-right: 0;
            }

            .close-menu {
                display: block;
            }

            nav.active ~ .burger-menu {
                position: fixed;
                top: 20px;
                right: 20px;
                z-index: 1001;
            }

            .contact-btn{
                border-radius: 14px;
                height: auto;
            }

        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0,0,0,0.5);
            z-index: 2;
        }

        .overlay.active {
            display: block;
        }

    main{
        padding-top: 62px;
    }

    .main-visual img{
        height: auto;
    }

    .curve-img{
        display: none;
    }

    .sp-curve-img{
        display: block;
    }

    /* .certified-wrapper,
    .features-wrapper,
    .product-wrapper,
    .works-wrapper,
    .process-wrapper,
    .price-wrapper,
    .msg-wrapper,
    .contact-wrapper{
        max-width: 90%;
        margin: 0 auto;
    } */

    .certified-section{
        padding-top: 5%;
        margin-top: -20px;
    }

    .certified-wrapper{
        display: none;
    }

    .certified-wrapper-sp{
        width: 90%;
        margin: 0 auto;
        display: block;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 7%;
    }

    .pc-mv{
        display: none;
    }

    .sp-mv{
        display: block;
    }

    #main-visual-title{
        display: none;
    }

    .certified-wrapper-sp img{
        max-width: 200px;
        object-fit: contain;
    }

    .certified-wrapper-sp h2{
        display: flex;
        justify-content: center;
    }

    .certified-wrapper-sp h2 img{
        width: 80%;
        max-width: 400px;
        margin: 0 auto;
    }

    .certified-logos img{
        margin-top: 0;
    }

    .certified-wrapper{
        grid-template-columns: 1fr;
        gap: 0;
    }

    .certified-content{
        align-items: center;
    }

    .features-section-wrapper{
        padding-bottom: 7%;
    }

    .features-content-wrapper{
        margin-top: 1rem;
        flex-direction: column;
    }

    .features-title img{
        max-width: 300px;
    }

    .features-content{
        gap: 1.5rem;
        align-items: flex-start;
    }

    .features-content-wrapper > .features-title-img{
        display: none;
    }
    
    .features-content > .features-title-img{
        display: block;
    }

    .pc-title{
        display: none;
    }

    .sp-title{
        display: block;
        max-width: 300px;
        margin-right: auto;
        height: 60px;
        object-fit: contain;
        margin-bottom: 1.5rem;
    }

    .japan-map{
        display: none;
        max-width: 100%;
    }

    .works-title img{
        max-width: 242px;
        margin-bottom: 10px;
    }

    .youtube-videos{
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, 340px);
        height: auto;
    }

    .voice-cards{
        flex-direction: column;
    }

    .features-title h2{
        font-size: 24px;
    }

    .features-title-img{
        margin-top: 0;
        margin-left: auto;
        margin-right: auto;
    }

    .product-wrapper{
        padding-bottom: 10%;
    }

    .product-title{
        padding-top: 1.5rem;
    }

    .product-title img{
        max-width: 300px;
    }

    .product-title-illu {
        display: none;
    }

    .green-box-txt{
        margin-top: 1rem;
        font-size: 18px;
        line-height: 1.5;
        padding: 12px;
    }

    .product-center-title{
        margin-top: 0;
    }

    .why-organic{
        max-width: 100%;
        margin-top: 15%;
        padding: 3.5rem 1.5rem 1rem 1.5rem;
    }

    .why-organic > .green-box-txt{
        top: -18px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .why-organic-2-wrapper{
        padding: 1rem;
    }

    .product-cards-wrapper{
        grid-template-columns: 1fr;
    }

    .product-center-title{
        font-size: 18px;
    }

    .points-wrapper{
        grid-template-columns: 1fr;
    }

    .point-line{
        height: 1px;
        width: 100%;
    }

    .point-title p{
        font-size: 20px;
    }

    .point-brown-title{
        font-size: 20px;
        line-height: 1.5;
    }

    .point-card{
        gap: 5px;
    }

    .reason{
        margin-left: 0;
    }

    .reason-one{
        flex-direction: column;
        align-items: center;
    }

    .check{
        top: -34px;
    }

    .points-big-title{
        font-size: 18px;
        padding: 10px;
    }

    .points-rectangle-shape{
        width: 100%;
    }

    .plants-list{
        flex-direction: column;
    }

    .plants-list li{
        font-size: 18px;
    }

    .plants-list li > small{
        margin-left: 1.5rem;
    }

    .point-link{
        height: 72px;
        line-height: 1.5;
    }

    .reason .bullet-points > li {
        margin-left: 1.5rem;
    }

    .process-wrapper{
        padding-bottom: 7%;
    }

    .process-title-illu{
        display: none;
    }

    .process-title{
        padding-top: 1.5rem;
    }

    .process-title img{
        max-width: 300px;
        margin-bottom: 0;
    }

    .process-card{
        max-width: 100%;
    }

    .process-cards{
        gap: 1rem;
    }

    .process-num{
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .process-title h3{
        font-size: 24px;
    }

    .grid-pc{
        display: none;
    }

    .grid-sp{
        display: block;
    }

    .price-title img{
        max-width: 190px;
    }

    .price-title .sp-title{
        max-width: 190px;
        margin-bottom: 0;
    }

    .price-wrapper{
        padding-top: 2rem;
    }

    .price-img{
        margin: 2rem 0 10px 0;
    }

    .msg-title h3{
        font-size: 24px;
        line-height: 1.5;
        text-align: left;
        margin-top: 0;
    }

    .msg-title h3 > br{
        display: block;
    }

    .msg-content{
        grid-template-columns: 1fr;
    }

    .msg-para{
        font-size: 16px;
        margin-bottom: 1.5rem;
    }

    .msg-img{
        width: 90%;
        max-width: 300px;
        margin: 0 auto;
    }

    .msg-title h3 span img{
        width: 40px;
        margin-top: -20px;
    }

    .contact-section{
        padding: 10% 0;
    }

    .contact-title img{
       max-width: 300px;
    }

    .contact-grid{
        grid-template-columns: 1fr;
    }

    .contact-link{
        max-width: 100%;
    }

    .news-link{
        height: 100px;
    }

    .news-link,
    .doc-link{
        width: 100%;
    }

    .news-link span{
        font-size: 20px;
        align-items: center;
    }

    .flower-field{
        display: none;
    }

    footer{
        clip-path: ellipse(115% 80% at 50% 80%);
        padding-top: 72px;
    }

    .footer-logos{
        padding-bottom: 2rem;
    }

    .footer-curve-img{
        display: none;
    }

    .footer-wrapper{
        top: 0;
        gap: 2rem;
    }

    .footer-logos{
        flex-direction: column;
    }

    .organic-footer-logo{
        max-width: 200px;
    }

    .east-logo{
        max-width: 250px;
    }

    .footer-logo-line{
        height: 1px;
        width: 100px;
    }

    .footer-links-wrapper{
        display: none;
    }

    .footer-links{
        width: 90%;
    }

    .footer-address{
        width: 90%;
    }

    .bold-text br:nth-child(1){
        display: block;
    }

}

@media (min-width: 680px) and (max-width: 850px){

    .product-cards-wrapper{
        grid-template-columns: repeat(2, 1fr);
    }

    .voice-cards{
        flex-direction: row;
    }

    .grid-pc{
        display: block;
    }

    .grid-sp{
        display: none;
    }

    .process-card{
        flex: 1 1 276px;
        max-width: auto;
    }

    .msg-content{
        grid-template-columns: 1fr 2fr;
    }

    .msg-title h3 > br{
        display: none;
    }
}