@charset "UTF-8";

#factory {
    width: 100%;
    margin-top: 1%;
}
#factory img {
    width: 100%;
    vertical-align: bottom;
}
#factory .factory-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
}
#factory .factory-list .factory {
    width: 31.3%;
    margin: 3% 1% 0;
}
#factory .factory-list .factory .title {
    margin-top: 5%;
    font-size: 1.4vw;
    font-weight: bold;
}
#factory .factory-list .factory .description {
    margin-top: 1%;
    line-height: 1.8;
}

@media screen and (max-width: 479px) {

    #factory .factory-list .factory {
        width: 100%;
        margin-top: 10%;
    }
    #factory .factory-list .factory p {
        padding: 0 3%;
    }
    #factory .factory-list .factory .title {
        font-size: 5vw;
    }
}

#factory_detail {
    width: 90%;
    margin: 3% auto 0;
}

#factory_detail .factory-title {
    width: 100%;
    padding-left: 1%;
    border-bottom: 1px solid #d3d5d8;
}
#factory_detail .factory-title h2 {
    display: block;
    font-size: 4vw;
    font-weight: 900;
    line-height: 1;
}

#factory_detail .factory-copy {
    margin-top: 5%;
    font-size: 2vw;
    font-weight: bold;
}

#factory_detail .factory-main {
    margin-top: 3%;
}
#factory_detail .factory-main img {
    width: 100%;
}

#factory_detail .factory-box {
    width: 80%;
    margin: 0 auto;
}

#factory_detail .factory-box .factory-article {
    margin-top: 10%;
    font-size: 1.6vw;
    line-height: 1.8;
}
#factory_detail .factory-box .factory-article .factory-subtitle {
    font-size: 2vw;
    font-weight: bold;
}
#factory_detail .factory-box .factory-article img {
    width: 100%;
    margin-top: 3%;
}
#factory_detail .factory-box .factory-article p {
    margin-top: 3%;
    line-height: 2;
}

#factory_detail .factory-box .factory-interview {
    margin-top: 50px;
    padding: 20px 0 40px;
    background-color: #fff;
    font-size: 16px;
    line-height: 1.8;
}
#factory_detail .factory-box .factory-interview > img {
    width: 100%;
    margin-top: 30px;
}
#factory_detail .factory-box .factory-interview .interview-bloc {
    padding: 0 40px;
}
#factory_detail .factory-box .factory-interview .interview-bloc h3 {
    margin-top: 30px;
    font-size: 20px;
    border-bottom: 1px solid #000;
}
#factory_detail .factory-box .factory-interview .interview-bloc .interview {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-top: 30px;
}
#factory_detail .factory-box .factory-interview .interview-bloc .interview .interview-icon {
    width: 20%;
    text-align: center;
}
#factory_detail .factory-box .factory-interview .interview-bloc .interview .interview-icon img {
    width: 80px;
}
#factory_detail .factory-box .factory-interview .interview-bloc .interview .interview-icon .interview-name {
    font-size: 12px;
}
#factory_detail .factory-box .factory-interview .interview-bloc .interview .interview-contents {
    width: 80%;
    padding-top: 20px;
    padding-left: 10px;
}

#factory_detail .detail-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-top: 7%;
    padding: 1%;
    border: 1px solid #d3d5d8;
}
#factory_detail .detail-box .detail-left {
    width: 30%;
}
#factory_detail .detail-box .detail-left img {
    width: 100%;
    vertical-align: bottom;
}
#factory_detail .detail-box .detail-right {
    width: 70%;
    padding: 1% 2%;
    font-size: 1.2vw;
    line-height: 1.8;
}
#factory_detail .detail-box .detail-right b,
#factory_detail .detail-box .detail-right strong {
    font-size: 2vw;
}
#factory_detail .detail-box .detail-right p {
    margin-top: 1%;
}
#factory_detail .detail-box .detail-right a {
    text-decoration: underline;
}
#factory_detail .detail-box .detail-right a:hover {
    text-decoration: none;
}

#factory_detail .factory-products {
    margin-top: 50px;
    text-align: center;
}
#factory_detail .factory-products a.btn {
    display: inline-block;
    width: 320px;
    margin: 0 10px;
    padding: 20px;
    text-align: center;
    background: #222;
    color: #FFF;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.6s ease 0s;
}
#factory_detail .factory-products a.btn:hover {
    opacity: 0.6;
    text-decoration: none;
}

