@charset "UTF-8";

html{
    height: 100%;
    width: 100%;
    font-size: 62.5%;
    overflow-x: hidden;
}
body{
    margin: 0 auto;
    padding: 0;
    font-size: 1.6rem;
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
}


header,main,footer{
    display:block;
    margin:0 auto;
    clear:both;
}

img{
    width:100%;
}



.pc{display: block !important;}
.sp{display: none !important;}
/* span.pc{display: inline !important;}  */

@media only screen and (max-width: 640px){
    .pc{display: none !important;}
    .sp{display: block !important;}
}

/*====================================================================
    動き
====================================================================*/


  /* 下から */

  .fadeUp{
    animation-name:fadeUpAnime;
    animation-duration:3s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
    @keyframes fadeUpAnime{
      from {
        opacity: 0;
      transform: translateY(100px);
      }
    
      to {
        opacity: 1;
      transform: translateY(0);
      }
    }


    .fadeUpTrigger,.fadeLeftTrigger,.fadeRightTrigger{
        opacity: 0;
    }




/* 左から */
.fadeLeft{
    animation-name:fadeLeftAnime;
    animation-duration:3.0s;
    animation-fill-mode:forwards;
    opacity:0;
}
@keyframes fadeLeftAnime{
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 右から */
.fadeRight{
    animation-name:fadeRightAnime;
    animation-duration:2.0s;
    animation-fill-mode:forwards;
    opacity:0;
}
@keyframes fadeRightAnime{
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}




/*====================================================================*/



/*====================================================================
    header
====================================================================*/


/*==========header pc用 background==========*/
@media screen and (min-width:641px){
    header{
        width:100%;
        height:calc( 100vw * 0.465 );
        max-height: 900px;
        /* background-color: #EB6D65; */
        font-family: 'Roboto', sans-serif;
    }

}


    .header_menu{
        height:70px;
        margin: 0 auto;
        width: 100%;
        position:fixed;
        z-index: 99;
        background-color: #000;
    }
    .pc_header_wrapper{
        margin:0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 70px;
        place-items: baseline;
        width: 90%;
    }
    @media only screen and (max-width: 1000px) {
        .pc_header_wrapper{
            margin:0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 70px;
            place-items: baseline;
            width: 90%;
        }
    }

    .pc_header_wrapper .item1{
        grid-column-start: 1;
        grid-column-end: 2;
    }

    .pc_header_wrapper .item2{
        grid-column-start: 2;
        grid-column-end: 3;
    }

    .pc_header_wrapper .item3{
        grid-column-start: 3;
        grid-column-end: 4;
    }

    .pc_header_wrapper .item01 img{
        max-width: 120px;
    }


    .header_menu .main_ul{
        list-style:none;
        display: flex;
        justify-content: space-around;
        color:#ffffff;
        margin-block-start:0em;
        margin-block-end: 1em;
        margin-inline-start: 0px;
        margin-inline-end: 0px;
        align-items: flex-start;
        max-width: 565px;
        margin:0 auto;
        padding-top: 5px;
        letter-spacing: 3px;
        gap: 2vw;
    }

    .main_ul li a{
        list-style: none;
        color: #ffffff;
        text-decoration: none;
        font-weight: bold;
    }
    .main_ul li{
        list-style: none;
        color: #ffffff;
        text-decoration: none;
        font-weight: bold;
    }
    .sns_ul{
        list-style:none;
        display: flex;
        justify-content: space-around;
        color:#ffffff;
        margin-block-start:0em;
        margin-block-end: 1em;
        margin-inline-start: 0px;
        margin-inline-end: 0px;
        align-items: flex-start;
        max-width: 130px;
        margin: 0 0 0 auto;
        gap: 1vw;
    }



    .sns_ul img{
        max-width:33px;
    }


    .pc_menu{
        margin-block-start: 1em;
        /* padding-inline-start: 10px; */
    }

    .pc_menu a{
        position: relative;
        display: inline-block;
    }

    .pc_menu_sns{
        margin-block-start: 1em;
        /* padding-inline-start: 10px; */
    }

    .pc_menu_sns a{
        position: relative;
        display: inline-block;
    }

    .pc_menu_sns a:hover{
        opacity: 0.7;
    }

    .pc_menu a:-webkit-any-link {
        color:#ffffff;
        text-decoration: none;
        font-weight: bold;
    }

    .pc_menu a::after {
        position: absolute;
        bottom: -4px;
        left: 0;
        content: '';
        width: 100%;
        height: 2px;
        background: #ffffff;
        transform: scale(0, 1);
        transform-origin: left top;
        transition: transform .3s;
      }
      .pc_menu a:hover::after {
        transform: scale(1, 1);
      }


@media only screen and (max-width: 768px) {
    .header_menu{
        height:60px;

    }

}

/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:0;
    right: -100%;
	width:30%;
    height: 100vh;/*ナビの高さ*/
	background: rgba(0,0,0,0.7);
    /*背景色（グラデーション）*/
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list_sp{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 30%;
    height: 50vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*横幅が768px以下になった際の指定*/
@media only screen and (max-width: 768px) {
    #g-nav,
    #g-nav.panelactive #g-nav-list_sp{
        width:60%;
        height: 450px;
    }
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center;
}

#g-nav li a{
	color: #ffffff;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
    transition: all .5s;
    font-size:1.5rem;
}

#g-nav li a:hover{
    color:#ccc;
}


