@charset "utf-8";
/* CSS Document */

/* デフォルトでは、スマホ用ビデオを非表示にする */
.mobile-video {
    display: none;
}


.video {
    width: 100%;
    height: 100vh; /* ビューポートの高さにフィットさせる */
    object-fit: cover;
}


/* 画面幅が768px以上の場合、デスクトップ用ビデオを表示し、スマホ用ビデオを非表示にする */
@media (min-width: 768px) {
    .desktop-video {
        display: block;
    }
    .mobile-video {
        display: none;
    }
	
	.col-lg-6 {
    width: 100%;
}	
	
	img.top_logo {
    width: 120px;
	margin-left: 40%;
}
	
}

/* 画面幅が768px未満の場合、スマホ用ビデオを表示し、デスクトップ用ビデオを非表示にする */
@media (max-width: 767px) {
    .desktop-video {
        display: none;
    }
    .mobile-video {
        display: block;
    }
	
	img.top_logo {
    width: 100px;
}
	
	
	div#navbar-collapse {
    background-color: indianred;
}
	
}




/*スマホの時だけ改行させるクラス*/
.br-sp {
    display: none;
}

@media (max-width: 767px) {
    .br-sp {
        display: block;
    }
	
}




.joblist {
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    /*align-items: center;*/
    justify-content: center;
    padding: 20px;
	
}

.image-box {
    flex: 1;
}

.image-box img {
    width: 100%;
    height: auto;
}

.content-box {
    flex: 2;
    padding: 20px;
}

.content-box h1 {
    margin: 0 0 10px 0;
}

.content-box p {
    margin: 0 0 20px 0;
}

button {
    padding: 10px 20px;
    background-color: blue;
    color: white;
    border: none;
    cursor: pointer;
}

/* レスポンシブデザインの設定 */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .image-box, .content-box {
        width: 100%;
    }
	
/* ロゴ */
	img.top_logo {
    width: 40%;
	margin-left: 33%;
}
	
	





.ttl_center4 {
  font-weight: bold;
  padding: 0 3em;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.ttl_center4::before, .ttl_center4::after {
  content: '';
  background: #4c9ac0;
  width: 2em;
  height: 3px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.ttl_center4::before {
  left: 0;
}
.ttl_center4::after {
  right: 0;
}







/* STAFF紹介 */

/* デフォルトスタイル（スマホ用） */
.image-container {
  display: flex;
  flex-direction: column;
  align-items: center; /* スマホ用の画像を中央揃えに */
}

/* パソコン用のスタイル */
@media (min-width: 768px) {
  .image-container {
    flex-direction: row;
    justify-content: center; /* パソコン用の画像を中央揃えに */
  }
}


.image_link{
 display:block; 
 position:relative;
 text-decoration:none;
}
.image_link img{
  display:block;
  width:100%;
}
.image_link:before{
  content:"";
  display:block;
  width:100%;
  height:100%;
  position:absolute;
  z-index:2;
  background:#000;/*好みの色に変えてください。*/
  opacity:0;
  transition:0.3s;
}
.image_link:after{
  content:"READ MORE";/*好みの文章に変更してください。*/
  display:block;
  color:#fff;
  line-height:48px;
  width:180px;
  border:solid 1px #fff;
  border-radius:5px;
  text-align:center;
  position:absolute;
  top:50%;
  left:50%;
  margin-top:-1em;
  margin-left:-90px;
  opacity:0;
  z-index:3;
  transition:0.3s;
  font-weight:bold;
  letter-spacing:0.2em;
}
.image_link:hover:before{
  opacity:0.5;
}
.image_link:hover:after{
  opacity:1;
  margin-top:-0.5em;
}

/*サブメニュー背景透明*/
.dropdown-menu {
    background-color: #fff0 !important;
	border: none !important;
	box-shadow: none !important;
}
.navbar-nav li li a {
    color: #ffffff;
}
.navbar-nav li li {
     border-bottom: 1px solid rgb(255 255 255 / 30%);
}
.navbar-nav li li a {
    color: #fff !important;
}



/*動画上テキスト*/
h1.wow.fadeInDown {
    text-align: center;
}
p.lead-text {
    text-align: center;
	font-weight: 800;
}
@media (min-width: 1200px){
.col-lg-6 {
    width: 100% !important;
}
	main#home {
    padding-bottom: 250px;
}
	img.top_logo {
    width: 175px;
    margin-left: 35%;
}
	
}