@media screen and (max-width: 479px) {

    #factory_detail .factory-title {
        display: none;
    }
    #factory_detail .factory-copy {
        font-size: 5vw;
        padding: 0 3%;
        text-align: center;
    }
    #factory_detail .factory-main {
       margin-top: 5%;
    }
    #factory_detail .factory-main img {
        height: auto;
    }
    #factory_detail .factory-box {
        width: 100%;
        margin-top: 10%;
    }
    #factory_detail .factory-box .factory-article {
        margin-top: 5%;
        font-size: 3.4vw;
    }
    #factory_detail .factory-box .factory-article .factory-subtitle {
        padding: 0 3%;
        font-size: 4vw;
    }
    #factory_detail .factory-box .factory-article img {
        height: auto;
        margin-top: 5%;
    }
    #factory_detail .factory-box .factory-article p {
        margin-top: 5%;
        padding: 10px;
    }
    #factory_detail .factory-box .factory-interview {
        margin-top: 10%;
        padding: 5% 0;
        font-size: 3.4vw;
    }
    #factory_detail .factory-box .factory-interview > img {
        margin-top: 5%;
    }
    #factory_detail .factory-box .factory-interview .interview-bloc {
        padding: 0 10px;
    }
    #factory_detail .factory-box .factory-interview .interview-bloc h3 {
        margin-top: 5%;
        font-size: 4vw;
    }
    #factory_detail .factory-box .factory-interview .interview-bloc .interview {
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-top: 5%;
    }
    #factory_detail .factory-box .factory-interview .interview-bloc .interview .interview-icon {
        width: 100%;
        text-align: left;
    }
    #factory_detail .factory-box .factory-interview .interview-bloc .interview .interview-icon img {
        width: 14%;
        vertical-align: middle;
    }
    #factory_detail .factory-box .factory-interview .interview-bloc .interview .interview-icon .interview-name {
        font-size: 3vw;
        display: inline-block;
        padding-left: 2%;
    }
    #factory_detail .factory-box .factory-interview .interview-bloc .interview .interview-contents {
        width: 100%;
        padding: 3% 0;
    }

    #factory_detail .contents-btn-store img {
        width: 90%;
        height: auto;
    }
    #factory_detail .factory-products a.btn {
        width: 90%;
        display: block;
        margin: 10px auto;
    }

    #factory_detail .detail-box {
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-top: 10%;
        padding: 5%;
    }
    #factory_detail .detail-box .detail-left {
        width: 100%;
    }
    #factory_detail .detail-box .detail-left img {
        height: 100%;
    }
    #factory_detail .detail-box .detail-right {
        width: 100%;
        margin-top: 5%;
        padding: 0 5%;
        font-size: 3.4vw;
    }
    #factory_detail .detail-box .detail-right b,
    #factory_detail .detail-box .detail-right strong {
        font-size: 4vw;
    }
    #factory_detail .detail-box .detail-right p {
        margin-top: 3%;
    }
}

.maker-contents-wrapper {
    width: 90%;
    margin: 5% auto;
    line-height: 1.7;
    letter-spacing: 0.1em;
}

.maker-contents-wrapper .contents-image {
    width: 100%;
    margin: 0 auto 3%;
}
.maker-contents-wrapper .contents-image.contents-main-image {
    width: 100%;
    margin-bottom: 8%;
}
.maker-contents-wrapper .contents-image img {
    width: 100%;
}

.maker-contents-wrapper .contents-heading {
    width: 100%;
    margin: 0 auto 3%;
}
.maker-contents-wrapper .contents-heading h3 {
    font-size: 2vw;
}
.maker-contents-wrapper .contents-heading h4 {
    font-size: 2vw;
}

.maker-contents-wrapper .contents-block {
    width: 80%;
    margin: 0 auto 5%;
}
.maker-contents-wrapper .contents-block .contents-text {
    font-size: 1.4vw;
}

.maker-contents-wrapper .contents-movie-block {
    width: 80%;
    margin: 0 auto 5%;
}
.maker-contents-wrapper .contents-movie-block .contents-movie-text {
    margin: 0 auto 3%;
    font-size: 1.4vw;
}
.maker-contents-wrapper .contents-movie-block .contents-movie {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.maker-contents-wrapper .contents-movie-block .contents-movie iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.maker-contents-wrapper .contents-text .marker {
    background: linear-gradient(transparent 60%, #fafad2 60%);
}

@media screen and (max-width: 479px) {

    .maker-contents-wrapper {
        width: 100%;
    }

    .maker-contents-wrapper .contents-image {
        margin-bottom: 5%;
    }
    .maker-contents-wrapper .contents-image.contents-main-image {
        margin-bottom: 10%;
    }

    .maker-contents-wrapper .contents-heading h3 {
        padding: 0 3%;
        text-align: center;
        font-size: 5vw;
    }
    .maker-contents-wrapper .contents-heading h4 {
        font-size: 4vw;
    }

    .maker-contents-wrapper .contents-block {
        width: 94%;
        margin-bottom: 10%;
    }
    .maker-contents-wrapper .contents-block .contents-text {
        font-size: 3.4vw;
    }

    .maker-contents-wrapper .contents-movie-block {
        width: 94%;
        margin-bottom: 10%;
    }
    .maker-contents-wrapper .contents-movie-block .contents-movie-text {
        margin-bottom: 5%;
        font-size: 3.4vw;
    }
}

#factory_product_contents {
    position: relative;
    width: 100%;
    margin-top: 5%;
    overflow: hidden;
}
#factory_product_contents h4 {
    font-size: 30px;
    letter-spacing: 0.04em;
    text-align: center;
}
#factory_product_contents h5 {
    font-size: 14px;
    margin-bottom: 24px;
}

