@charset "UTF-8";

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 178px;
    width: 100%;
    background-color: #FFF;
    padding: 50px 100px;
}
.header h1 {
    text-align: left;
    min-width: 240px;
}
.header a {
    color: #000;
    text-decoration: none;
}
.header nav ul {
    display: flex;
    width: 100%;
    padding-right: 0px;
    margin-right: 0px;
    font-size: 2.8rem;
    line-height: 3.2rem;
}
.header nav ul li {
    margin-left: 20px;
}
.header__link-jp,
.header__link-us {
    white-space: nowrap;
}
.header__link-us {
    font-weight: 600;
}
.open-button, .close-button {
    display: none;
}

@media (max-width: 1160px) {
    .header {
        height: 60px;
        padding: 0 20px;
    }
    .header h1 {
        min-width: 140px;
    }
    .open-button {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
        width: 25px;
        height: 20px;
        cursor: pointer;
    }
    .open-button span, .open-button span::before, .open-button span::after {
        position: absolute;
        display: block;
        height: 3px;
        width: 25px;
        border-radius: 3px;
        background-color: #777;
        content: "";
    }
    .open-button span::before {
        bottom: -8px;
    }
    .open-button span::after {
        bottom: -16px;
    }
    .close-button {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        padding: 20px;
        color: #FFF;
        font-size: 20px;
        cursor: pointer;
    }
    .header nav {
        display: none;
        z-index: 1000;
        position: fixed;
        top: 0;
        left: 0;
        background-color: rgba(0,0,0,0.7);
        width: 70%;
        height: 100%;
        padding-top: 67px;
        box-shadow: 10px 10px 25px rgba(0,0,0,0.4);
    }
    .header nav ul {
        display: flex;
        flex-direction: column;
    }
    .header nav ul li {
        border-bottom: solid 1px rgba(255,255,255,0.5);
      }
      .header nav ul li:first-child {
        border-top: solid 1px rgba(255,255,255,0.5);
      }
      .header nav ul li a {
        font-weight: 600;
        line-height: 40px;
        vertical-align: middle;
        text-decoration: none;
        color: #FFF;
      }
    }

