
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', Helvetica, sans-serif;
    background-color: white;
    color: #435243;
}

.container {
    /* display: flex; */
    flex-direction: row;
    justify-content: center;
    width: 1200px;
    margin: 0 auto;
}

.main-wrapper {
    width: 1000px;
    margin: 0 auto;
}
.sub-wrapper {
    width: 950px;
    margin: 0 auto;
}
.other-wrapper {
    width: 900px;
    margin: 5rem auto;
}
    .other-wrapper h1{
        margin-bottom: 10px;
    }
    @media (max-width: 900px) {
        .other-wrapper{
            width: 100%;
        }
    }

a{
    text-decoration: none;
}

/* Header Styles */
.header-wrapper {
    width: 100%;
    position: relative;
}

.header {
    height: 85px;
    background-color: #f6fdf2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.header-left {
    display: flex;
    align-items: center;
}

/* .logo-icon {
    width: 54px;
    height: 54px;
    background-image: url('/vector-5.svg');
    background-size: 100% 100%;
} */

.company-name {
    margin-left: 16px;
    font-family: "toppan-bunkyu-midashi-min-st", serif;
    font-weight: 900;
    font-style: normal;
    color: #014a01;
    font-size: 24px;
}
.company-name a{
    color: #014a01;
}

.header-right {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 80px;
}

.contact-btn {
    height: 46px;
    border: 1px solid #014a01;
    border-radius: 0;
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: 500;
    color: #014a01;
    font-size: 14px;
    background: #f6fdf2;
    padding: 10px 25px;
    cursor: pointer;
}

.line-btn {
    height: 46px;
    border: 1px solid #014a01;
    border-radius: 0;
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: 500;
    color: #014a01;
    font-size: 14px;
    background-color: #014a01;
    padding: 10px 25px;
    cursor: pointer;
    background: url(../images/line.png);
    background-repeat: no-repeat;
    background-position: 15%;
    background-size: 15%;
    padding-left: 45px;
}