#factory_product_contents .factory-product-contents {
    width: 90%;
    margin: 0 auto;
}
#factory_product_contents .factory-product-contents .factory-copy {
    margin-top: 3%;
    text-align: center;
    font-size: 1.6vw;
    font-weight: bold;
}
#factory_product_contents .factory-product-contents .factory-contents {
    margin-top: 3%;
}
#factory_product_contents .factory-product-contents .factory-contents img {
    width: 100%;
}

#factory_product_contents .factory-product-contents .factory-contents .factory-title {
    margin-top: 5%;
    text-align: center;
    font-size: 1.4vw;
    font-weight: bold;
}
#factory_product_contents .factory-product-contents .factory-contents .factory-description {
    margin: 2% 5% 0;
    text-align: left;
    line-height: 2;
    font-size: 14px;
}
#factory_product_contents .factory-product-contents .factory-contents .factory-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-top: 5%;
}
#factory_product_contents .factory-product-contents .factory-contents .factory-slide .factory-image {
    width: 46%;
}
#factory_product_contents .factory-product-contents .factory-contents .factory-slide .factory-text {
    width: 54%;
    padding-left: 3%;
    box-sizing: border-box;
}
#factory_product_contents .factory-product-contents .factory-contents .factory-slide .factory-text .factory-subtitle {
    margin-top: 1%;
    font-size: 1.4vw;
    font-weight: bold;
}
#factory_product_contents .factory-product-contents .factory-contents .factory-slide .factory-text p {
    margin-top: 1%;
    font-size: 1.1vw;
    line-height: 2;
}
#factory_product_contents .factory-product-contents .factory-movie {
    margin-top: 5%;
}
#factory_product_contents .factory-product-contents .factory-movie .movie-copy {
    width: 85%;
    margin: 0 auto;
}
#factory_product_contents .factory-product-contents .factory-movie .movie-copy p {
    font-size: 1.1vw;
    line-height: 2;
}
#factory_product_contents .factory-product-contents .factory-movie iframe {
    margin: 3% auto 0;
    display: block;
}

#factory_product_contents .factory-product-contents .factory-profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-top: 7%;
    padding: 1%;
    border: 1px solid #d3d5d8;
    text-align: left;
}
#factory_product_contents .factory-product-contents .factory-profile .factory-profile-image {
    width: 30%;
    padding: 1%;
}
#factory_product_contents .factory-product-contents .factory-profile .factory-profile-image img {
    width: 100%;
    vertical-align: bottom;
}
#factory_product_contents .factory-product-contents .factory-profile .factory-profile-contents {
    width: 70%;
    padding: 1% 2%;
    font-size: 1.2vw;
    line-height: 1.8;
}
#factory_product_contents .factory-product-contents .factory-profile .factory-profile-contents b,
#factory_product_contents .factory-product-contents .factory-profile .factory-profile-contents strong {
    font-size: 2vw;
}
#factory_product_contents .factory-product-contents .factory-profile .factory-profile-contents p {
    margin-top: 2%;
}
#factory_product_contents .factory-product-contents .factory-profile .factory-profile-contents a {
    text-decoration: underline;
}
#factory_product_contents .factory-product-contents .factory-profile .factory-profile-contents a:hover {
    text-decoration: none;
}

#factory_product_contents #read_more_factory {
    display: none;
}
#factory_product_contents .read-more-btn {
    display: none;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    width: 80%;
    margin: auto;
    padding: 2% 0;
    border: 1px solid #bfbfbf;
    border-radius: 5px;
    background-color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}