.section-intro__image {
    background-image: url("../images/vegetables_bag_01.jpg");
    height: 520px;
    margin: 0 100px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.section-intro__image-filter {
    display: flex;
    align-items: center;
    background-color: rgba(0,0,0,0.2);
    width: 100%;
    height: 100%;
}
.section-intro__image-message {
    width: 100%;
}
.section-intro__image-message h2 {
    font-size: 5.0rem;
    font-weight: 300;
    line-height: 7.5rem;
    color: #FFF;
    text-shadow:
        -1px 0 black,
        0 1px black,
        1px 0 black,
        0 -1px black;
}
.section-intro__text {
    font-size: 2.0rem;
    line-height: 4.0rem;
    padding: 30px 0;
}

@media (max-width: 1160px) {
    .section-intro__image {
        height: 270px;
        margin: 0;
    }
    .section-intro__image-message h2 span {
        display: block;
    }
}

@media (max-width: 800px) {
    .section-intro__image-message h2 {
        font-size: 2.8rem;
    }
    .section-intro__text {
        font-size: 1.8rem;
        line-height: 2.0rem;
        padding: 10px 20px;
    }
}

.order-button {
    position: relative;
    width: 700px;
    height: 90px;
    margin: auto;
}
.order-button a {
    width: 100%;
    height: 100%;
    text-decoration: none;
}
.order-button img {
    position: absolute;
    left: -10px;
    top: -10px;
    width: 120px;
}
.order-button__text {
    width: 100%;
    height: 100%;
    color: #FFF;
    font-size: 4.8rem;
    font-weight: 500;
    padding: 30px 0;
    background: linear-gradient(to bottom, #c30d23, #880d1e);
    border-radius: 10px;
    box-shadow: 3px 3px 10px #000;
}

@media (max-width: 800px) {
    .order-button {
        width: calc(100% - 40px);
        height: 100px;
        margin: auto 20px;
    }
    .order-button img {
        width: 70px;
        left: -15px;
        top: 15px;
    }
    .order-button__text {
        width: 100%;
        font-size: 3.2rem;
        line-height: 3.2rem;
        padding: 18px 0;
    }
    .order-button__text span {
        display: block;
    }
}

.section-reason {
    margin-top: 70px;
}
.section-reason ol {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 100px;
    text-align: left;
}
.section-reason ol li {
    height: 300px;
    min-width: 280px;
    margin: 0 3%;
}
.section-reason ol li h4 {
    font-size: 2.0rem;
    font-weight: 600;
    white-space: nowrap;
}
.section-reason ol li p {
    font-size: 1.6rem;
    line-height: 3.0rem;
    padding-top: 1rem;
}

@media (max-width: 1160px) {
    .section-reason {
        margin-top: 40px;
    }
    .section-reason ol {
        flex-direction: column;
        padding: 0 20px 30px 40px;
    }
    .section-reason ol li {
        height: 100%;
        margin: 20px 0 0;
    }
}

.section-try__image {
    background-image: url("../images/table-around.jpg");
    height: 800px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    vertical-align: bottom;
}
.section-try__image-filter {
    align-items: center;
    background-color: rgba(255,255,255,0.5);
    background-blend-mode: lighten;
    width: 100%;
    height: 100%;
}
.section-try__subtitle {
    font-size: 2.0rem;
    line-height: 4.0rem;
    border-bottom: solid 2px #000;
    padding: 16px 0 8px;
    width: 400px;
    margin: 0 auto;
}
.section-try h3 {
    font-size: 4.8rem;
    line-height: 7.4rem;
    white-space: nowrap;
}
.section-try ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 10px 100px 70px;
}
.section-try ul li {
    text-align: left;
    padding: 0 50px;
}
.section-try ul li p span {
    font-weight: 600;
}
.section-try ul li img {
    max-width: 500px;
}

@media (max-width: 1160px) {
    .section-try__image {
        height: auto;
    }
    .section-try__image-filter {
        height: auto;
        padding-bottom: 20px;
    }
    .section-try__subtitle {
        font-size: 1.8rem;
        line-height: 3.6rem;
        width: 340px;
    }
    .section-try h3 {
        font-size: 2.4rem;
        line-height: 4.8rem;
    }
    .section-try ul {
        flex-direction: column;
        padding: 0 0 20px;
    }
    .section-try ul li {
        padding: 0;
        margin: 0;
    }
    .section-try ul li h4 {
        padding: 20px 20px 0;
    }
    .section-try ul li p {
        padding: 0 20px;
    }
    .section-try ul li img {
        width: 100%;
    }
}

.section-quality {
    padding-top: 30px;
}
.section-quality__subtitle {
    font-size: 2.4rem;
    font-weight: 600;
    text-align: center;
    padding: 40px;
}
.section-quality__text {
    width: 770px;
    text-align: left;
    margin: 0 auto;
    font-size: 1.8rem;
    line-height: 3.6rem;
}

@media (max-width: 1160px) {
    .section-quality__subtitle {
        text-align: left;
        padding: 20px;
    }
    .section-quality__text {
        width: auto;
        margin: 0 20px;
        line-height: 2.4rem;
    }
}

.section-method {
    margin-top: 60px;
}
.section-method__subtitle {
    font-size: 1.6rem;
    padding-bottom: 6px;
}
.section-method__text {
    width: 770px;
    text-align: left;
    margin: 40px auto;
    font-size: 1.8rem;
    line-height: 3.6rem;
}
.section-method__h-line {
    height: 4px;
    width: 100%;
    padding: 0 100px;
}
.section-method h4 {
    font-size: 2.4rem;
    font-weight: 600;
    text-align: center;
    padding: 24px;
}
.section-method__cert-all-block ul {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
}
.section-method__cert-all-block > ul > li:not(:last-child) {
    border-right: solid 2px rgba(0,0,0,0.2);
}
.section-method__cert-semi-block > p {
    height: 48px;
    padding: 12px 0;
}
.section-method__cert-semi-block > p span {
    display: block;
}
.section-method__cert-block ul li {
    padding: 0 24px;
}
.section-method__no-cert,
.section-method__cert {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 160px;
    width: 160px;
    border-radius: 80px;
    font-size: 24px;
}
.section-method__no-cert {
    background-color: #fcd6db;
}
.section-method__cert {
    background-color: #aaffaa;
}
.section-method__no-cert > p,
.section-method__cert > p {
    font-size: 2.4rem;
    font-weight: 600;
}
.section-method__cert-text-block {
    background-color: #FFF;
    margin: 4px auto;
    width: 80%;
    font-size: 1.2rem;
    border: solid 1px #000;
}

@media (max-width: 1160px) {
    .section-method {
        margin-top: 20px;
    }
    .section-method__subtitle {
        font-size: 1.4rem;
    }
    .section-method__text {
        width: auto;
        margin: 20px;
        line-height: 2.4rem;
    }
    .section-method__h-line {
        width: 100%;
        padding: 0 20px;
    }
    .section-method h4 span {
        display: block;
    }
    .section-method__cert-all-block > ul {
        flex-direction: column;
        justify-content: center;
        margin: 0 20px;
    }
    .section-method__cert-all-block > ul > li {
        width: 100%;
        margin-bottom: 20px;
    }
    .section-method__cert-all-block > ul > li:not(:last-child) {
        border-right: none;
        border-bottom: solid 2px rgba(0,0,0,0.2);
    }
    .section-method__cert-semi-block > p span {
        display: none;
    }
    .section-method__cert-block ul li {
        padding: 0 4px;
    }
}

.section-farmer {
    margin-top: 60px;
}
.section-farmer__subtitle {
    font-size: 1.6rem;
    padding-bottom: 6px;
}
.section-farmer__listblock ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    text-align: left;
    margin-top: 60px;
}
.section-farmer__listblock ul li {
    width: 494px;
    margin: 0 40px;
}
.section-farmer__listblock img {
    width: 494px;
    vertical-align: bottom;
    padding: 10px 0;
}
.section-farmer__listblock h4 {
    font-size: 2.4rem;
    padding-bottom: 12px;
}
.section-farmer__listblock p {
    font-size: 1.6rem;
    padding: 0 0 8px;
}

