@charset "UTF-8";
/* ーーーーーーーーーーーー
base
ーーーーーーーーーーーーーー*/
html{
    font-size: 62.5%;
}

body{
    font-size: 1.6rem;
    color: #333;
    font-family: 'Montserrat','Noto Sans JP', sans-serif;;
}

img,svg{
    width: 100%;
    vertical-align: bottom;
}

a{
    text-decoration: none;
    display: inline-block;
}

a:hover{
    opacity: .7;
    transition: .3s;
}

button{
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}

.section_wrapper{
    padding: 60px 0;
}


.content_wrapper{
    max-width: 1100px;
    padding: 4%;
    margin: 0 auto;
}


.section_title{
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.link_btn{
    color: #fff;
    background-color: #000;
    width: 160px;
    line-height: 36px;
    font-size: 1.2rem;
    text-align: center;
    font-weight: bold;
    margin-top: 30px;
}

.gray_bg{
    background-color:#F0F0F0 ;
}

.lines{
    line-height: 2;
}


/* ーーーーーーーーーーーー
header
ーーーーーーーーーーーーーー*/
.logo{
    width: 260px;
    position: fixed;
    top:30px;
    left:4vw;
    z-index: 1;
}

.logo.black path{
    filter: invert(100%);
}

.header_nav{
    font-size: 2rem;
    font-weight: bold;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 36.1vw;
    text-align: center;
    padding: 120px 0 0;
    background-color: rgba(34, 34, 34, .95);
    z-index: 2;
    transform: translateX(100%);
    opacity: 0;
    transition: transform .3s,opacity.3s;
}

.nav_item{
    margin-bottom: 30px;
}
.nav_item:first-of-type{
    margin-bottom: 40px;
}

.nav_item:last-of-type{
    margin-bottom: 0;
}

.header_nav a{
    color: #fff;
}

/* burgerボタン　メニューが開いていない時 */
.buger_btn{
    display:flex;
    align-items: center;
    position: fixed;
    top: 36;
    right: 4vw;
    z-index: 3;
}

.bar{
    display: block;
    background-color: #fff;
    height: 2px;
    width: 22px;
    border-radius: 1px;
}
.bar_top{
    transform: translateY(-4px);
    transition: transform .3s;
}

.bar_bottom{
    transform: translateY(4px);
    transition: transform .3s;

}


.menu{
    display: block;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    margin-left: 7px;
}

/* burgerボタン(メニューが開いた時） */
.bar.cross.bar_top{
    transform: translateY(2px);rotate:(30deg);
    transition: transform .3s;
}

.bar.cross.bar_mid{
    opacity: 0;
    transition: opacity .3s;
}
.bar.cross.bar_bottom{
    transform: translateY(-2px);rotate:(-30deg);
    transition: transform .3s;
}

/* ハンバーガーメニューが開いた時 */
body.noscroll{
    overflow: hidden;
}

.header_nav.open{
    transform: translateX(0);
    opacity: 1;
    transition: transform .3s,opacity.3s;  
}

.burger_musk{
    display: none;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.5);
    z-index: 1;
}

.buger_btn.black .bar{
    background-color: #333;
    transition: background-color .3s;
}

.buger_btn.black.menu{
    color: #333;
    transition: color.3s;
}

/* ーーーーーーーーーーーー
key-visual
ーーーーーーーーーーーーーー*/
.fv{
    height: 60vh;
    min-height: 450px;
}

.fv::after{
    content:"";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #222;
    height: 60vh;
    min-height: 450px;
    width: 50%;
    z-index: -1;
}

.kv_wrapper{
    height: 86.5%;
    width: 76.4%;
    background-image: url(../img/jacek-dylag-PMxT-2.png);
    background-size: cover;
    background-position: center;
    position: relative;
}

.copy_wrapper{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%,-50%);
    color: #fff;
}

.copy_en_large{
    font-size: 7.2rem;
    font-weight: bold;
}
.copy_s{
    font-size: 2rem;
    line-height: 2.8;
    font-weight: bold;
    text-transform: uppercase;
}

