@charset "utf-8";

/* =======================
　　　SP・共通部分
======================= */

section{
    margin: 70px auto;
    padding: 0 10px;
}

/* 全画面にしたい要素 */
section.victorysuit,
section.special,
section.features {
    padding: 0;
}

/* メインビジュアル */
.philosophy_main_visual{
    width: 100%;
    height: 100vh;
    background-image: url("/philosophy/img/philosophy_main.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

.factory_main_visual{
    width: 100%;
    height: 100vh;
    background-image: url("/philosophy/img/factory_main.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

.philosophy_main_visual h2,
.factory_main_visual h2{
    padding: 0 15px;
    color: #fff;
    font-size: 1.3em;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    letter-spacing: 4px;
}

.shop_main_txt,
.factory_main_txt{
    font-size: 0.9em;
}

p.factory_main_text_inner {
    font-size: 0.6em;
    padding-top: 15px;
}

section h3{
    font-size: 1.3em;
    text-align: center;
    margin-bottom: 60px;
    margin-top: 30px;
    position: relative;
}

section h3::before{
    content: '';
    width: 11%;
    height: 1px;
    display: inline-block;
    background-color: #d2d2d2;
    position: absolute;
    bottom: 17px;
    left: calc(10% - 28px);
}

section h3::after{
    content: '';
    width: 11%;
    height: 1px;
    display: inline-block;
    background-color: #d2d2d2;
    position: absolute;
    bottom: 17px;
    right: calc(10% - 28px);
}


/* -------PHILOSOPHYページ--------- */

/* victory suit */
.vs_box {
    padding: 4em 0;
    background: ghostwhite;
}

.vs_box h2 {
    text-align: center;
    padding-bottom: 1em;
    color: #b8a035;
}

.vs_box p {
    padding: 0 10px;
    line-height: 2;
}

.vs_box .flex {
    display: flex;
    flex-wrap: wrap;
    flex-flow: column-reverse;
}

img.vs_image {
    width: 60%;
    margin: 0 auto;
    padding: 2em 0;
}

p.detail_inner {
    line-height: 2;
}


/* special */
.special_box{
    background-image: url(../img/philosophy_special.jpg);
    background-size: cover;
    background-attachment: local;
    background-position: center center;
    overflow: hidden;
    padding-top: 60px;
    padding-bottom: 60px;
    color: #FFF;
}

.special_box h2 {
    text-align: center;
    padding-bottom: 1em;
}

.special_item{
    position: relative;
    margin: 0 10px;
    margin-bottom: 2em;
    padding: 5px;
    margin-right: 18px;
}

.special_item h4 {
    font-size: 21px;
    padding-left: 1em;
    padding-top: 1em;
}

.bg{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    opacity: 0.4;
    top: 0;
    bottom: 0;
}

.special_item ul {
    width: 78%;
    margin: 0 auto;
    line-height: 2;
    padding: 1em 0;
}


/* values */
.values_box {
    text-align: center;
}

.values_item {
    padding-bottom: 3em;
    line-height: 2;
}

.values_item h4 {
    font-size: 1.2em;
    padding-bottom: 1.5em;
    position: relative;
}

.values_item h4::after{
    content: '';
    width: 95%;
    height: 1px;
    display: inline-block;
    background-color: #d2d2d2;
    position: absolute;
    bottom: 17px;
    left: calc(10% - 28px);
}


/* -------FACTORYページ--------- */

.slick-list.draggable {
    width: 60%;
    margin: 0 auto;
}

.features_box {
    width: 100%;
    padding: 1em;
}

.features_box ul {
    width: 70%;
    margin: 0 auto;
}

.features_box li {
    margin: 1em 0;
}

.features_inner {
    padding: 2em 0;
    background: ghostwhite;
    margin:50px 0;
}

.features_inner p {
    padding: 0 10px;
}

.factory_slide_wrap {
    margin-bottom: 4em;
}

.factory h1{
    padding: 2em 0;
    font-size: 1.8em;
    text-align: center;
    padding-bottom: 0;
}

.factory h5 {
    text-align: center;
    padding-top: 1em;
    font-size: 1.2em;
}

.factory_inbox {
    background: ghostwhite;
    padding: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9em;
    width: 100%;
    margin: 25px auto;
}

.in_left {
    width: 50%;
    font-weight: bold;
    margin-right: 0em;
    position: relative;
}

.in_left .factory_item{
    position: relative;
}

.in_left .factory_item::after{
    content: "";
    background: url(/philosophy/img/icon_arrow_black.png);
    display: inline-block;
    position: absolute;
    top: 14%;
    width: 21px;
    height: 22px;
    background-repeat: no-repeat;
    right: -24%;
    transform: translateX(-13%);
}

.in_right {
    width: 48%;
    margin-left: 3em;
}

p.factory_item {
    margin: 1em 0;
}

.fabric ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px 0;
}

.fabric li {
    width: 47%;
    padding: 2px;
}

p.asutarisk {
    padding: 0 1em;
}

/* =======================
　　　      PC
======================= */

@media screen and (min-width:769px) {

    section{
        padding: 0;
    }

    .flex{
        display: flex;
    }

    section h3,
    section h2{ 
        font-size: 30px;
    }
    
    .philosophy_main_visual h2,
    .factory_main_visual h2{
        padding: 0 10%;
        color: #fff;
        font-size: 1.7em;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
    }
    
     p.philosophy_main_text_inner,
     p.factory_main_text_inner{
        font-size: 0.5em;
        padding-top: 1em;
    }
    
    .philosophy_main_txt,
    .factory_main_txt{
        font-size: 0.9em;
        margin-left: 60px;
    }

    section h3::before {
        content: '';
        width: 7%;
        bottom: 17px;
        left: calc(32% - 28px);
    }

    section h3::after {
        content: '';
        width: 7%;
        bottom: 17px;
        right: calc(32% - 28px);
    }

    p.detail_inner {
        text-align: center;
        line-height: 2.5;
    }


    /* -------PHILOSOPHYページ--------- */

    /* victory suit */
    .vs_box .flex {
        display: flex;
        flex-flow: wrap;
        justify-content: center;
        padding: 4em 0;
    }

    .flex p {
        line-height: 2.5;
    }

    img.vs_image {
        width: 26%;
        padding: 0;
        margin: 0;
    }

    /* special */
    .special_item {
        position: relative;
        margin: 0;
        margin-bottom: 2em;
        padding: 5px;
        width: 45%;
    }

    .special_box .flex {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 3em;
    }

    .special_item {
        position: relative;
        margin: 0 33px;
        margin-bottom: 4em;
        padding: 5px;
        width: 36%;
    }

    .special_item h4 {
        font-size: 23px;
        padding-left: 2em;
        padding-top: 1em;
    }

    /* values */
    .values_item h4::after {
        content: '';
        width: 19%;
        bottom: 17px;
        left: calc(42% - 28px);
    }

    p.values_inner {
        width: 60%;
        margin: 0 auto;
}    


/* -------FACTORYページ--------- */
h1{
    padding: 0;
    font-size: 1.8em;
    text-align: center;
    padding-bottom: 0;
}

.flex_box{
    display: flex;
}

.features_box {
    width: 50%;
    padding: 2em;
}

img.features_image {
    width: 44%;
}

.factory_inbox {
    background: ghostwhite;
    padding: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9em;
    width: 66%;
    margin: 25px auto;
}

p.detail_inner{
    padding-bottom: 3em;
    font-size: 14px;
}

.in_left {
    width: 30%;
    font-weight: bold;
    margin-right: 5em;
    position: relative;
}

.in_right {
    width: 30%;
    margin-left: 5em;
}

img.fabric_image {
    width: 60%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;
}

.fabric ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 24px 0;
    width: 60%;
    margin: 0 auto;
}

.fabric li {
    width: 33%;
    padding: 2px;
}

p.asutarisk {
    padding: 0 19em;
}

}