@media (max-width: 1160px) {
    .section-farmer {
        margin-top: 20px;
    }
    .section-farmer__subtitle {
        font-size: 1.4rem;
    }
    .section-farmer__listblock ul {
        flex-direction: column;
        padding: 0 0 20px;
        margin-top: 20px
    }
    .section-farmer__listblock ul li {
        width: 100%;
        max-width: 540px;
        padding: 0;
        margin: 0;
    }
    .section-farmer__listblock img {
        width: 100%;
        max-width: 540px;
    }
    .section-farmer__listblock h4 {
        font-size: 2.0rem;
        padding-left: 20px;
    }
    .section-farmer__listblock p {
        padding: 0 20px 8px 20px;
    }
}

.section-user {
    margin-top: 60px;
}
.section-user__subtitle {
    font-size: 1.6rem;
    padding-bottom: 6px;
}
.section-user__listblock ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    text-align: left;
    margin-top: 60px;
}
.section-user__listblock ul li {
    padding: 0 14px;
}
.section-user__listblock img {
    width: 100%;
    max-width: 382px;
    vertical-align: bottom;
}
.section-user__msgblock {
    width: 320px;
    height: 250px;
    margin-left: auto;
    margin-right: auto;
}
.section-user__msgblock h4 {
    font-size: 2.4rem;
    padding: 24px 0;
}
.section-user__name {
    font-size: 2.0rem;   
    padding-bottom: 20px;
}
.section-user__text {
    font-size: 1.4rem;
    line-height: 1.4rem;
}

@media (max-width: 1160px) {
    .section-user {
        margin-top: 20px;
    }
    .section-user__subtitle {
        font-size: 1.4rem;
    }
    .section-user__listblock ul {
        flex-direction: column;
        padding: 0;
        margin-top: 20px;
    }
    .section-user__listblock ul li {
        padding: 0;
    }
        .section-user__listblock img {
        width: 100%;
        max-width: 540px;
    }
    .section-user__msgblock {
        width: 100%;
        height: 100%;
        max-width: 540px;
    }
    .section-user__msgblock h4 {
        font-size: 2.0rem;
        padding: 12px 0;
        padding-left: 20px;
    }
    .section-user__msgblock p {
        padding: 0 20px;
    }
    .section-user__name {
        font-size: 1.6rem;
        line-height: 2.4rem;
        margin-bottom: 16px;
    }
    .section-user__text {
        font-size: 1.6rem;
        line-height: 2.4rem;
        margin-bottom: 16px;
    }
}