.line-icon {
    width: 20px;
    height: 19.08px;
    vertical-align: bottom;
    margin-right: 10px;
}
.contact-btn:hover{
    background: #1E4A1E;
    color: #fff;
    cursor: pointer;
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
}
.line-btn:hover{
    background: #1E4A1E;
    color: #fff;
    cursor: pointer;
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
    background-image: url(../images/line1.png);
    background-repeat: no-repeat;
    background-position: 15%;
    background-size: 15%;
    padding-left: 45px;
}
.line-btn img:hover{
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
.nav-list li a{
    padding: 30px 15px;
}
.nav-list li a:hover{
    padding: 30px 15px;
}

.nav-link {
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: 500;
    color: #014a01;
    font-size: 14px;
    text-decoration: none;
    padding: 15px 0;
    background: none;
    border: none;
    cursor: pointer;
}
.nav-link:nth-child(-n+3){
    padding: 15px;
}
.nav-link:nth-child(-n+3):hover {
    color: #647964;
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
    background: #014a01;
    color: #fff;
}
.nav-link2{
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: 500;
    color: #014a01;
    font-size: 14px;
    text-decoration: none;
    /* padding: 15px 40px; */
    padding: 15px 15px;
    background: none;
    border: none;
    cursor: pointer;
}
.nav-link2:hover{
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
    background: #014a01;
    color: #fff;
}



/* Hero Section */
.hero-section {
    width: 100%;
    height: 60vh;
    background-image: url(../images/main.jpg);
    background-size: cover;
    background-position: 50% 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-family: "toppan-bunkyu-midashi-min-st", serif;
    font-weight: 900;
    font-style: normal;
    color: white;
    font-size: 32px;
    text-align: center;
    letter-spacing: 1px;
}

/* Market Cards */
.market-cards {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.market-card {
    width: 451px;
    height: 134px;
    display: flex;
}

.card-image {
    width: 96px;
    height: 134px;
    object-fit: cover;
}

.card-content {
    width: 353px;
    height: 134px;
    background-color: #457645;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    gap: 30px;
}
.card-content:hover{
    background: #1E4A1E;
    cursor: pointer;
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
}

.card-title {
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: 500;
    color: white;
    font-size: 18px;
    text-align: center;
}

.card-icon {
    width: 56px;
    height: 56px;
    position: relative;
}

/* .icon-1 {
    position: absolute;
    width: 36px;
    height: 41px;
    top: 0;
    left: 12px;
} */

.icon-2 {
    position: absolute;
    width: 25px;
    height: 37px;
    top: 12px;
    left: 0;
}

/* .icon-3 {
    position: absolute;
    width: 35px;
    height: 52px;
    top: 0;
    left: 17px;
} */

.icon-4 {
    position: absolute;
    width: 24px;
    height: 35px;
    top: 14px;
    left: 0;
}

/* Market Buttons */
.market-buttons {
    display: flex;
    justify-content: space-between;
    margin: 25px 0 50px;
}

.market-btn {
    height: 46px;
    background-color: #457645;
    border-radius: 0;
    border: 1px solid white;
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: normal;
    color: white;
    font-size: 17px;
    cursor: pointer;
}
.market-btn:hover{
    background-color: #1E4A1E;
    cursor: pointer;
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
}

.btn-1 {
    width: 257px;
}

.btn-2 {
    width: 294px;
}

.btn-3 {
    width: 257px;
}


/* News Section */
.news-section {
    width: 100%;
    height: 440px;
    background-color: #f6fdf2;
    padding-top: 60px;
    position: relative;
}

.section-title {
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: bold;
    color: #014a01;
    font-size: 24px;
    padding-top: 50px;
}

.news-card {
    width: 950px;
    height: 210px;
    background: white;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.13);
    border-radius: 0;
    padding-top: 27px;
    margin: 30px auto;
    overflow:auto;
    overflow-y:scroll;
}

.news-card .news-item a {
    display: flex;
    align-items: center;
    padding: 15px 0px;
    margin: 0px 50px;
}
.news-card .news-item a:hover{
    background: #eee;
    transition: .3s
}

.news-date {
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: normal;
    color: #999;
    font-size: 15px;
    text-align: center;
    width: 150px;
}
.news-date a{
    color: #999;
}

.news-title {
    font-family: 'Noto Sans JP', Helvetica;
    color: #435243;
    font-size: 15px;
    text-align: center;
    margin-left: 16px;
}

.news-separator {
    width: 90%;
    height: 1px;
    background-color: #e5e5e5;
    margin: 0 auto;
}

.news-more {
    align-items: center;
    text-align: right;
    margin: 20px 20px 0px 0px;
}

.news-more span:first-child {
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: normal;
    color: #014a01;
    font-size: 14px;
    text-align: center;
    letter-spacing: -0.15px;
    line-height: 21px;
}
.news-btn{
    width: 195px;
    height: 42px;
    background-color: white;
    border-radius: 50px;
    border: 1px solid #014a01;
    color: #014a01;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    margin-left: auto;
}
.news-btn i{
    ont-size: 18px;
    margin: 3px 0 0 10px;
}

.chevron {
    color: #014a01;
    margin-left: 8px;
}

.title-green {
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: bold;
    color: #014a01;
}

/* Market Report Section */
.market-report-section {
    width: 100%;
    background-color: #afc9af;
    padding: 70px 0 90px;
}

.report-container {
    position: relative;
    width: 1200px;
    margin: auto;
    padding-bottom: 15px;
}

.section-title-green {
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: bold;
    color: #014a01;
    font-size: 24px;
    margin-bottom: -15px;
}

.report-content,
.arrival-content {
    display: flex;
    width: 95%;
    margin: 20px auto;
}

.report-text {
    width: 45%;
    height: 280px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto 0;
}

.report-text p {
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: normal;
    color: #435243;
    font-size: 16px;
    line-height: 40px;
}

.report-btn {
    width: 183px;
    height: 42px;
    background-color: white;
    border-radius: 50px;
    border: 1px solid #1e4a1e;
    color: #1e4a1e;
    margin-top: 24px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    padding: 10px;
}
.report-btn i{
    font-size: 18px;
    margin: 3px 0 0 10px;
}

.report-image {
    width: 55%;
    height: auto;
    object-fit: cover;
}

.arrival-container {
    position: relative;
    width: 1200px;
    margin: auto;
    margin-top: 70px;
}

.section-title-green-right {
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: bold;
    color: #014a01;
    font-size: 24px;
    text-align: right;
    margin-bottom: -15px;
}

.arrival-image {
    width: 55%;
    height: auto;
    object-fit: cover;
}

.arrival-text {
    width: 45%;
    height: 280px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto 0;
}

.arrival-text p {
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: normal;
    color: #435243;
    font-size: 16px;
    line-height: 40px;
}

.arrival-btn {
    width: 195px;
    height: 42px;
    background-color: white;
    border-radius: 50px;
    border: 1px solid #1e4a1e;
    color: #1e4a1e;
    margin-top: 24px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    padding: 10px;
}
.arrival-btn i{
    font-size: 18px;
    margin: 3px 0 0 10px;
}


/* Company Section */
.company-section {
    width: 100%;
    height: 325px;
    background-image: url(../images/company.jpg);
    background-size: cover;
    background-position: 50% 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.company-title {
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: bold;
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
}

.company-text {
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: normal;
    color: white;
    font-size: 16px;
    text-align: center;
    line-height: 40px;
    margin-bottom: 40px;
}

.company-btn {
    width: 195px;
    height: 42px;
    background-color: white;
    border-radius: 50px;
    border: 1px solid #014a01;
    color: #014a01;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    margin: 0 auto;
}
.report-btn:hover,
.company-btn:hover,
.arrival-btn:hover,
.news-btn:hover{
    background: #1E4A1E;
    color: #fff;
    cursor: pointer;
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
}
.company-btn i{
    font-size: 18px;
    margin: 3px 0 0 10px;
}


/* Shikyo Section */
.hero-shikyo-section {
    width: 100%;
    height: 45vh;
    background-image: url(../images/main-shikyo.jpg);
    background-size: cover;
    background-position: 50% 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-shikyo-title {
    font-weight: 900;
    font-style: normal;
    color: white;
    font-size: 32px;
    letter-spacing: 2px;
}

.common-wrapper {
    width: 1000px;
    margin: 0 auto;
    background: #fff;
}
.shikyo-list{
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
}
.shikyo-list li{
    margin: 0 10px 20px 0;
}
.shikyo-list li a{
    color: #333;
    text-decoration: underline;
}
.shikyo-list li a:hover{
    text-decoration: none;
}
.now li{
    width: 120px;
}
.now .shikyo-list{
    width: 70%;
}
.past li{
    width: 150px;
}
.latest,
.now,
.past{
    display: flex;
    padding: 30px 0;
}
.shikyo-wrapper{
    background: #fff;
    padding: 20px 60px;
    margin: 30px 0;
}
.latest p,
.now p,
.past p{
    min-width: 23%;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}
.gallery{
    width: 90%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 80px auto 0;
}
.gallery img{
    width: 27%;
    margin: 20px;
}


/* Nyuka Section */
.hero-nyuka-section {
    width: 100%;
    height: 45vh;
    background-image: url(../images/main-nyuka.jpg);
    background-size: cover;
    background-position: 50% 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-nyuka-title {
    font-weight: 900;
    font-style: normal;
    color: white;
    font-size: 32px;
    letter-spacing: 2px;
}
.nyuka-section {
    width: 100%;
    background-color: #afc9af;
    padding: 70px 0 90px;
}
.nyuka-wrapper{
    background: #fff;
    padding: 20px 40px;
    margin: 30px 0;
}
.day-title{
    margin: 20px 0;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    padding: 0px 10px 15px 10px;
}
.day-title span{
    margin: 0 40px 0 10px;
}
.item{
    margin: 30px;
}
.item p{
    margin: 20px 0 0;
    font-size: 18px;
}
.num-area{
    margin: 0;
}
.free-text{
    margin: 10px 32px 40px;
}
.photo-area{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.photo-area img{
    width: 250px;
    height: 200px;
    object-fit: cover;
    margin: 15px 0;
}
.photo-area::after {
    content: "";
    display: block;
    width: 250px;
}

/* Company Information Section */
.hero-company-section {
    width: 100%;
    height: 45vh;
    background-image: url(../images/main-company.jpg);
    background-size: cover;
    background-position: 50% 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-company-title {
    font-weight: 900;
    font-style: normal;
    color: white;
    font-size: 32px;
    letter-spacing: 2px;
}
.company-info-section {
    width: 100%;
    padding: 60px 0px;
    background-color: #f6fdf2;
}
.section-title {
    font-weight: 900;
    font-style: normal;
    color: white;
    font-size: 32px;
    letter-spacing: 2px;
}
.info-card {
    margin: 0 auto;
    max-width: 1000px;
}
.info-table {
    width: 100%;
    border-spacing: 50px 0;
    margin: 50px 0 0;
}
.info-table tr {
    border-bottom: 1px solid #e5e5e5;
}
.info-table iframe{
    margin-top: 15px;
}
.info-label {
    padding: 15px 20px;
    width: 221px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: normal;
    color: #435243;
    font-size: 16px;
    vertical-align: top;
    border-bottom: 1px solid #aaa;
}
.info-label:last-child{
    padding-top: 30px;
}
.info-value {
    padding: 15px 20px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: normal;
    color: #435243;
    font-size: 16px;
    vertical-align: middle;
    border-bottom: 1px solid #aaa;
}
.border-none{
    border-bottom: none;
}
.access-map {
    width: 449px;
    height: 246px;
    object-fit: cover;
}

/* Separator */
.separator {
    margin: 32px auto;
    max-width: 796px;
    height: 1px;
    background-color: #e5e5e5;
}

/* Company History Section */
.company-history-section {
    background-color: #f6fdf2;
}
.history-content {
    padding: 35px 0;
    display: flex;
    justify-content: space-between;
}
.history-image {
    width: 45%;
    flex-shrink: 0;
    margin-top: 15px;
}
.history-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.history-text {
    margin: 0px;
    width: 50%;
}
.history-title {
    font-weight: 500;
    font-size: 24px;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 35px;
    margin-bottom: 32px;
}
.history-description {
    font-weight: normal;
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.5;
    text-align: justify;
}
.borderline{
    width: 90%;
    border: 1px solid #999;
    margin: 50px auto 0;
}

/* Eco Business Section */
#eco-business-section {
    width: 100%;
    padding: 70px 0;
    background-color: #f6fdf2;
}

.eco-description {
    margin: 50px auto 0;
    max-width: 958px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

/* Manufacturing Process Section */
.process-section {
    width: 100%;
    background-color: #f6fdf2;
    padding: 30px 0;
}
.process{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.process-card {
    width: 100%;
    background-color: #afc9af;
    box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.2);
    padding: 30px;
}

.process-title {
    letter-spacing: 1px;
    font-size: 22px;
    font-weight: 500;
    color: #014a01;
    text-align: center;
    margin-bottom: 24px;
    font-family: 'Noto Sans JP', sans-serif;
}

.process-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-circles {
    display: flex;
    justify-content: center;
    /* align-items: center;
    gap: 16px; */
    width: 100%;
    flex-wrap:wrap;
}

.step-circle {
    width: 161px;
    height: 161px;
    background-color: white;
    border-radius: 50%;
    border: 1px solid #1e4a1e;
    box-shadow: 1px 3px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    color: #014a01;
    font-size: 18px;
    text-align: center;
    line-height: 30px;
}

.step-separator {
    width: 5%;
    height: 1px;
    background-color: #1e4a1e;
    margin-top: 5em;
}

.step-descriptions {
    display: flex;
    justify-content: space-between;
    /* gap: 16px; */
    width: 100%;
}

.step-desc {
    width: 161px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: normal;
    color: #435243;
    font-size: 15px;
    text-align: center;
    line-height: 1.4;
    margin: 10px 0 20px;
}

/* Product Gallery */
.product-gallery {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #f6fdf2;
}

.gallery-images {
    display: flex;
    gap: 16px;
    padding: 50px 0 80px;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-img {
    width: 24%;
    height: auto;
}


/* Policy Section */
.hero-policy-section {
    width: 100%;
    height: 45vh;
    background: #364436;
    background-size: cover;
    background-position: 50% 50%;
    display: flex
;
    align-items: center;
    justify-content: center;
}
.hero-policy-title {
    font-weight: 900;
    font-style: normal;
    color: white;
    font-size: 31px;
    letter-spacing: 2px;
}

.policy-section{
    background-color: #f6fdf2;
    padding: 40px 0;
}
.policy-item{
    margin: 50px 0;
    font-size: 14px;
    line-height: 25px;
}
.policy-item h4{
    font-size: 16px;
    margin-bottom: 30px;
}
.policy-item ul{
    margin: 30px;
}
.policy-item ul li{
    margin-bottom: 5px;
}
.policy-border {
    border-bottom: 1px solid #ccc;
}


/* contact section */
.contact-section {
    width: 100%;
    background-color: #647964;
    padding: 42px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-title {
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: bold;
    color: white;
    font-size: 24px;
    margin-bottom: 24px;
}

.contact-text {
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: normal;
    color: white;
    font-size: 16px;
    text-align: center;
    line-height: 40px;
    margin-bottom: 16px;
}

.contact-phone {
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: 500;
    color: white;
    font-size: 32px;
    text-align: center;
    line-height: 40px;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.contact-form-btn {
    width: 247px;
    height: 71px;
    background-color: #647964;
    border: 1px solid white;
    border-radius: 0;
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: 500;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.contact-line-btn {
    width: 257px;
    height: 71px;
    border: 1px solid white;
    border-radius: 0;
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: 500;
    color: white;
    font-size: 20px;
    /* display: flex;
    align-items: center; */
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    background: url(../images/line1.png);
    background-repeat: no-repeat;
    background-position: 25%;
    background-size: 12%;
    padding-left: 35px;
}
.contact-form-btn:hover{
    background-color:#FEFEF3;
    color: #435243;
    border: 1px solid #435243;
    cursor: pointer;
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
}
.contact-line-btn:hover{
    background-color:#FEFEF3;
    color: #435243;
    border: 1px solid #435243;
    cursor: pointer;
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
    background-image: url(../images/line.png);
    background-repeat: no-repeat;
    background-position: 25%;
    background-size: 12%;
}
.contact-line-btn img{
    width: 30px;
}

.contact-line-icon {
    width: 27px;
    height: 25px;
}


/* Contactform Section */
.hero-contactform-section {
    width: 100%;
    height: 45vh;
    background-image: url(../images/main-contact.jpg);
    background-size: cover;
    background-position: 50% 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-contactform-title {
    font-weight: 900;
    font-style: normal;
    color: white;
    font-size: 32px;
    letter-spacing: 2px;
}
.contactform-section {
    width: 100%;
    padding: 60px 0px;
    background-color: #f6fdf2;
}
.contactform-section h2{
    margin: 50px 0;
}
.center{
    text-align: center;
}


/* Contactform table */
.contact-table {
    width: 100%;
    margin: 50px 0;
}
.contact-table tr{
    border-bottom: 1px solid #aaa;
}
.contact-table th{
    width: 32%;
    padding: 12px;
    font-weight: normal;
    text-align: left;
    padding-left: 30px;
    border-bottom: 1px solid #ccc;
}
.contact-table th span{
    color: #c40404;
    font-size: 85%;
}
.contact-table td{
    border-bottom: 1px solid #ccc;
    padding: 5px 30px 5px 5px;
}

input, textarea{
	width: 100%;
	color: #333;
    padding: 12px;
    border: 1px solid #ccc;
    font-size: 15px;
    line-height: 20px;
}
input[type="file"] {
    border: none;
}
input[type="checkbox"] {
    margin-right: 13px;
}
input[type="submit"]{
	width: 30%;
    margin: 30px;
    border: 1px solid #014a01;
    background: #fff;
}
input[type="submit"]:hover{
    background: #014a01;
    color: #fff;
}
.ckinput{
	font-size:16px;
}
.wpcf7-spinner{
    display: none!important;
}
.privacy_text{
    border: 1px solid #ccc;
    overflow-y: scroll;
    margin: 30px auto;
    padding: 30px 50px;
    height: 300px;
    background: #fff;
}
.privacy_text h3{
    text-align: left;
    position: relative;
    color: #4d4d4d;
    padding: 10px;
    font-size: 15px;
    border-left: 4px solid #014a01;
    border-bottom: 1px solid #014a01;
}
.privacy_text h4{
    border-bottom: 1px solid #aaa;
    border-left: 5px solid #014a01;
    padding: 7px 10px;
    font-size: 18px;
}
.privacy_text p{
    font-size: 14px;
    margin: 20px 10px;
    line-height: 22px;
}
.privacy_chk{
    text-align: center;
}
::placeholder{
    color: #aaa;
}


/* 404 */
.back_btn a{
    color: #014a01;
}

/* Footer */
.footer {
    width: 100%;
    background-color: #364436;
    padding: 43px 0 30px;
}
.footer-content {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.footer-left {
    display: flex;
    align-items: flex-start;
}
.footer-logo {
    width: 54px;
    height: 55px;
}
.footer-info {
    margin-left: 14px;
}
.footer-company-name {
    font-family: "toppan-bunkyu-midashi-min-st", serif;
    font-weight: 900;
    font-style: normal;
    color: #fff;
    font-size: 30px;
    margin-bottom: 12px;
}

.footer-address {
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: normal;
    color: #fff;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-phone {
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: normal;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 15px;
    margin-bottom: 24px;
}
.footer-nav-link {
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: 500;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}
.footer-nav a:hover,
.footer-secondary-nav a:hover{
    color: #afc9af;
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-secondary-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 15px;
}

.footer-secondary-link {
    font-family: 'Noto Sans JP', Helvetica;
    font-weight: 500;
    color: #fff;
    font-size: 13px;
    text-decoration: none;
}

.sdg-icons {
    display: flex;
    align-items: center;
    gap: 24px;
}
.sdg-icon-1 {
    width: 74px;
    height: 74px;
    object-fit: cover;
}
.sdg-icon-2 {
    width: 59px;
    height: 59px;
    object-fit: cover;
}

.footer-copyright {
    text-align: center;
    margin-top: 40px;
}

.footer-copyright p {
    font-family: 'YuMincho-Extrabold', Helvetica;
    font-weight: normal;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
}



/* Responsive Design */
.forwide {
    display: block;
}
@media (max-width: 1280px) {
    .forwide{
        display: none;
    }
    .gallery-img {
        width: 22%;
    }

}
.forsp {
    display: none;
}
@media (max-width: 480px) {
    .forsp{
        display: block;
    }
}

@media (max-width: 1280px) {
    /* .main-wrapper, */
    .header-wrapper,
    .header,
    .hero-section,
    .news-section,
    .market-report-section,
    .company-section,
    .contact-section,
    .footer { 
        width: 100%;
    }
    .container {
        padding: 0;
        width: 90%;
    }
    .nav-menu{
        gap: 20px;
    }
    .report-container,
    .arrival-container{
        width: 90%;
    }
    .report-text,
    .arrival-text{
        padding: 50px;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 10px;
    }
    .header{
        padding: 0 20px;
    }
    .report-content, .arrival-content {
        width: 100%;
        margin: 20px auto;
    }
    .report-text,
    .arrival-text{
        padding: 40px;
        height: 260px;
    }
    .report-text p,
    .arrival-text p {
        line-height: 28px;
    }
    .news-card,
    .sub-wrapper{
        width: 100%;
    }
    .market-cards,
    .market-buttons {
        justify-content: center;
        gap: 10px;
    }
    .main-wrapper{
        width: 90%;
    }
    .info-table {
        border-spacing: 35px 0;
    }
    .process-card,
    .gallery-images {
        width: 95%;
        margin: 0 auto;
    }
}

@media (max-width: 834px){
    .market-cards {
        flex-direction: column;
        align-items: center;
        margin-top: 50px;
    }
    .market-buttons {
        flex-direction: column;
        align-items: center;
        margin: 45px 0 50px;
    }
    .btn-1, .btn-2, .btn-3{
        width: 323px;
    }
    .nav-menu {
        display:block;
        margin: 0;
    }
    .eco-description{
        text-align: justify;
    } 
}
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }
    .sub-wrapper{
        width: 100%;
    }
    .news-card{
        width: 100%;
        padding-top: 30px;
    }
    .news-card .news-item a {
        padding: 10px 15px;
        margin: 0px 20px;
    }
    .report-text,
    .arrival-text {
        padding: 30px;
    }

    .latest p,
    .now p,
    .past p{
        min-width: 25%;
    }
    .shikyo-wrapper{
        padding: 20px 40px;
    }
    .now .shikyo-list {
        width: 100%;
    }

    .info-label{
        padding: 15px 10px;
        width: 180px;
    }
    .gallery-img {
        width: 46%;
    }
    .contact-btn{
        margin-top: 0;
        margin-left: 0;
        width: 200px;
    }
    .line-btn{
        margin-right: 0;
        width: 200px;
    }
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .main-wrapper {
        width: 95%;
    }
    .header {
        flex-direction: inherit;
        height: auto;
        padding: 20px;
    }
    .hero-title{
        font-size: 30px;
        margin-left: 10px;
    }

    .card-content {
        width: 100%;
        height: 134px;
        padding: 0 20px;
        gap: 20px;
    }
    .market-card{
        width: 323px;
    }
    .market-buttons{
        margin: 12px 0 50px;
    }
    .news-date {
        text-align: left;
        width: 95%;
    }
    .news-title {
        text-align: left;
        margin-left: 0px;
        width: 95%;
        }
    .news-card{
        padding-top: 10px;
    }
    .news-card .news-item a {
        flex-direction: column;
        margin: 0;
    }
    .market-report-section{
        padding: 50px 0 50px;
    }
    .report-content {
        flex-direction: column-reverse;
    }
    .arrival-content {
        flex-direction: column;
    }
    .report-text,
    .report-image,
    .arrival-text,
    .arrival-image {
        width: 100%;
    }
    .arrival-container{
        margin-top: 10px;
    }
    .company-section{
        height: 400px;
    }
    .contactform-section p{
        font-size: 15px;
        line-height: 25px;
    }
    .contactform-section p:first-child{
        margin: 0 10px;
    }
    .contact-buttons{
        flex-direction: column;
        width: 80%;
        margin: 0 auto;
    }
    .contact-form-btn,
    .contact-line-btn {
        width: 100%;
        height: 60px;
    }
    .contact-table th {
        display: block;
        width: 100%;
        border-bottom: none;
        padding-left: 0;
    }
    .contact-table td {
        display: block;
        width: 100%;
        padding: 0px 5px 15px;
    }
    .privacy_text{
        padding: 20px 10px;
        width: 90%;
    }
    .privacy_chk{
        margin: 0 8px;
    }
    .wpcf7-list-item{
        margin: 0 0 0 0!important;
    }
    input[type="submit"]{
        width: 50%;
    }

    .company-text,
    .contact-text{
        line-height: 33px;
    }
    .latest, .now, .past {
        padding: 30px 0;
        flex-direction: column;
    }

    .info-table{
        border-spacing: 17px 0;
    }
    .info-label{
        width: 100%;
        display:block;
        border-bottom: none;
        padding: 5px 10px;
    }
    .info-value{
        width: 100%;
        display:block;
        padding: 5px 20px;
    }
    .history-content{
        flex-direction: column;
        padding: 0;
    }
    .history-image{
        width: 100%;
    }
    .history-img{
        height: 350px;
    }
    .history-text{
        width: 100%;
        margin-top: 20px;
    }

    .shikyo-wrapper {
        padding: 10px 30px;
    }
    .shikyo-list li {
        margin: 0 10px 15px 20px;
    }

    .nyuka-wrapper{
        padding: 20px 10px;
    }
    .hero-nyuka-section {
        background-position: 90% 50%;
    }
    .item {
        margin: 30px 0;
    }
    .item p{
        font-size: 16px;
    }
    .photo-area{
        justify-content: space-evenly;
    }
    .photo-area img {
        width: 155px;
        height: 170px;
        margin: 10px 3px 0px;
    }

    .past li {
        width: 140px;
    }
    .gallery{
        margin: 45px auto 0;
    }
    .gallery img {
        width: 95%;
        margin: 15px;
    }

    .footer-left {
        justify-content: center;
    }
    .footer-nav{
        flex-direction: column;
        gap: 25px;
    }
    .footer-secondary-nav,
    .footer-bottom{
        flex-direction: column;
    }
    .footer-copyright p{
        font-size: 12px;
    }
    .footer-company-name{
        margin-bottom: -5px;
    }
    .sdg-icons{
        margin-top: 30px;
    }
}



/* pull down */
.nav_list1{
    display: block;
}
.down_list {
    visibility: hidden;/*デフォルトでは非表示の状態にしておく*/
    opacity: 0;/*不透明度0*/
    transition: all .4s;/*表示の変化を0.3秒に指定*/
    width: 86px;
    position: absolute;
    top: 40px;
    left: 0px;
}
.down_list:hover{
    background: #014a0133; /*80% 透過*/
}
@media (max-width: 830px) {
    .down_list{
        display: none;
        visibility: visible;
        opacity: 1;
        top: 60px;
    }
}
.nav_item:hover .down_list {
    display: block;/*Gナビメニューにホバーしたら表示*/
}
.dropdown_list {
    background-color: #f6fdf2CC; /*20% 透過*/
    height: 50px;
    transition: all .3s;
    position: relative;
    padding: 20px 0;
    width: 13px;
    text-align: center; 
    /* text-align: left; */ 
}
/* .dropdown_list:not(:first-child)::before{
    content: "";
    width: 100%;
    height: 1px;
    background-color: #3492d1;
    position: absolute;
    top: 0;
    left: 0;
} */
/* .dropdown_list:hover {
    background-color: #014a01;

} */
.dropdown_list a {
    /* display: flex;
    justify-content: center; */
    align-items: center;
    color: #014a01;
    text-decoration: none;
    position: relative;
}
/* .dropdown_list a::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(135deg);
    position: absolute;
    right: 15px;
    top: calc(50% - 5px);
} */

.down_list li{
    padding: 12px 0px!important;
    width: 86px;
}
.nav_item:hover .down_list {
    visibility: visible;/*Gナビメニューにホバーしたら表示*/
    opacity: 1;/*不透明度1*/
}

@media (max-width: 830px) {
    .dropdown_list{
        text-align: center;
        display: none !important;
    }
    .dropdown_list a {
        padding: 0!important;
    }
    .nav_item:hover .down_list{
        margin-top: -30px;
    }
}

/* フェードイン用のCSS */

/* 下から上に移動しながらフェードイン */
.fadeInUp {
    opacity: 0;
    transform: translateY(80px);
}
/* フェードインアニメーション */
@keyframes fadeIn {
    0% {
    }
    100% {
        opacity: 1;
        transform: translate(0);
    }
}
/* フェードインさせるクラス */
.fadeIn {
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

/* ページTOPに戻るボタン */
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #F6FDF2;
    border: solid 2px #014A01; 
    /* border-radius: 0; /* 四角ボタン */
    border-radius: 50%; /* 丸ボタン */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    /* 初期は非表示 */
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;  /* 下からアニメーション */
    /* transition: opacity 0.4s ease, visibility 0.4s ease; /* ふわっと表示*/
    z-index: 999;

}

.pagetop.show {
    transform: translateY(0); 
    opacity: 1;
    visibility: visible;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #014A01;
    border-right: 3px solid #014A01;
    transform: translateY(20%) rotate(-45deg);
}

@media (hover: hover) and (pointer: fine) {
    .pagetop:hover, .pagetop:hover .pagetop__arrow {
        border-color: #FFF;
        background-color: #014A01;
    }
}

/* スマホ表示時（769px以下）でボタンのサイズを変更 */
@media (max-width: 769px) {
  .pagetop {
    width: 40px;
    height: 40px;
    right: 15px;  /* ボタンを右端から15pxに */
    bottom: 15px; /* ボタンを下端から15pxに */
  }
}


/* -----------------------------
post
----------------------------- */
.wrapper{
    display: flex;
}
#post-main{
    background-color: #afc9af;
    padding: 5rem;
}
#post-main h2{
    font-size: 24px;
    margin: 0 0 30px;
}
#post-main h3{
    font-size: 22px;
    margin-top: 10px;
}
#post-main a{
    color: #014a01;
}
#post-main a:hover{
    color:#647964!important;
    transition: all .3s;
}
#post-main a:visited{
    color: #014a01;
}
.post_img img {
    width: 100%;
    height: auto;
    padding: 5px 0;
}

.blog_main {
    width: 100%;
    margin-bottom: 3rem;
}
.blog_main p{
    font-size: 15px;
    margin-bottom: 20px;
    margin-top: 10px;
    line-height: 25px;
}
.blog_main .blog_content img {
    width: 100%;
    height: auto;
}
.blog_main .blog_content {
    width: 75%;
    background: #fff;
    padding: 4rem;
    margin: 10px;
}
.blog_main .blog_side_nav {
    width: 23%;
    padding: 1rem 2rem ;
    background: #fff;
    margin: 10px 0;
}
.blog_main .blog_side_nav p{
    font-size: 14px;
    line-height: 22px;
    margin: 0;
}
.blog_main .blog_side_nav h3{
    border-bottom: 1px solid #aaa;
}
.blog_main .blog_side_nav li{
    padding: 5px 0 5px;
    border-bottom: 1px dotted #aaa;
    list-style-type: none;
}
.blog_main .blog_side_nav li a{
    display: block;
}
.blog_main .blog_side_nav li:hover{
    background: #eee;
}
.blog_side_nav h4{
    margin-top: 25px;
    border-bottom: 1px solid #aaa;
}
.blog_side_nav li{
    font-size: 14px;
}

.ichiran{
    text-align: right;
    font-size: 14px;
}
.before_next {
    margin: 90px 20px 20px;
    text-align: center;
    border-bottom: 1px solid #aaa;
}
.before_next span{
    margin: 20px;
}


/* -----------------------------
archive
----------------------------- */
.blog_list {
    width: 1000px;
    padding: 2rem 5rem 3rem;
    background: #fff;
    margin: 0 auto 20px;
}
.blog_list h3{
    margin: 30px 0 -15px;
    font-size: 22px;
}
.blog_list h3 a{
    color: #014a01;
}
.blog_list h5{
    margin: 0;
    font-size: 16px;
    font-weight: normal;
}
.blog_list p{
    margin: 5px 0;
    font-size: 15px;
    font-weight: normal;
    line-height:26px;
}
time {
    color: #014a01;
    font-size: 14px;
    font-weight: normal;
}
.sum_text{
    margin-top: 20px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}
.nav-links span,
.nav-links a{
    margin: 5px;
}

/* -----------------------------
queries
----------------------------- */

@media screen and (max-width:1024px){
    .blog_list{
        width: 100%;
    }
    #post-main {
        padding: 2rem;
    }
}

@media screen and (max-width:768px){
    #post-main {
        padding: 2rem 0;
    }
	.blog_main{
		width: 100%;
		padding: 1rem 0rem 3rem;
	}
	.blog_main .blog_content {
		width: 100%;
        margin: 0;
	}
	.blog_main .blog_side_nav {
		width: 100%;
		padding: 30px 20px;
	}
	.blog_list{
		width: 95%;
		padding: 1rem 2rem 2rem;
	}
    .wrapper {
        flex-direction: column;
    }
}

@media screen and (max-width:480px){
    .blog_main{
        margin-bottom: 0;
    }
    .blog_main .blog_content{
        padding: 1rem;
    }
	.blog_main .blog_content h3 {
		font-size: 22px;
    }
}
.lb-loader,.lightbox{text-align:center;line-height:0}body.lb-disable-scrolling{overflow:hidden}.lightboxOverlay{position:absolute;top:0;left:0;z-index:9999;background-color:#000;opacity:.8;display:none}.lightbox{position:absolute;left:0;width:100%;z-index:10000;font-weight:400;outline:0}.lightbox .lb-image{display:block;height:auto;max-width:inherit;max-height:none;border-radius:3px;border:4px solid #fff}.lightbox a img{border:none}.lb-outerContainer{position:relative;width:250px;height:250px;margin:0 auto;border-radius:4px;background-color:#fff}.lb-loader,.lb-nav{position:absolute;left:0}.lb-outerContainer:after{content:"";display:table;clear:both}.lb-loader{top:43%;height:25%;width:100%}.lb-cancel{display:block;width:32px;height:32px;margin:0 auto;background:url(../images/loading.gif) no-repeat}.lb-nav{top:0;height:100%;width:100%;z-index:10}.lb-container>.nav{left:0}.lb-nav a{outline:0;background-image:url(data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==)}.lb-next,.lb-prev{height:100%;cursor:pointer;display:block}.lb-nav a.lb-prev{width:34%;left:0;float:left;background:url(../images/prev.png) left 48% no-repeat;opacity:0;-webkit-transition:opacity .6s;-moz-transition:opacity .6s;-o-transition:opacity .6s;transition:opacity .6s}.lb-nav a.lb-prev:hover{opacity:1}.lb-nav a.lb-next{width:64%;right:0;float:right;background:url(../images/next.png) right 48% no-repeat;opacity:0;-webkit-transition:opacity .6s;-moz-transition:opacity .6s;-o-transition:opacity .6s;transition:opacity .6s}.lb-nav a.lb-next:hover{opacity:1}.lb-dataContainer{margin:0 auto;padding-top:5px;width:100%;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.lb-dataContainer:after{content:"";display:table;clear:both}.lb-data{padding:0 4px;color:#ccc}.lb-data .lb-details{width:85%;float:left;text-align:left;line-height:1.1em}.lb-data .lb-caption{font-size:13px;font-weight:700;line-height:1em}.lb-data .lb-caption a{color:#4ae}.lb-data .lb-number{display:block;clear:left;padding-bottom:1em;font-size:12px;color:#999}.lb-data .lb-close{display:block;float:right;width:30px;height:30px;background:url(../images/close.png) top right no-repeat;text-align:right;outline:0;opacity:.7;-webkit-transition:opacity .2s;-moz-transition:opacity .2s;-o-transition:opacity .2s;transition:opacity .2s}.lb-data .lb-close:hover{cursor:pointer;opacity:1}
/* .header{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
} */
.header_inner {
  position: relative;
  padding: 15px;
}
.logo{
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 15px
}
.title{
  font-size: 2rem;
  font-weight: 600;
}
.nav_list li{
    display: inline-block;
    position: relative;
  }
/* header固定のため余白をつける。メニューのCSSには関係ない */
/* .main{  
  margin-top: 60px;
} */



@media only screen and (min-width: 835px) {
  .hamburger,
  .black_bg {
    display: none;
  }
}

@media only screen and (max-width: 834px) {
  .nav {
    position: fixed;
    right: -320px; /* 右から出てくる */
    top: 0;
    width: 305px; /* スマホに収まるサイズ */
    height: 100vh;
    padding-top: 8em;
    background-color: #f6fdf2;
    transition: all .6s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  .hamburger {
    position: absolute;
    right: 15px;
    top: 22px;
    width: 40px; /* クリックしやすい幅 */
    height: 40px; /* クリックしやすい高さ */
    cursor: pointer;
    z-index: 300;
  }
  .nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav_item {
    text-align: center;
    padding: 0 14px;
	width: 100%;
  }
  .nav_item a {
    display: block;
    padding:7px 37px;
    text-decoration: none;
    color: #014a01;
  }
	.nav_item a:last-child{
		border-bottom: none;
	}
  /* .nav_item a:hover {
    background-color: #afc9af;
  } */
  .hamburger_border {
    position: absolute;
    left: 5px;
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all .6s;
  }
  .hamburger_border_top {
    top: 16px;
  }
  .hamburger_border_center {
    top: 23px;
  }
  .hamburger_border_bottom {
    top: 30px;
  }
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }

  /* 表示された時用のCSS */
  .nav-open .nav {
    right: 0;
  }
  .nav-open .black_bg {
    opacity: .8;
    visibility: visible;
  }
  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
  }
}

/* sp */

@media only screen and (min-width: 769px) {
  .header_inner{
    /* max-width: 980px; */
    width: 100%;
    padding: 15px 30px;
    margin-left: auto;
    margin-right: auto;
  }
  .logo{
    padding: 12px 30px
  }
  .nav_list{
    text-align: right;
	  position: relative;
  }
  /* .nav_list li a{
    color: #fff;
    font-weight: 600;
  } */
   .nav_list1{
    text-align: right;
	  position: relative;
  }
  .nav_list1 li{
    display: inline-block;
    padding: 6px;
  }
}

@media only screen and (max-width: 834px) {
  .nav_list li{
    display: block;
    margin: 0 auto;
  }
}