@media screen and (max-width: 479px) {

    #factory_product_contents {
        width: 90%;
        height: 1000px;
        margin: 10% auto 0;
        overflow: hidden;
    }

    #factory_product_contents::before {
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 15%;
        background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
        background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
        content: "";
    }
    #factory_product_contents:has(#read_more_factory:checked) {
        height: auto;
    }
    #factory_product_contents:has(#read_more_factory:checked)::before {
        display: none;
    }

    #factory_product_contents .read-more-btn {
        display: block;
    }
    #factory_product_contents:has(#read_more_factory:checked) .read-more-btn {
        display: none;
    }

    #factory_product_contents h4 {
        font-size: 6vw;
    }

    #factory_product_contents .factory-product-contents {
        width: 100%;
    }

    #factory_product_contents .factory-product-contents .factory-copy {
        margin-top: 5%;
        font-size: 4vw;
    }
    #factory_product_contents .factory-product-contents .factory-contents {
        margin-top: 5%;
    }
    #factory_product_contents .factory-product-contents .factory-contents .factory-title {
        font-size: 3.8vw;
    }
    #factory_product_contents .factory-product-contents .factory-contents .factory-slide {
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-top: 10%;
    }
    #factory_product_contents .factory-product-contents .factory-contents .factory-slide .factory-image {
        width: 100%;
    }
    #factory_product_contents .factory-product-contents .factory-contents .factory-slide .factory-text {
        width: 100%;
        margin-top: 5%;
        padding: 0;
    }
    #factory_product_contents .factory-product-contents .factory-contents .factory-slide .factory-text .factory-subtitle {
        font-size: 3.8vw;
    }
    #factory_product_contents .factory-product-contents .factory-contents .factory-slide .factory-text p {
        margin-top: 3%;
        font-size: 3.3vw;
    }

    #factory_product_contents .factory-product-contents .factory-movie {
        margin-top: 10%;
    }
    #factory_product_contents .factory-product-contents .factory-movie .movie-copy {
        width: 100%;
    }
    #factory_product_contents .factory-product-contents .factory-movie .movie-copy p {
        font-size: 3.3vw;
    }
    #factory_product_contents .factory-product-contents .factory-movie iframe {
        width: 100%;
        height: 210px;
    }

    #factory_product_contents .factory-product-contents .factory-profile {
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-top: 10%;
        padding: 5%;
    }
    #factory_product_contents .factory-product-contents .factory-profile .factory-profile-image {
        width: 100%;
        padding: 0;
    }
    #factory_product_contents .factory-product-contents .factory-profile .factory-profile-image img {
        height: 100%;
    }
    #factory_product_contents .factory-product-contents .factory-profile .factory-profile-contents {
        width: 100%;
        margin-top: 5%;
        padding: 0 5%;
        font-size: 3.4vw;
    }
    #factory_product_contents .factory-product-contents .factory-profile .factory-profile-contents b,
    #factory_product_contents .factory-product-contents .factory-profile .factory-profile-contents strong {
        font-size: 4vw;
    }
    #factory_product_contents .factory-product-contents .factory-profile .factory-profile-contents p {
        margin-top: 3%;
    }
}

#factory_product_contents .maker-contents-wrapper {
    width: 100%;
    margin: 3% auto;
}

#factory_product_contents .maker-contents-wrapper .contents-image.contents-main-image {
    margin-bottom: 5%;
}

#factory_product_contents .maker-contents-wrapper .contents-heading h3 {
    font-size: 1.6vw;
    text-align: center;
}
#factory_product_contents .maker-contents-wrapper .contents-heading h4 {
    font-size: 1.4vw;
}

#factory_product_contents .maker-contents-wrapper .contents-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}
#factory_product_contents .maker-contents-wrapper .contents-block .contents-heading {
    width: 100%;
    margin-bottom: 2%;
}
#factory_product_contents .maker-contents-wrapper .contents-block .contents-image {
    width: 46%;
    margin: 0;
}
#factory_product_contents .maker-contents-wrapper .contents-block .contents-text {
    width: 100%;
    font-size: 1.1vw;
}
#factory_product_contents .maker-contents-wrapper .contents-block .contents-image + .contents-text {
    width: 54%;
    padding: 0.5% 0 0 2%;
    box-sizing: border-box;
}

#factory_product_contents .maker-contents-wrapper .contents-movie-block .contents-movie-text {
    font-size: 1.1vw;
}

@media screen and (max-width: 479px) {

    #factory_product_contents .maker-contents-wrapper .contents-image {
        margin-bottom: 5%;
    }
    #factory_product_contents .maker-contents-wrapper .contents-image.contents-main-image {
        margin-bottom: 10%;
    }

    #factory_product_contents .maker-contents-wrapper .contents-heading h3 {
        padding: 0;
        font-size: 4vw;
    }
    #factory_product_contents .maker-contents-wrapper .contents-heading h4 {
        font-size: 3.8vw;
    }

    #factory_product_contents .maker-contents-wrapper .contents-block {
        width: 94%;
        margin-bottom: 10%;
    }
    #factory_product_contents .maker-contents-wrapper .contents-block .contents-image {
        width: 100%;
        margin-bottom: 5%;
    }
    #factory_product_contents .maker-contents-wrapper .contents-block .contents-text {
        font-size: 3.3vw;
    }
    #factory_product_contents .maker-contents-wrapper .contents-block .contents-image + .contents-text {
        width: 100%;
        padding: 0;
    }

    #factory_product_contents .maker-contents-wrapper .contents-movie-block .contents-movie-text {
        font-size: 3.3vw;
    }
}