@charset "utf-8";

/* navHeight */
.navHeight{
    width: 100%;
    height: 120px;
}
@media (max-width:1024px){
    .navHeight{
        height: 0px;
    }
}

/* pageWrap */
.pageWrap{
    background-image: url(../images/top/bg01.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    position: relative;
}
.pageWrap:before{
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg,#fff,transparent);
    position: absolute;
    top: 0;
    left: 0;
}
.pageWrap_inner{
    position: relative;
}

/* pageTtl */
.pageTtl h2{
    font-family: "EB Garamond", serif;
    font-size: 2.5em;
    font-weight: 300;
    color: #727171;
    text-align: center;
    padding: 80px 0;
}
@media (max-width:1500px){
    .pageTtl h2{
        font-size: 2.25em;
    }
}

/* mainTxt */
.pageWrap_inner>.mainTxt{
    width: 1100px;
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 80px;
}
.mainTxt h3{
    font-size: 1.75em;
    letter-spacing: 0.25em;
    font-weight:400;
    margin-bottom: 30px;
}
.mainTxt p{
    font-size: 1em;
    line-height: 2;
}
.mainTxt p.em{
    font-size: 1.5em;
    margin-bottom: 20px;
}
.mainTxt .imgRow{
    margin-top: 50px;
}
.mainTxt .imgRow ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.mainTxt .imgRow ul li{
    width: 22%;
}
.mainTxt .imgRow ul li .imgBox{
    margin-bottom: 10px;
}
.mainTxt .imgRow ul li .txtBox h4{
    font-size: 0.9em;
    font-weight: 400;
    margin-bottom: 0;
}
.mainTxt .imgRow ul li .txtBox p{
    font-size: 0.8em;
    line-height: 1.4;
}
.under1200,
.under500{
    display: none;
}
@media (max-width:1200px){
    .mainTxt h3{
        font-size: 1.5em;
    }
    .mainTxt p{
        font-size: 0.9em;
    }
    .mainTxt p.em{
        font-size: 1.25em;
    }
    .mainTxt .imgRow ul li .txtBox h4{
        font-size: 0.8em;
    }
    .mainTxt .imgRow ul li .txtBox p{
        font-size: 0.75em;
    }
    .under1200{
        display: block;
    }
}
@media (max-width:768px){
    .pageWrap_inner>.mainTxt{
        max-width: 70%;
    }
    .mainTxt .imgRow ul li{
        width: 48%;
        margin-bottom: 20px;
    }
    .mainTxt .imgRow ul li:nth-child(3),
    .mainTxt .imgRow ul li:nth-child(4){
        margin-bottom: 0px;
    }
}
@media (max-width:500px){
    .pageWrap_inner>.mainTxt{
        max-width: 80%;
    }
    .under500{
        display: block;
    }
}

/* locationImg */
.brandMap{
    width: 1100px;
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 80px;
}
.brandMap p{
    font-size: 1em;
    line-height: 2;
}
.brandMap p.em{
    font-size: 1.5em;
    margin-bottom: 20px;
}
.brandMap .mapBox{
    margin-top: 50px;
}
@media (max-width:1200px){
    .brandMap p{
        font-size: 0.9em;
    }
    .brandMap p.em{
        font-size: 1.25em;
    }
}
@media (max-width:500px){
    .brandMap{
        max-width: 90%;
    }
}

/* bgWrap */
.bgWrap{
    background-image: url(../images/brand/bg01.jpg);
    background-attachment: fixed;
    background-size: cover;
}

/* swiper */
.swiper,
.swiper02{
    overflow: hidden;
}
/* スライドの動き等速 */
.swiper-wrapper {
    transition-timing-function: linear;
}
/* 画像のサイズ調整 */
.swiper-slide img {
height: auto;
width: 100%;
}
.swiper-slide p:before{
    content: '';
    width: 100%;
    height: 30px;
    background: linear-gradient(180deg,transparent,#000);
    position: absolute;
    bottom: 0;
    left: 0;
}
.swiper-slide p span{
    font-size: 0.75em;
    color: #fff;
    position: absolute;
    bottom: 0.25em;
    left: 0.25em;
}

/* achievements */
.relative{
    position: relative;
}
.absolute{
    position: absolute;
    top: 0;
    left: 0;
}
.achievements{
    padding: 80px 0;
}
.achievementsWrap{
    width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.achievementsWrap h3{
    font-size: 1.5em;
    font-weight: 400;
    letter-spacing: 0.1em;
    padding: 0 1em;
    padding-bottom: 10px;
    margin-bottom: 50px;
    display: inline-block;
    position: relative;                
}
.achievementsWrap h3:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right,transparent,#000 25%,#000 75%,transparent);
}
.achievementsWrap ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.achievementsWrap ul li{
    width: 31%;
}
@media (max-width:1500px){
    .achievementsWrap{
        width: 73.33%;
    }
}
@media (max-width:1200px){
    .achievementsWrap{
        width: 80%;
    }
}
@media (max-width:768px){
    .achievementsWrap ul{
        justify-content: center;                    
    }
    .achievementsWrap ul li{
        width: 48%;
    }
    .achievementsWrap ul li:first-of-type{
        margin-right: 4%;
    }
    .achievementsWrap ul li:first-of-type,
    .achievementsWrap ul li:nth-of-type(2){
        margin-bottom: 20px;
    }
}
@media (max-width:500px){
    .achievementsWrap{
        width: 90%;
    }
}

/* business */
.business{
    padding: 80px 0;
    position: relative;
    margin-bottom: 80px;
}
.businessWrap{
    width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.businessWrap>.txtWrap{
    margin-bottom: 30px;
}
.businessWrap .txtWrap h3{
    font-size: 2.5em;
    line-height: 1.2;
    font-weight: 500;
    color: #717071;
    display: inline-block;
    padding: 0 1em;
    padding-bottom: 10px;
    border-bottom: 1px solid #717071;
    margin-bottom: 10px;
}
.businessWrap .txtWrap h3 span{
    font-size: 0.5em;
    font-weight: 500;
}
.businessWrap .txtWrap p{
    font-size: 1.25em;
    letter-spacing: 0.1em;
    color: #717071;
}
.businessWrap>ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.businessWrap>ul>li{
    width: 48%;
}
.businessWrap>ul>li{
    width: 48%;
    text-align: left;
    margin-bottom: 50px;
}
.businessWrap>ul>li:last-of-type{
    margin-bottom: 0px;
}
.businessWrap>ul>li>h4{
    margin-bottom: 20px;
}
.businessWrap>ul>li>.listRow,
.businessWrap>ul>li>.listWrap>ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.businessWrap>ul>li>.listRow,
.businessWrap>ul>li>.listWrap{
    margin-bottom: 20px;
}
.businessWrap>ul>li>.listRow>.listBox,
.businessWrap>ul>li>.listWrap>ul>li{
    width:48%;
}
.businessWrap>ul>li>.listRow>.listBox>h5{
    font-family: "Noto Sans JP", serif;
    font-size: 1em;
    font-weight: 400;
    color: #717071;
    margin-bottom: 5px;
}
.businessWrap>ul>li>.listRow>.listBox>ul>li,
.businessWrap>ul>li>.listWrap>ul>li{
    font-family: "Noto Sans JP", serif;
    font-size: 0.8em;
    font-weight: 400;
    color: #717071;
    margin-bottom: 10px;
    padding-left: 2em;
    box-sizing: border-box;
    position: relative;
}
.businessWrap>ul>li>.listRow>.listBox>ul>li:before,
.businessWrap>ul>li>.listWrap>ul>li:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1.5em;
    height: 1.5em;
    background-color: #717071;
}
.businessWrap>ul>li>.imgWrap{
    width: 100%;
}
@media (max-width:1500px){
    .businessWrap{
        width: 73.33%;
    }
}
@media (max-width:1200px){
    .businessWrap{
        width: 80%;
    }
    .businessWrap .txtWrap h3{
        font-size: 2.25em;
    }
}
@media (max-width:992px){
    .businessWrap{
        width: 500px;
    }
    .businessWrap>ul>li{
        width: 100%;
    }
}
@media (max-width:768px){
    .businessWrap{
        width: 400px;
    }
}
@media (max-width:500px){
    .businessWrap{
        width: 80%;
    }
}