@charset "UTF-8";

.webServices {
  margin-top: 4px;
  margin-left: 168px;
}

.webServices ul li{
  line-height: 1.2;
  margin-bottom: 10px;
}

.text80 {
  font-size: 90%;
  padding-left: 10px;
}

.etc {
  display: flex;
  gap: 1.6rem;
  justify-content: space-between;
  margin: 20px 150px 20px 150px;
}

.etcBox {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 48%;
}


/* YouTubeの部分のレスポンシブ */
@media screen and (max-width:768px){
  .etc {
    margin: 0 90px 120px 90px;
  }
}
@media screen and (max-width:650px){
  .etc {
    display: block;
  }
  .etcBox {
    width: 100%;
  }
}
@media screen and (max-width:420px){
  .etc {
    margin-right: 0;
    margin-left: 0;
    padding-bottom: 4rem;
  }
}




.etcTtl {
  margin-top: 30px;
  font-size: 1.2rem;
  text-align: left;
}
@media screen and (max-width:420px){
  .etcTtl {
    font-size: 1.1rem;
  }
}

.etcTxt {
  font-weight: 300;
  font-size: 1rem;
  text-align: justify;
  margin-bottom: auto;
  padding-bottom: 10px;
}

.image {
  width: 100%;
}

.video {
  position: relative;
  width: 100%;
  /* 横幅は100%にしておく(ここを変えたい場合は実装コード2の方法を確認してください) */
  height: 0;
  /* 高さは0にしておく(padding-topで高さを指定するため) */
  padding-top: 56.25%;
  /* 高さを指定(16:9) */
}

video{

  width: 100%;
}
/* YouTube埋め込み用のiframe */
.video iframe,
.video img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



/* 追記ヘルパー */
.indent{
  padding-left: 0;
}