/* ーーーーーーーーーーーー
VISION
ーーーーーーーーーーーーーー*/
.section_wrapper:first-of-type{
    padding-top: 120px;

}

.vision_wrapper{
    padding-left: 15.7vw;

}

.vision{
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.vision_text{
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 3.2;
}

/* ーーーーーーーーーーーー
CEO MESSAGE
ーーーーーーーーーーーーーー*/
.ceo_img_wrapper{
    width: 38vw;
    position: absolute;
    top: 0;
    left: 30px;

}

.vision_content{
    width: 840px;
    max-width: 70%;
    margin-left: auto;
    padding: 120px 0 60px;
}

.vision_content_inner{
    max-width: 400px;
    padding: 0 30px;
    margin: 0 auto;

}

.relative{
    position: relative;
    padding-top: 150px;

}

.ceo_message{
    font-weight: bold;
}

/* ーーーーーーーーーーーー
company
ーーーーーーーーーーーーーー*/
.company_info_list{
    border-top: 1px solid #ddd;
    margin-bottom: 20px;
}

.company_info_list>div{
    display: flex;
    padding: 20px 0;
    max-width: 800px;
    margin-left: auto;
    border-bottom: 1px solid #ddd;

}

.company_info_title{
    font-weight: bold;
    flex-basis: 142px;
}

.maps_outer{
    position: relative;
    width: 100%;
    height:0;
    padding-top:32.7%;
}

.maps_outer iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* ーーーーーーーーーーーー
footer
ーーーーーーーーーーーーーー*/
.container{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
 }

.footer{
    line-height: 50px;
    color: #fff;
    background-color: #525252;
    font-size: 1rem;
    text-align: center;
    margin-top: auto;
}

/* ーーーーーーーーーーーー
スマホ版
ーーーーーーーーーーーーーー*/
@media screen and (max-width:768px) {
/* ーーーーーーーーーーーー
tb-base
ーーーーーーーーーーーーーー*/
body{
    font-size: 1.4rem;
}

.section_wrapper{
    padding: 40px 0;
}

.content_wrapper{
    padding: 0 4vw;
}

/* ーーーーーーーーーーーー
tb-header
ーーーーーーーーーーーーーー*/
.logo{
    width: 180px;
    top: 21px;
}


.buger_btn{
    top: 28px;
}

.header_nav{
    width: 67.7vw;
}
/* ーーーーーーーーーーーー
tb-fv
ーーーーーーーーーーーーーー*/
.copy_wrapper{
    right: -15%;
    transform: translate(0,-50%);
}
.copy_en_large{
    font-size: 5.2rem;  
}

.copy_s{
    font-size: 1.6rem;
}



/* ーーーーーーーーーーーー
tb-vision
ーーーーーーーーーーーーーー*/
.section_wrapper:first-of-type{
    padding: 80x;
}

.vision{
    font-size: 2.4rem;
}

.vision_text{
    font-size: 1.4rem;
}

.vision_text lines{
    line-height: 2.8;
}


/* ----------------------- */
/* tb-section_message
/* ----------------------- */
.section_wrapper:last-of-type{
    padding: 80px;
}

.content_wrapper.relative{
   padding-top: 120px;
}

.ceo_img_wrapper{
   width: 100%;
   max-width: 320px;
}
}

@media screen and (max-width:480px) {

/* ーーーーーーーーーーーー
sp-vision
ーーーーーーーーーーーーーー*/
.vision_wrapper{
    padding-left: 0;
}

/* ーーーーーーーーーーーー
sp-message
ーーーーーーーーーーーーーー*/
.vision_content{
    width: 100%;
    max-width: 100%;
}

.ceo_img_wrapper{
    max-width: 90%;
    left: 0;
}

.ceo_img_wrapper img{
    height: 226px;
    object-fit: cover;
}
/* ーーーーーーーーーーーー
sp-company
ーーーーーーーーーーーーーー*/
.maps_outer{
    padding-top: 140%;
}
}