.openbtn {
    position: fixed;
    z-index: 9999;
    top: 5px;
    right: 0px;
    cursor: pointer;
    width: 60px;
    height: 60px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 2px;
	background-color: #ffffff;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

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

    .sp_header{
        padding: 15px 0 0 15px;
    }

    .sp_header img{
        width: 100px;

    }

    .sns_ul_sp{
        list-style:none;
        display: flex;
        justify-content: space-around;
        color:#ffffff;
        margin-block-start:0em;
        margin-block-end: 1em;
        margin-inline-start: 0px;
        margin-inline-end: 0px;
        align-items: flex-start;
        max-width: 200px;
        margin: 0 0 0 auto;
        gap: 1vw;
    }
    .sns_ul_sp .pc_menu_sns img{
        max-width: 45px;
    }
}




/*====================================================================
    main
====================================================================*/
/*main*/
section{
    text-align: center;
    display: block;
    margin: 0 auto;
}
section .content{
    width: 96%;
    max-width: 1000px;
    text-align: center;
    display: block;
    margin: 0 auto;
    padding: 170px 0;
}
@media screen and (max-width:1200px){
    section .content{
        width: 96%;
        max-width: 1000px;
        text-align: center;
        display: block;
        margin: 0 auto;
        padding: 130px 0;
    }
}

@media screen and (max-width:640px){
    section .content{
        width: 95%;
        padding: 70px 0 50px;
    }
}






/*====================================================================
    MV
====================================================================*/

.MV_block{
    max-width: 100%;
    background-color: #000;
    padding-top: 70px;
}

.MV{
    max-width:1450px;
    text-align: center;
    margin:0 auto;
    background-image: url(../img/pc/MV_pc.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-bottom:20px;
    position: relative;
    z-index: 3;
}


.MV img{
    max-width: 390px;
    margin:0 auto;
    padding: 107px 0 35px 0;
}

.MV .MV_text{
    font-size: 2.4rem;
    text-align: center;
    color: #ffffff;
    line-height: 2.5rem;
    padding-bottom: 350px;
    font-weight: 700;
}

#About{
    display: block;
    padding-top: 70px;
    margin-top: -70px;
}

.philosophy_box{
    max-width: 1120px;
    margin:0 auto;
}

.MV h1{
    font-size: 10rem;
    font-weight: 900;
    color: #ffffff;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.maincopy_area{
    padding-bottom:30px;
}

.maincopy{
    font-size: 10rem;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    line-height: 9rem;
}

.maincopy span{
    text-transform: uppercase;
}

.maincopy hr{
    border-bottom: 2px solid #ffffff;
}



.philosophy_text{
    margin: 0 0 0 auto;
    display: table;
}

.philosophy_jp{
    text-align: left;
    font-size: 2.8rem;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight:bold;
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 60px;

}

.philosophy_en{
    text-align: left;
    font-size: 1.6rem;
    font-weight:700;
    line-height: 2rem;
    color: #ffffff;
}

.fade-in .fade-in_item{
	position: relative;
	/* アニメーションに関数プロパティ */
	opacity: 0; 	/* フェードインしたいので最初は非表示 */
	bottom: -15px; 	/* 下から上に移動したいので最初はマイナス値 */
	transition: 1s; /* 1秒かけてアニメーション */

}

/* スクロールした時に追加されるclass */
.fade-in .fade-in_item.fadein {
	opacity: 1;
	bottom: 0;
}

@media screen and (max-width:1100px){
    .MV img{
        max-width: 30%;
        padding: 107px 0 70px 0;
    }
    .MV .MV_text {
        line-height: 3rem;
        padding-bottom: 150px;
    }
    .philosophy_box {
        max-width: 90%;
        margin: 0 auto;
    }
}

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

    .MV{
        max-width:100%;
        background-image: url(../img/sp/MV_sp.png);
        background-size: contain;
        background-position: top;
    }
    
    .MV img{
        max-width: 40%;
        padding: 107px 0 70px 0;
    }
    .MV .MV_text {
        line-height: 3rem;
        padding-bottom: 150px;
    }
    .philosophy_box {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .maincopy{
        font-size: 9rem;
        line-height: 8rem;
    }
    .philosophy_jp{
        margin-top: 100px;
    }

}

