@charset "utf-8";
/* CSS Document */
/*TOPスリックライダー*/
.main{
    position: relative;
}
.top_message{
    max-width: 1920px;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 45vh;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 80px;
    text-shadow: 1px 1px 1px #777,-1px -1px 1px #777,-1px 1px 1px #777,1px -1px 1px #777;
    z-index: 99;
}
.full div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  margin: 0;
}
.full div.img01 {
  background-image: url( "../img/top_slider_01.jpg");
}
.full div.img02 {
  background-image: url( "../img/top_slider_02.jpg");
}
.full div.img03 {
  background-image: url( "../img/top_slider_03.jpg");
}
@media screen and (max-width: 1024px){
.top_message{
    top: 40vh;
    left: 50%;
    font-size: 70px;
}
.full div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 80vh;
  margin: 0;
}
}/*max-width: 1024px*/
@media screen and (max-width: 768px){
.top_message{
    top: 30vh;
    left: 50%;
    font-size: 42px;
}
.full div {
  height: 60vh;
}
}/*max-width: 768px*/

@media screen and (max-width: 520px){
.top_message{
    top: 30vh;
    left: 50%;
    font-size: 24px;
}
.full div {
  height: 60vh;
}
}

/*共通*/
.container{
	width: 100%;
	height: auto;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-around;
	-ms-align-items: center;
	align-items: center;
}
.title_container{
    margin-top: 60px;
    margin-bottom: 30px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    color: #000;
    font-weight: normal;
}
.bg_gray{
	width: 100%;
	height: 100%;
	padding: 70px 10px 100px;
	background-color: rgba(0,0,0,0.80);
	transition: 1.5s;
	text-shadow: 1px 1px 3px #000, -1px 1px 3px #000, 1px -1px 3px #000, -1px -1px 3px #000;
}
.bg_gray:hover{
	width: 100%;
	height: 100%;
	padding: 70px 10px 100px;
	background-color: rgba(0,0,0,0.50);
	transition: 0.5s;
}
@media screen and (max-width: 520px){

}/*max-width: 520px*/
/*works*/
.works{
    background-color: #fff;
    height: auto;
}
/*グリッドレイアウト*/
.works_container {
    max-width: 1920px;
    width: 90%;
    color: #000;
    display: grid;
    grid-template-columns: minmax(320px, 375px) 1fr 1fr;
    grid-template-rows: 180px 180px 180px 180px;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
    "works_top works01 works02"
    "works_top works01 works02"
    "works_top works03 works04"
    "works_top works03 works04";
}
.works_bgimg{
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    filter: grayscale(100);
    transition: 0.3;
}
.works_bgimg:hover{
    filter: grayscale(0);
}
.works_bgimg a{
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: #000;
}
.works_top { grid-area: works_top;
    padding: 36px;
    background-color: #000;
    color: #fff;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
}
.works_top h2{
	width: 100%;
	margin: 0 auto 30px;
	text-align: center;
	font-size: 2.0rem;
    letter-spacing: 0px;
}
.works_top p{
	margin-top: 30px;
	padding-left: 6px;
		line-height: 2.4;
}
.works01 { grid-area: works01;
    background-image: url( "../img/product_01.jpg");
    position: relative;
}

.works02 { grid-area: works02;
    background-image: url( "../img/product_02.jpg");
    position: relative;
}

.works03 { grid-area: works03;
    background-image: url( "../img/product_03.jpg");
    position: relative;
}