.section-faq {
    margin-top: 60px;
}
.section-faq ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1120px;
    margin: 40px auto;
    list-style: none;
}
.section-faq ul li {
    border: dotted 2px rgba(0,0,0,0.4);
    margin: 10px 0;
}
.section-faq__q-block {
    display: flex;
}
.section-faq__a-block {
    margin-left: 120px;
    text-align: left;
}
.section-faq__q-mark {
    font-size: 3.0rem;
    font-weight: 600;
    padding: 20px;
}
.section-faq__a-mark {
    font-size: 3.0rem;
    font-weight: 600;
    padding: 10px 0;
}
.section-faq__q-message {
    font-size: 2.4rem;
    padding: 20px 160px 20px 0;
    font-weight: 600;
    margin: 0 0 20px 55px;
    width: 800px;
    text-align: left;
    border-bottom: dotted 2px rgba(0,0,0,0.4);
}
.section-faq__a-titleblock {
    display: flex;
}
.section-faq__a-title {
    font-size: 2.4rem;
    padding: 10px 0 0 60px;
}
.section-faq__a-message {
    padding: 10px 20px 10px 80px
}

@media (max-width: 1160px) {
    .section-faq {
        margin-top: 20px;
    }
    .section-faq ul {
        margin: 10px 20px;
    }
    .section-faq__a-block {
        margin-left: 20px;
    }
    .section-faq__q-message {
        font-size: 2.0rem;
        padding: 20px 0 20px 0;
        margin: 0 20px 20px 0;
    }
    .section-faq__a-title {
        font-size: 2.0rem;
        padding: 10px 0 0 20px;
    }
    .section-faq__a-message {
        padding: 10px 20px 10px 40px
    }
}

.inquiry-block {
    width: 100%;
    background-color: #ffe492;
    margin-bottom: 90px;
}
.inquiry-form {
    width: 1100px;
    padding: 50px 0px;
    margin: 0 auto;
    text-align: left;
}
.inquiry-form h3 {
    text-align: center;
    font-size: 3.6rem;
    padding: 40px 0;
}
.inquiry-form p {
    margin-bottom: 40px;
}
.inquiry-form input[type="text"],
.inquiry-form input[type="email"],
.inquiry-form textarea {
    display: inline-block;
    width: 400px;
    height: 40px;
    padding: 0 10px;
    border: solid 1px #777;
}
.inquiry-form textarea {
    height: 300px;
    width: 700px;
    padding: 10px;
}
.inquiry-form p label {
    display: inline-block;
    width: 300px;
    vertical-align: top;
    font-size: 3.0rem;
}
.inquiry-form__submit {
    display: block;
    max-width: 320px;
    width: 100%;
    height: 48px;
    background-color: #004bb1;
    color: #FFF;
    font-size: 2.4rem;
    border-radius: 48px;
    margin: 0 auto;
}
.inquiry-form__submit:hover {
    opacity: 0.5;
}

@media (max-width: 1160px) {
    .inquiry-block {
        margin-bottom: 34px;
    }
    .inquiry-form {
        width: auto;
        max-width: 700px;
        padding: 20px 20px;
        margin: 0 auto;
    }
    .inquiry-form h3 {
        font-size: 2.4rem;
        padding: 10px 0;
    }
    .inquiry-form p {
        margin-bottom: 10px;
    }
    .inquiry-form input[type="text"],
    .inquiry-form input[type="email"],
    .inquiry-form textarea {
        display: block;
        width: 100%;
        max-width: 400px;
    }
    .inquiry-form p label {
        display: block;
        margin-bottom: 10px;
        font-size: 2.0rem;
    }
    .inquiry-form textarea {
        width: 100%;
        max-width: 700px;
        margin-bottom: 20px;
    }
}

.footer {
    position: relative;
    height: 124px;
    width: 100%;
    background-color: #FFF;
}
.footer__copyright {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
}
