@charset "UTF-8";
/* ===================================================================
CSS information

 file name  : org.css
 author     : Ability Consultant
 style info : ご挨拶・組織構成
=================================================================== */
.con_basic {
	max-width: 960px;
	margin: auto;
}
@media only screen and (max-width: 1024px) {
  .con_basic {
		width: 95%;
  }
}

/*Animate */
/* -----------------------------------------------------------
	.con_basic
----------------------------------------------------------- */
.con_basic .con_greet {
	margin-bottom: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .con_basic .con_greet {
		margin-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .con_basic .con_greet {
		margin-bottom: 50px;
  }
}
.con_basic .con_greet .st_c_basic {
	margin-bottom: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .con_basic .con_greet .st_c_basic {
		margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .con_basic .con_greet .st_c_basic {
		margin-bottom: 20px;
  }
}
.con_basic .con_greet .greet_txt .name {
	padding-top: 25px;
	display: block;
	text-align: right;
}
.con_basic .con_part {
	margin-bottom: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .con_basic .con_part {
		margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .con_basic .con_part {
		margin-bottom: 20px;
  }
}
.con_basic .con_part .st_c_basic {
	margin-bottom: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .con_basic .con_part .st_c_basic {
		margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .con_basic .con_part .st_c_basic {
		margin-bottom: 20px;
  }
}
.video-grid {
    display: grid; /* Gridレイアウトを使用 */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 3列 */
    grid-template-rows: repeat(1, 1fr); /* 1行 */
    gap: 100px 20px; /* タイル間の隙間 */
}
.video-container {
    width: min(100%, 300px);
    height: 0;
    padding-bottom: 56.25%; /* 16:9の縦横比を維持する（動画のサイズに合わせて調整） */
    position: relative;
}
.video-container {
    cursor: pointer;
}
.video-container {
    transition: .3s;
}
.video-container {
    /* background-color: #4B4B4B; */
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: min(100%, 300px);
    height: min(100%, 180px);
}
.video-container div {
    position: absolute;
    top: 0;
    left: 0;
    width: min(100%, 300px);
    height: min(100%, 180px);
}
.video-container h6 {
    position: absolute;
    top: 180px;
    left: 0;
    width: min(100%, 300px);
    height: 0;
    font-size: 100%;
}
.video-grid-clear {
    display: block;
    position: fixed;
}