@media screen and (max-width:680px){
    .MV{
        max-width:100%;
        background-image: url(../img/sp/MV_sp.png);
        background-size: contain;
        background-position: top;
        padding-bottom: 20px;
    }


    .MV img{
        padding: 40px 0 35px 0;
    }

    .MV .MV_text{
        font-size: 1.1rem;
        line-height: 1.5rem;
        padding-bottom: 50px;

    }

    .MV h1{
        font-size: 4.5rem;
    }

    .maincopy{
    font-size: 4.5rem;
    line-height: 4rem;
}

    .philosophy_box{
        max-width: 88%;
    }

    .philosophy_text{
        margin: 0 auto;
    }

    .philosophy_jp{
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 10px;
        margin-top: 0;
    }

    .philosophy_en{
        text-align: center;
        font-size: 1rem;
        line-height: 1.5rem;
        padding-bottom: 10px;
    }



}

/*====================================================================
    ABOUT
====================================================================*/

.ABOUT{
    max-width: 100%;
    background-color: #000;
    color: #ffffff;
    padding-top: 750px;
    font-family: 'Roboto', sans-serif;
    text-align: left;
}

@media screen and (max-width:1450px){
    .ABOUT{
        padding-top: 920px;
    }
}

@media screen and (max-width:1170px){
    .ABOUT{
        padding-top: 950px;
    }
}

