@charset "utf-8";
/* CSS Document */
.wrap {
  overflow: hidden;
}
.txt_center {
  text-align: center;
}
table {
  width: 100%;
}
img {
  max-width: 100%;
  height: auto;
     display: block;
  margin: 0 auto;
  transition: 1.0s;
}
.container {
  padding-right: 0px;
  padding-left: 0px;
  margin-right: auto;
  margin-left: auto;
  max-width: 640px;
}
.cv{
    position: relative;
}
.cvbtn{
    position: absolute;
    bottom:3%;
}

/* Video overlay styles - 追加部分 */
.video-overlay {
  position: relative;
  display: block;
  width: 100%;
}

.video-overlay img {
  display: block;
  width: 100%;
  height: auto;
}

.video-overlay iframe {
  position: absolute;
  top: 93.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 450px;
  height: 300px;
  z-index: 10;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

@media (min-width: 771px) { 
    .visible-xs{
        display: none;
     }
}
@media (max-width: 770px) {
    .hidden-xs{
        display: none;
     }
    
    /* Video overlay mobile styles - 追加部分 */
    .video-overlay iframe {
        width: 90%;
        max-width: 300px;
        height: 168px;
    }
}
/*2024.01.18追加分*/
.footer{
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}
.footer li{
    display: inline-block;
  margin-right: 10px;
    margin-left: 10px;
    
}
.footer a{
    text-decoration: none;
    color: #000;
}

/* Video overlay2 styles - 2つ目の動画用 */
.video-overlay2 {
  position: relative;
  display: block;
  width: 100%;
}
.video-overlay2 img {
  display: block;
  width: 100%;
  height: auto;
}
.video-overlay2 iframe {
  position: absolute;
  top: 64%; /* 位置を調整してください */
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 450px;
  height: 300px;
  z-index: 10;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

@media (max-width: 770px) {
    /* Video overlay2 mobile styles */
    .video-overlay2 iframe {
        width: 90%;
        max-width: 300px;
        height: 168px;
    }
}