.works04 { grid-area: works04;
    background-image: url( "../img/product_04.jpg");
    position: relative;
}
.works_container h3{
    width: 100%;
    padding: 20px 0;
	background-color: rgba(255,255,255,0.1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
	font-size: 4.0rem;
    font-weight: bold;
    text-shadow: 1px 1px 1px #fff,-1px -1px 1px #fff,-1px 1px 1px #fff,1px -1px 1px #fff;

}
.works_container h3 span{
	font-size: 1.6rem;
    font-weight: normal;
}
.works_container {
  height: 100%;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1024px){
.works_container {
    max-width: 1024px;
    width: 95%;
    color: #000;
    display: grid;
    grid-template-columns: 300px 1fr 1fr;
    grid-template-rows: 180px 180px 180px 180px;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
    "works_top works01 works01"
    "works_top works02 works02"
    "works_top works03 works03"
    "works_top works04 works04";
}
}/*max-width: 1024px*/
@media screen and (max-width: 768px){
.works_container {
    max-width: 768px;
    width: 100%;
    color: #000;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 360px 360px 360px 360px 360px;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
    "works_top works_top works_top"
    "works01 works01 works01"
    "works02 works02 works02"
    "works03 works03 works03"
    "works04 works04 works04";
}
.works_container h3{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
	font-size: 4.0rem;
    font-weight: bold;
}
 .works_bgimg{
    filter: grayscale(0);
}
}/*max-width: 768px*/  


/*news*/

.news .title_container{
    margin-top: 60px;
    margin-bottom: 60px;
}
.news_tabale{
    max-width: 1024px;
    width: 95%;
    margin: 0 auto;
    color: #000;
    border: 0.5px solid #555;
    line-height: 2.0;
    background-color: #fff;
 /*   opacity: 0.9;*/
    position: relative;
    z-index: 99;
}
.news_tabale::before {
    background-color: rgba(0, 0, 0, 0.5);
    content: "";
    display: block;
    height: 100%;
    border: 0.3px solid #333;
    position: absolute;
    top: -50px;
    left: -80px;
    width: 100%;
    z-index: -99;
}
.news_tabale td{
    padding: 10px 50px;
    background-color: rgba(255, 255, 255, 0.8)
}
.news_tabale .pb_space{
   padding-bottom: 100px;
}
.news_tabale .pr_space{
   padding-right: 90px;
}
.news_link_font{
    color: #000;
    text-decoration: underline;
    transition: 0.3s;
}
.news_link_font:hover{
    color: #fff;
    text-decoration: underline;
    background-color: #333;
    transition: 0.3s;
}

@media screen and (max-width: 1024px){
.news_tabale::before {
    background-color: rgba(0, 0, 0, 0.5);
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    top: -30px;
    left: -50px;
    width: 100%;
    z-index: -99;
}
}/*max-width: 1024px*/
@media screen and (max-width: 768px){
.news .title_container{
    margin-top: 60px;
    margin-bottom: 60px;
}
.news_tabale{
    width: 95%;
    margin: 0 auto;
    color: #000;
    border: 0.5px solid #555;
    line-height: 2.0;
    background-color: #fff;
 /*   opacity: 0.9;*/
    position: relative;
    z-index: 99;
}
.news_tabale::before {
    background-color: rgba(0, 0, 0, 0.5);
    content: "";
    display: block;
    height: 100%;
    border: 0.3px solid #333;
    position: absolute;
    top: -20px;
    left: -15px;
    width: 100%;
    z-index: -99;
}
.news_tabale .pb_space{
   padding-bottom: 50px;
}
.news_tabale .pr_space{
   padding-right: 30px;
}.news_tabale tr{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}
}/*max-width: 768px*/
@media screen and (max-width: 520px){
}/*max-width: 520px*/

/*company*/
.company{
	max-width: 1920px;
	width: 100%;
	height: auto;
}
.company_box{
	width: 90%;
	padding: 10px 20px;
	background-image: url( "../img/company_logo.png");
	background-repeat: no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	background-position: 10% 10%;
	background-color: #000;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
}
.company_items01,.company_items02{
	max-width: 1024px;
    margin-left: 20%;
	padding: 20px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	line-height: 2;
}
.company_items02{
	-webkit-flex-direction: row-reverse;
	-moz-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	-o-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.company_box img{
	max-width: 400px;
	margin: 30px;
}
.company_tabale{
	color: #fff;
}
.company_tabale .mr_space{
    min-width: 80px;
}
.company_about .title{
	margin: 20px;
}
@media screen and (max-width: 1024px){
.company_box{
	width: 95%;
	padding: 10px 20px;
}
.company_items01,.company_items02{
	max-width: 450px;
    margin-left: 20%;
	padding: 20px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
	-ms-align-items: center;
	align-items: center;
	line-height: 2;
}
}/*max-width: 1024px*/
@media screen and (max-width: 768px){
.company_box{
	width: 100%;
	padding: 10px 20px;
}
.company_items01,.company_items02{
	max-width: 400px;
    margin: 0 auto;
    padding: 20px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	line-height: 2;
    text-shadow: 1px 1px 1px #000,-1px -1px 1px #000,-1px 1px 1px #000,1px -1px 1px #000;
}
.company_box img{
	max-width: 400px;
	margin: 10px;
    opacity: 0.9;
    border-radius: 20px 0 20px 0;
}
.company_tabale .mr_space{
    min-width: 80px;
}
}/*max-width: 768px*/
@media screen and (max-width: 520px){
.company_box img{
	max-width: 250px;
}
}/*max-width: 520px*/








@media screen and (max-width: 1024px){
}/*max-width: 1024px*/
@media screen and (max-width: 768px){
}/*max-width: 768px*/
@media screen and (max-width: 520px){
}/*max-width: 520px*/
@media screen and (max-width: 375px){
}/*max-width: 375px*/
@media screen and (max-width: 320px){
}/*max-width: 320px*/