.about_background{
    max-width:1450px;
    margin: 0 auto;
    background-image: url(../img/pc/About_bg_pc.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding:0 0 70px 0;

}

.mission_area{
    max-width:1300px;
    margin:0 auto;
}


.mission_title{
    max-width: 440px;
    margin-top: 50px;
}

.mission{
    font-size: 8.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
    margin-top: -20px;
    padding-left: 100px;
}

.mission_title hr{
    border: none;
    border-bottom: 2px solid #ffffff;
    margin: -20px -50px 0 75px;
}

.mission_flex{
    max-width: 640px;
    display: flex;
    margin: 0 0 0 auto;
    gap:50px;
}

.mission_number{
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 6.7rem;
    font-weight: bold;
    margin-top: -30px;
}

.mission_number span{
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 4.8rem;
    font-weight: bold;
}



.mission_text_jp{
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size:1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.mission_text_en{
    font-family: 'Roboto', sans-serif;
    font-size:1.6rem;
    font-weight: 700;
    line-height: 2rem;
}

.mission-item01{
    margin-bottom: 45px;
}





.vision_area{
    max-width:1300px;
    margin:0 auto;
    text-align: center;
}


.vision{
    font-size: 8.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 80px;
}


.vision_title{
    max-width: 440px;
    margin:0 auto;
}

.vision_title hr{
    border: none;
    border-bottom: 2px solid #ffffff;
    margin: -20px 0 0 0;
}

.vision_text_jp{
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 4.5rem;
    font-weight: bold;
    margin-top: 50px;
    letter-spacing: 2.5px;
}

.vision_text_en{
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 10px;
}


.corevalues_background{
    max-width:1450px;
    margin: 0 auto;
    background-image: url(../img/pc/corevalue_bg_pc.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-bottom: 600px;

}



.corevalues_area{
    max-width:1300px;
    margin:0 auto;
}

.corevalues_title{
    max-width: 650px;
    margin-bottom: 70px;
}

.corevalues{
    font-size: 8.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
    padding-left: 100px;
}

.corevalues_title hr{
    border: none;
    border-bottom: 2px solid #ffffff;
    margin: -20px -20px 0 75px;
}

.corevalues_item_area{
    max-width: 1100px;
    margin:0 auto;
}

.corevalues_item01{
    max-width: 750px;
    display: flex;
    justify-content: space-between;
    gap:250px;
}

.corevalues_item02{
    max-width: 870px;
    display: flex;
    justify-content: space-between;
    gap:250px;
    margin: 65px 0 0 auto;
}

.corevalues_text_en{
    font-size: 4.8rem;
    text-transform: uppercase;
    font-weight: 700;
}


.corevalues_text_jp{
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
}


.vision_area .vision-item{
	position: relative;
	/* アニメーションに関数プロパティ */
	opacity: 0; 	/* フェードインしたいので最初は非表示 */
	bottom: -15px; 	/* 下から上に移動したいので最初はマイナス値 */
	transition: 1s; /* 1秒かけてアニメーション */

}

/* スクロールした時に追加されるclass */
.vision_area .vision-item.fadein {
	opacity: 1;
	bottom: 0;
}



.corevalues_item01 .corevalues_item_text{
	position: relative;
	/* アニメーションに関数プロパティ */
	opacity: 0; 	/* フェードインしたいので最初は非表示 */
	bottom: -15px; 	/* 下から上に移動したいので最初はマイナス値 */
	transition: 1s; /* 1秒かけてアニメーション */

}

/* スクロールした時に追加されるclass */
.corevalues_item01 .corevalues_item_text.fadein {
	opacity: 1;
	bottom: 0;
}

.corevalues_item02 .corevalues_item_text{
	position: relative;
	/* アニメーションに関数プロパティ */
	opacity: 0; 	/* フェードインしたいので最初は非表示 */
	bottom: -15px; 	/* 下から上に移動したいので最初はマイナス値 */
	transition: 1s; /* 1秒かけてアニメーション */

}

/* スクロールした時に追加されるclass */
.corevalues_item02 .corevalues_item_text.fadein {
	opacity: 1;
	bottom: 0;
}



@media screen and (max-width:1100px){
    .ABOUT {
        padding-top: 750px;
    }
    .mission_area{
        max-width:90%;
        margin:0 auto;
    }
    .mission {
        text-align: center;
        padding-left: 0px;
    }
    .mission_title {
        max-width: 46%;
        margin: auto 0 50px 0;
        padding-top: 100px;
    }
    .mission_title hr{
        border: none;
        border-bottom: 2px solid #ffffff;
        margin: -20px 0px 0 0;
    }
    .mission_flex {
        max-width: 80%;
        display: flex;
        margin: 35px auto;
        gap: 50px;
    }

    .vision_area {
        max-width: 90%;
    }

    .vision_title {
        max-width: 50%;
    }
    .vision_text_jp {
        font-size: 4rem;
    }
    .corevalues_item_area {
        max-width: 90%;
    }

}
@media screen and (max-width:800px){
    .ABOUT {
        padding-top: 800px;
    }
    .mission_area{
        max-width:90%;
        margin:0 auto;
    }

    .mission_title {
        max-width: 60%;
        margin: 0 auto 50px;
        padding-top: 160px;
    }

    .vision_area {
        max-width: 90%;
    }

    .vision_title {
        max-width: 50%;
    }
    .vision_text_jp {
        font-size: 4rem;
    }

    .corevalues_background{
        max-width:100%;
        margin: 0 auto;
        background-image: url(../img/pc/corevalue_bg_pc.jpg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        padding-bottom: 470px;
    
    }

    .corevalues_item_area {
        max-width: 90%;
    }

    .corevalues_item01 {
        max-width: 550px;
        gap: 100px;
    }

    .corevalues_item02 {
        max-width: 550px;
        gap: 170px;
        margin: 65px 0 0 auto;
    }

    .corevalues {
        font-size: 7rem;
        text-align: center;
        padding-left: 0;
    }

    .corevalues_area {
        max-width: 90%;
        margin: 0 auto;
    }

    .corevalues_title {
        max-width: 75%;
        margin: 0 auto 40px;
    }
    .corevalues_title hr {
        margin: -10px 0px 0 0px;
    }
}
@media screen and (max-width:680px){
    .ABOUT{
        padding-top: 0px;
        margin-top:-30px;
    }

    .about_background{
        max-width:100%;
        margin: 0 auto;
        background-image: url(../img/sp/About_bg_sp.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        padding-bottom:70px;
        
    
    }
    
    .background_white{
        background-color: #ffffff;
        height: 30px;
    }

    .mission{
        font-size: 4rem;
        text-align: center;
        margin-top: 0px;
    }

    
    .mission_title {
        padding-top: 80px;
    }

    .mission_title hr {
        border-bottom: 2px solid #ffffff;
        margin: -12px 0 0 0;
    }

    .mission-item01 {
        margin-top: 50px;
        margin-bottom: 35px;
    }

    .mission_number {
        font-size: 2.5rem;
        margin-top: 0;
    }

    .mission_number span {
        font-size: 1.5rem;
    }

    .mission_text_jp {
        font-size: 1.2rem;
    }

    .mission_text_en {
        font-size: 1rem;
        line-height: 1.2rem;
    }

    .mission_flex {
        gap: 20px;
    }

    .vision_area {
        max-width: 90%;
    }

    .vision_title {
        max-width: 60%;

    }

    .vision {
        font-size: 4rem;
        margin-top: 50px;
    }

    .vision_title hr {
        margin: -12px 0 0 0;
    }

    .vision_text_jp {
        font-size: 1.7rem;
        font-weight: bold;
        margin-top: 30px;
        letter-spacing: 2px;
    }

    .vision_text_en {
        font-size: 1rem;
        margin-top: 8px;
    }

    .corevalues_background {
        max-width: 100%;
        background-image: url(../img/sp/corevalue_bg_sp.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        padding-bottom: 300px;
    }

    .corevalues_area {
        max-width: 90%;
        margin: 0 auto;
    }

    .corevalues_title {
        max-width: 85%;
        margin:0 auto 40px;
    }

    .corevalues {
        font-size: 4rem;
        text-align: center;
        padding-left: 0;
    }

    .corevalues_title hr {
        margin: -12px 0 0 0;
    }

    .corevalues_item_area {
        max-width: 90%;
        margin: 0 auto;
    }

  
    .corevalues_item01 {
        max-width: 90%;
        gap: 20px;
    }

    .corevalues_text_en {
        font-size: 2.5rem;
    }

    .corevalues_text_jp {
        font-size: 1rem;
    }

    .corevalues_item02 {
        max-width: 100%;
        gap: 55px;
        margin: 30px 0 0 0;
        padding-left: 20px;
    }

}
@media screen and (max-width:420px){
    .corevalues_background {
        padding-bottom: 260px;
    }
}

@media screen and (max-width:400px){
    .corevalues_background {
        padding-bottom: 300px;
    }
}

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

    .MV .MV_text {
        font-size: 1rem;
    }
    
    

    .philosophy_jp {
        font-size: 1.2rem;

    }

    .vision_text_jp {
        font-size: 1.5rem;
    }
}


/*====================================================================
    ACCESS
====================================================================*/

.company{
    max-width: 100%;
    font-family: 'Roboto', sans-serif;
    position: relative;
    z-index: 2;
}


.company_profile{
    font-size: 8.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    line-height: 8rem;
    margin-top: -100px;

}

.company_bg{
    max-width: 100%;
    background-color: #000;
    margin-top: -60px;
}

.company_area{
    max-width: 1450px;
    margin: 0 auto;
    background-color: #fff;
}

.company-overview{
    padding-top: 150px;
    max-width: 1100px;
    margin: 0 auto 100px;
}

.company_item{
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}


.company_area dt{
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 2.0rem;
    font-weight: bold;
}


.company_area dd{
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 2.0rem;
    font-weight: bold;
    text-align: left;
    width: 800px;
}

.googlemap{
    max-width: 1450px;
    margin:-100px auto 100px;
    background-color: #fff;
    padding: 100px 0 0 0;

}
.googlemap iframe{
    margin:0 0 -8px 0;
}
@media screen and (max-width:1100px){
    .company_title{
        background-color: #ffffff;
    }

    .company_profile {
        background-color: #ffffff;
        padding-top: 40px;
        margin-top: 0;


    }
    .company_bg {
        background-color: #ffffff;
    }

    .company_area {
        max-width: 80%;
    }

    .company-overview {
        padding-top: 70px;
        max-width: 100%;
        margin: 0 auto 50px;
    }
    .company_area dd {
        width: 70%;
    }
    .googlemap{
        margin:-20px auto 100px;
    
    }
}


@media screen and (max-width:800px){
    .company {
        margin-top: -211px;
    }

    .company_title{
        background-color: #ffffff;
    }

    .company_profile {
        font-size: 6rem;
        line-height: 6.4rem;
        margin-top: 0;
        background-color: #ffffff;
        padding-top: 40px;
    }
    .company_bg {
        background-color: #ffffff;
    }

    .company_area {
        max-width: 80%;
    }
    .company-overview {
        padding-top: 70px;
        max-width: 100%;
        margin: 0 auto 50px;
    }

    .company_item {
        margin-top: 30px;
    }

    .company_area dt {
        font-size: 1.2rem;
    }

    .company_area dd {
        font-size: 1.2rem;
        width: 70%;
    }

    .googlemap iframe{
        max-width: 100%!important;
    }

    .googlemap {
        max-width: 100%;
        margin: -50px auto 0;
        padding: 100px 0 0 0;
    }
}
@media screen and (max-width:680px){
    .company_profile {
        font-size: 4rem;
        line-height: 4rem;
        margin-top: 210px;
        background-color: #ffffff;
        padding-top: 40px;
    }
}

@media screen and (max-width:660px){
    .company_profile {
        margin-top: 200px;
    }
}
@media screen and (max-width:640px){
    .company_profile {
        margin-top: 190px;
    }
}
@media screen and (max-width:610px){
    .company_profile {
        margin-top: 165px;
    }
}
@media screen and (max-width:570px){
    .company_profile {
        margin-top: 155px;
    }
}
@media screen and (max-width:550px){
    .company_profile {
        margin-top: 145px;
    }
}
@media screen and (max-width:520px){
    .company_profile {
        margin-top: 130px;
    }
}
@media screen and (max-width:480px){
    .company_profile {
        margin-top: 115px;
    }
}
@media screen and (max-width:450px){
    .company_profile {
        margin-top: 110px;
    }
}
@media screen and (max-width:440px){
    .company_profile {
        margin-top: 95px;
    }
}
@media screen and (max-width:420px){
    .company_profile {
        margin-top: 110px;
    }
}
@media screen and (max-width:400px){
    .company_profile {
        margin-top: 80px;
    }
}
@media screen and (max-width:376px){
    .company_profile {
        margin-top: 75px;
    }
}
@media screen and (max-width:361px){
    .company_profile {
        margin-top: 60px;
    }
}
@media screen and (max-width:350px){
    .company_profile {
    margin-top: 54px;
    }
}
@media screen and (max-width:337px){
    .company_profile {
    margin-top: 50px;
    }
}
@media screen and (max-width:320px){
    .company_profile {
    margin-top: 46px;
    }
}
/*====================================================================
    PROJECT
====================================================================*/


.project{
    max-width: 100%;
    font-family: 'Roboto', sans-serif;
    z-index: 5;
}
.project_bg{
    max-width: 100%;
    background-color: #000;
}

.project_h2{
    font-size: 8.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-top: -108px;
    padding: 80px 0 50px 0;
}

.project_area{
    max-width: 1450px;
    margin: 0 auto;
    background-color: #DEDCDC;
}

.project_grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    place-items: start;
}



.project_item02{
    margin: 0 auto;

}

.project_item02 h3{
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    line-height: 5rem;
    margin-top: -15px;
    letter-spacing: 1px;
}

.project_item02 h3 span{
    font-size: 3rem;
    line-height: 1rem;

}

.project_item02 .p{
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 2rem;
    text-align: left;
    width: 530px;
    line-height: 5rem;
    margin-top: 50px;
    letter-spacing: 1px;
}

.project_item03{
    padding: 50px 0 0 0;
    margin: 0 auto;
}



.project_item03 h3{
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    line-height: 5rem;
    letter-spacing: 1px;
    max-width: 600px;
    margin: 0 0 0 auto;
}

.project_item03 h3 span{
    font-size: 3rem;
    line-height: 1rem;

}

.project_item03 .p{
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 2rem;
    text-align: left;
    width: 530px;
    line-height: 5rem;
    margin:50px 0 0 0;
    letter-spacing: 1px;
}

.sns_ul_lof{
    list-style:none;
    display: flex;
    justify-content: space-around;
    color:#ffffff;
    margin-block-start:0em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    align-items: flex-start;
    max-width: 190px;
    margin: 0 0 0 auto;
    gap: 1vw;
}



.sns_ul_lof img{
    max-width:27px;
}


.sns_ul_sb{
    list-style:none;
    display: flex;
    justify-content: space-around;
    color:#ffffff;
    margin-block-start:0em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    align-items: flex-end;
    max-width: 400px;
    margin: 0 0 0 auto;
    gap: 1vw;
}



.sns_ul_sb img{
    max-width:27px;
}
.lastone_link{
    line-height: 3rem;
}

.lastone_link a{
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size:1.5rem;
    color: #000000;
    text-decoration: none;
}
.lastone_link a:hover{
    opacity: 0.7;
}

@media screen and (max-width:1450px){
    .project_area{
        max-width: 100%;
    }

    
    .project_item03{
        padding: 0 0 0px 0;
    }


    .project_item02 {
        padding: 0;
    }
    .project_item02 h3 span {
        font-size: 2rem;
        line-height: 2rem;
    }
    .project_item02 h3 {
        font-size: 3rem;
        text-align: center;
        line-height: 3.5rem;
    }

    .project_item02 .p {
        font-size: 2rem;
        text-align: left;
        width: 80%;
        line-height: 4rem;
        margin: 40px auto 40px;
        letter-spacing: 1px;
    }


    .project_item03 h3 span {
        font-size: 2rem;
        line-height: 2rem;
    }
    .project_item03 h3 {
        font-size: 3rem;
        text-align: center;
        line-height: 3.5rem;
        margin-top: 40px;
    }

    .project_item03 .p {
        font-size: 2rem;
        text-align: left;
        width: 80%;
        line-height: 4rem;
        margin: 40px auto 40px;
        letter-spacing: 1px;
    }
}
@media screen and (max-width:800px){
    .project_area {
        max-width: 100%;
        margin: 80px auto 0;
        background-color: #DEDCDC;
    }

    .project_h2 {
        font-size: 7rem;
        padding: 100px 0 20px 0;
    }


    .project_item03{
        padding: 0 30px 50px 30px;
    }


    .project_item02 {
        padding: 0 30px 50px 30px;
    }
    .project_item02 h3 span {
        font-size: 1.5rem;
        line-height: 1rem;
    }
    .project_item02 h3 {
        font-size: 2.5rem;
        text-align: center;
        line-height: 3rem;
    }

    .project_item02 .p {
        font-size: 1.5rem;
        text-align: left;
        width: 100%;
        line-height: 3rem;
        margin: 20px auto 0px;
        letter-spacing: 1px;
    }


    .project_item03 h3 span {
        font-size: 1.5rem;
        line-height: 1rem;
    }
    .project_item03 h3 {
        font-size: 2.5rem;
        text-align: center;
        line-height: 3rem;
        margin-top: 10px;
    }

    .project_item03 .p {
        font-size: 1.5rem;
        text-align: left;
        width: 100%;
        line-height: 3rem;
        margin: 20px auto 0px;
        letter-spacing: 1px;
    }
}

@media screen and (max-width:680px){
    .project_h2 {
        font-size: 4rem;
        padding: 100px 0 20px 0;
    }
    .project_item02 h3 {
        font-size: 2.5rem;
        text-align: center;
        line-height: 3rem;
        margin-top: 20px;
    }

    .project_item03{
        padding: 0 30px 50px 30px;
    }
    .project_item03 h3 {
        font-size: 2.5rem;
        text-align: center;
        line-height: 3rem;
        margin-top: 20px;
    }

    .sns_ul_sp_lof{
        list-style:none;
        display: flex;
        justify-content: space-around;
        color:#ffffff;
        margin-block-start:0em;
        margin-block-end: 1em;
        margin-inline-start: 0px;
        margin-inline-end: 0px;
        align-items: flex-start;
        max-width: 200px;
        margin: 0 0 0 auto;
        gap: 1vw;
    }
    .sns_ul_sp_lof .pc_menu_sns img{
        max-width: 45px;
    }

    .sns_ul_sp_sb{
        list-style:none;
        display: flex;
        justify-content: space-around;
        color:#ffffff;
        margin-block-start:0em;
        margin-block-end: 1em;
        margin-inline-start: 0px;
        margin-inline-end: 0px;
        align-items: flex-start;
        max-width: 200px;
        margin: 0 0 0 auto;
        gap: 1vw;
    }
    .sns_ul_sp_sb .pc_menu_sns img{
        max-width: 45px;
    }
    
    .lastone_link a{
        font-size:1.3rem;
    }
    
    .lastone_link{
        line-height: 1rem;
    }
}



    @media screen and (max-width:350px){
        .corevalues {
            font-size: 3.5rem;
            line-height: 7rem;
    }

    .corevalues_item02 {
        gap: 25px;
        padding-left: 16px;
    }
}

/*====================================================================
    NEWS
====================================================================*/

.news{
    max-width: 100%;
    font-family: 'Roboto', sans-serif;
    z-index: 6;
}
.news_bg{
    max-width: 100%;
    background-color: #000;
}

.news_h2{
    font-size: 8.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    padding: 80px 0 50px 0;
}

.news_area{
    max-width: 1450px;
    margin: 0 auto;
    background-color: #ffffff;
    padding-bottom: 100px;
}


.newslist {
    max-width: 1200px;
    margin: 0 auto;
  }
  @media screen and (max-width:1300px){
    .newslist {
        max-width: 90%;
        margin: 0 auto;
      }
  }


.newslist li {
    display: flex;
    align-items: center;
    padding: 20px 10px;
    border-bottom: 2px solid #DEDCDC;
    line-height: 1.5;
    gap: 40px;
    text-align: left;
  }

.newslist p{
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    line-height: 3rem;
}

.label01{
    width: 130px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: bold;
    background-color: #676767;
    border-radius: 5px;
    padding: 3px 0;
    color: #ffffff;
    text-align: center;
}

.label02{
    width: 130px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: bold;
    background-color: #4253b7;
    border-radius: 5px;
    padding: 3px 0;
    color: #ffffff;
    text-align: center;
}

.label03{
    width: 130px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: bold;
    background-color: #e81919;
    border-radius: 5px;
    padding: 3px 0;
    color: #ffffff;
    text-align: center;
}
@media screen and (max-width:1450px){
    .news_text_area{
        width:550px;
    }
}

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

    .news_area {
        max-width: 100%;
        padding-bottom: 80px;
    }

    .news_h2 {
        font-size: 7rem;
        padding: 100px 0 50px 0;
    }
    .newslist_sp {
        max-width: 85%;
        margin: 0 auto;
      }
    .newslist_sp li{
        border-bottom: 2px solid #DEDCDC;
        margin-bottom: 30px;
    }

    .newslist_flex{
        display: flex;
        gap:30px;
        align-items: center;
        margin-bottom: 15px;
    }
    .news_text_area{
        width:500px;
    }

    .label01 {
        width: 100px;
        padding: 2px 0;
        font-size:1.5rem;
        text-align: center;
    }
    .label02 {
        width: 100px;
        padding: 2px 0;
        font-size:1.5rem;
        text-align: center;
    }
    .label03 {
        width: 100px;
        padding: 2px 0;
        font-size:1.5rem;
        text-align: center;
    }
    .newslist_sp .news_text{
        font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
        line-height: 2.5rem;
        text-align: left;
        font-size: 1.5rem;
        margin-bottom: 20px;

    }

}

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

    .news_h2 {
        font-size: 4rem;
        padding: 100px 0 50px 0;
    }
}

@media screen and (max-width:376px){
    .news_h2 {
        padding: 80px 0 50px 0;
    }

    .label01{
        font-size: 1.2rem;
    }
    .label02{
        font-size: 1.2rem;
    }
    .label03{
        font-size: 1.2rem;
    }
}





/*====================================================================
    CONTACT
====================================================================*/


.contact{
    max-width: 100%;
    font-family: 'Roboto', sans-serif;
    z-index: 6;
}
.contact_bg{
    max-width: 100%;
    background-color: #000;
}

.contact_h2{
    font-size: 8.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    padding: 80px 0 50px 0;
}

.contact_area{
    max-width: 1450px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 150px 0;

}

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

    .contact_area iframe{
        max-width: 80%!important;
        margin: 0 auto;
    }
}


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

    .contact_area {
        max-width: 100%;
        padding: 100px 0;
    }

    .contact_h2 {
        font-size: 7rem;
        padding: 100px 0 50px 0;
    }

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

    .contact_area {
        max-width: 100%;
        padding-bottom: 0px;
    }

    .contact_area iframe{
        max-width: 95%!important;
        height: 1250px;
        margin: 0 auto;
    }

    .contact_h2 {
        font-size: 4rem;
        padding: 100px 0 50px 0;
    }
}

@media screen and (max-width:376px){
    .contact_h2 {
        padding: 80px 0 50px 0;
    }


    
}


/*====================================================================
    FOOTER
====================================================================*/


footer{
    max-width: 100%;
    background-color: #000;
    font-family: 'Roboto', sans-serif;
}

.footer_area{
    max-width: 560px;
    margin: 0 auto;
    padding: 67px 0 20px 0;
    background-color: #000;
    text-align: center;
}

.footer_area a{
    color:#ffffff;
    text-decoration: none;
}

.footer_area a:hover{
    opacity: 0.7;
}

.footer_logo img{
    width:115px;
    margin: 0 auto 50px;
}

.footer_menu{
    display: flex;
    justify-content: space-between;
    gap:50px;
    max-width: 575px;
    margin: 0 auto;
}

.footer_sns{
    display: flex;
    justify-content: space-between;
    gap:18px;
    max-width: 280px;
    margin: 50px auto 20px;
}

.footer_sns a:hover{
    opacity: 0.7;
}

.icon{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #ffffff;
    padding-top: 8px;
}

.icon img{
    width: 20px;
    margin: 0 auto;
}

.copy{
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 100px 50px 0;
    font-size:1rem;
    color:#fff;
    background-color: #000;
    height:50px;
    line-height:50px;
    text-align: right;
}

@media screen and (max-width:640px){
    .copy{
        max-width: 100%;
        font-size: 1rem;
        height:40px;
        line-height:40px;
        padding:0;
        text-align: center;

    }

    .footer_area {
        max-width: 80%;
    }

    .footer_menu {
        display: flex;
        justify-content: space-between;
        gap: 15px;
        max-width: 100%;
        margin: 0 auto;
        font-size: 1.2rem;
    }
    .footer_sns {
        display: flex;
        justify-content: space-between;
        gap: 18px;
        max-width: 100%;
        margin: 50px auto 20px;
    }

}

@media screen and (max-width:350px){
    .footer_area a{
        font-size: 1.2rem;
    }

    .icon{
        width: 35px;
        height: 35px;
        padding-top: 7px;
    }
}



